Browse Source
Merge in VISUAL/fineui from ~CLAIRE.TANG/fineui:master to master * commit '89398f7120480d03ddfaee6cb539aa9b1d501a71': BI-81668 fix:补充提交,多选与单选内部高度不一致 KERNEL-7499 refactor:类型补充es6
Claire.Tang
4 years ago
4 changed files with 40 additions and 1 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