forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~KOBI/fineui:master to master * commit 'a8cd5318f7d40e24bea1137af1b471999b1b85c5': KERNEL-7828 补充声明es6
Kobi
3 years ago
4 changed files with 85 additions and 0 deletions
@ -0,0 +1,32 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
import { Combo } from "../../base/combination/combo"; |
||||||
|
|
||||||
|
export declare class MultiLayerDownListCombo extends Widget { |
||||||
|
static xtype: string; |
||||||
|
|
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_SON_VALUE_CHANGE: string; |
||||||
|
static EVENT_BEFORE_POPUPVIEW: string; |
||||||
|
|
||||||
|
props: { |
||||||
|
adjustLength: Combo['props']['adjustLength']; |
||||||
|
direction: Combo['props']['direction']; |
||||||
|
trigger: Combo['props']['trigger']; |
||||||
|
container: Combo['props']['container']; |
||||||
|
stopPropagation: Combo['props']['stopPropagation']; |
||||||
|
el: Combo['props']['el']; |
||||||
|
chooseType: number; |
||||||
|
value: any; |
||||||
|
iconCls: string; |
||||||
|
} |
||||||
|
|
||||||
|
hideView(): void; |
||||||
|
|
||||||
|
showView(e?: Event): void; |
||||||
|
|
||||||
|
setValue(v: any): void; |
||||||
|
|
||||||
|
getValue<T>(): T; |
||||||
|
|
||||||
|
populate<T>(items: T[]): void; |
||||||
|
} |
@ -0,0 +1,20 @@ |
|||||||
|
import { Widget } from "../../core/widget"; |
||||||
|
|
||||||
|
export declare class MultiLayerDownListPopup extends Widget { |
||||||
|
static xtype: string; |
||||||
|
|
||||||
|
static EVENT_CHANGE: string; |
||||||
|
static EVENT_SON_VALUE_CHANGE: string; |
||||||
|
|
||||||
|
props: { |
||||||
|
items: any[]; |
||||||
|
chooseType: number; |
||||||
|
value: any; |
||||||
|
} |
||||||
|
|
||||||
|
getValue<T>(): T; |
||||||
|
|
||||||
|
setValue(v: any): void; |
||||||
|
|
||||||
|
populate<T>(items: T[]): void; |
||||||
|
} |
Loading…
Reference in new issue