support icoclass_end in Label and Button HTML attribute

This commit is contained in:
DanyLE 2023-02-01 19:46:56 +01:00 committed by Dany LE
parent 7196f9ff57
commit 60137fb4fb
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
*