forked from fanruan/fineui
Tangjinxia
4 years ago
3 changed files with 39 additions and 0 deletions
@ -0,0 +1,20 @@ |
|||||||
|
import { BasicButton } from "../button.basic"; |
||||||
|
|
||||||
|
export declare class BlankIconTextItem extends BasicButton { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
|
||||||
|
doClick(): void; |
||||||
|
|
||||||
|
setValue(): void; |
||||||
|
|
||||||
|
getValue(): string; |
||||||
|
|
||||||
|
doRedMark(...args: any[]): void; |
||||||
|
|
||||||
|
unRedMark(...args: any[]): void; |
||||||
|
|
||||||
|
doHighLight(...args: any[]): void; |
||||||
|
|
||||||
|
unHighLight(...args: any[]): void; |
||||||
|
} |
@ -0,0 +1,13 @@ |
|||||||
|
import { Widget } from '../../core/widget'; |
||||||
|
|
||||||
|
export declare class HexColorChooserPopup extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_VALUE_CHANGE: string; |
||||||
|
|
||||||
|
setStoreColors(v: string): void; |
||||||
|
|
||||||
|
setValue(v: string): void; |
||||||
|
|
||||||
|
getValue(): string; |
||||||
|
} |
Loading…
Reference in new issue