Browse Source
Merge in VISUAL/fineui from ~JIMMY.CHAI/dec-fineui:feature/x to master * commit '4992342fb45c6278b16f9b2621d9e37cd2da8fec': Reapply "Pull request #16: Feature/x" BI-154374 Revert "BI-144276 fix: 【来源POC项目】增量更新开始时间"master
Jimmy.Chai-柴嘉明
3 months ago
43 changed files with 396 additions and 92 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"; |
||||
|
||||
export declare class TextValueDownListCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
|
||||
props: { |
||||
container?: string; |
||||
popup?: any; |
||||
}; |
||||
|
||||
getValue<T>(): [T]; |
||||
|
||||
getPopup(): PopupView; |
||||
} |
||||
|
Loading…
Reference in new issue