|
|
|
@ -14,6 +14,9 @@ export declare class Button extends BasicButton {
|
|
|
|
|
block?: boolean; // 是否块状显示,即不显示边框,没有最小宽度的限制
|
|
|
|
|
clear?: boolean; // 是否去掉边框和背景
|
|
|
|
|
ghost?: boolean; // 是否幽灵显示, 即正常状态无背景
|
|
|
|
|
iconGap?: number; |
|
|
|
|
iconPosition?: string; |
|
|
|
|
textWidth?: number; |
|
|
|
|
} & AbstractLabel['props'] & IconLabel['props'] & BasicButton['props']; |
|
|
|
|
|
|
|
|
|
text: Label; |
|
|
|
@ -26,4 +29,12 @@ export declare class Button extends BasicButton {
|
|
|
|
|
doHighLight(...args: any[]): void; |
|
|
|
|
|
|
|
|
|
unHighLight(...args: any[]): void; |
|
|
|
|
|
|
|
|
|
loading(): void; |
|
|
|
|
|
|
|
|
|
loaded(): void; |
|
|
|
|
|
|
|
|
|
setIcon(iconCls: string): void; |
|
|
|
|
|
|
|
|
|
isLoading(): boolean; |
|
|
|
|
} |
|
|
|
|