support icoclass_end in Label and Button HTML attribute
All checks were successful
gitea-sync/antos/pipeline/head This commit looks good

This commit is contained in:
DanyLE 2023-02-01 19:46:56 +01:00
parent 5ffb203a36
commit a800f03d0a
3 changed files with 30 additions and 0 deletions

12
d.ts/antos.d.ts vendored
View File

@ -5548,6 +5548,12 @@ declare namespace OS {
* @memberof LabelTag
*/
set iconclass(v: string);
/**
* Set the CSS class of the label icon on the right side
*
* @memberof LabelTag
*/
set iconclass_end(v: string);
/**
* Set the CSS class of the label icon on the right side
*
@ -6644,6 +6650,12 @@ declare namespace OS {
* @memberof ButtonTag
*/
set iconclass$(v: string);
/**
* Set the CSS class of the label icon on the right side
*
* @memberof ButtonTag
*/
set iconclass_end(v: string);
/**
* Setter: Set the text of the button
*

View File

@ -92,6 +92,15 @@ namespace OS {
(this.refs.label as LabelTag).iconclass$ = v;
}
/**
* Set the CSS class of the label icon on the right side
*
* @memberof ButtonTag
*/
set iconclass_end(v: string) {
this.iconclass$ = v;
}
/**
* Setter: Set the text of the button
*

View File

@ -157,6 +157,15 @@ namespace OS {
}
}
/**
* Set the CSS class of the label icon on the right side
*
* @memberof LabelTag
*/
set iconclass_end(v: string) {
this.iconclass$ = v;
}
/**
* Set the CSS class of the label icon on the right side
*