Browse Source
Merge in DEC/fineui from ~JIMMY.CHAI/dec-fineui:feature/x to feature/x * commit 'cc1364720c544965c23db6b42d3aaa0c5ce6bf7b': KERNEL-18940 refactor: 类型补充master
Jimmy.Chai-柴嘉明
4 months ago
23 changed files with 202 additions and 51 deletions
@ -0,0 +1,19 @@ |
|||||||
|
import { Widget } from '../../core/widget'; |
||||||
|
|
||||||
|
export declare class MultiSelectCheckSelectedSwitcher extends Widget { |
||||||
|
static xtype: string; |
||||||
|
static EVENT_TRIGGER_CHANGE: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
static EVENT_AFTER_HIDEVIEW: string; |
||||||
|
|
||||||
|
props: { |
||||||
|
itemsCreator?: Function; |
||||||
|
valueFormatter?: Function; |
||||||
|
}; |
||||||
|
|
||||||
|
adjustView(): void; |
||||||
|
|
||||||
|
hideView(): void; |
||||||
|
|
||||||
|
getView(): Widget; |
||||||
|
} |
@ -1,8 +1,17 @@ |
|||||||
|
import { PopupView } from "../../base/layer/layer.popup"; |
||||||
import { Widget } from "../../core/widget"; |
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
export declare class TextValueDownListCombo extends Widget { |
export declare class TextValueDownListCombo extends Widget { |
||||||
static xtype: string; |
static xtype: string; |
||||||
static EVENT_CHANGE: string; |
static EVENT_CHANGE: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
props: { |
||||||
|
container?: string; |
||||||
|
popup?: any; |
||||||
|
}; |
||||||
|
|
||||||
getValue<T>(): [T]; |
getValue<T>(): [T]; |
||||||
|
|
||||||
|
getPopup(): PopupView; |
||||||
} |
} |
||||||
|
Loading…
Reference in new issue