mirror of
https://github.com/lxsang/antos-frontend.git
synced 2024-11-09 22:38:22 +01:00
support icoclass_end in Label and Button HTML attribute
This commit is contained in:
parent
7196f9ff57
commit
60137fb4fb
12
d.ts/antos.d.ts
vendored
12
d.ts/antos.d.ts
vendored
@ -5548,6 +5548,12 @@ declare namespace OS {
|
|||||||
* @memberof LabelTag
|
* @memberof LabelTag
|
||||||
*/
|
*/
|
||||||
set iconclass(v: string);
|
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
|
* Set the CSS class of the label icon on the right side
|
||||||
*
|
*
|
||||||
@ -6644,6 +6650,12 @@ declare namespace OS {
|
|||||||
* @memberof ButtonTag
|
* @memberof ButtonTag
|
||||||
*/
|
*/
|
||||||
set iconclass$(v: string);
|
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
|
* Setter: Set the text of the button
|
||||||
*
|
*
|
||||||
|
@ -92,6 +92,15 @@ namespace OS {
|
|||||||
(this.refs.label as LabelTag).iconclass$ = v;
|
(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
|
* Setter: Set the text of the button
|
||||||
*
|
*
|
||||||
|
@ -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
|
* Set the CSS class of the label icon on the right side
|
||||||
*
|
*
|
||||||
|
Loading…
Reference in New Issue
Block a user