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

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
*