Browse Source
Merge in ~DAILER/fineui-decision from feature/x to release/11.0 * commit '4d544143ee19e15f443c8593f347c7a76617cb62': Revert "无JIRA layout 的updateChildren过程中传递context" 无JIRA tab添加子card destory监听 BI-154253 fix: 点击报错 BI-154136 fix: 按钮被遮挡 KERNEL-18940 refactor: 处理搜索,新增一些属性和方法 BI-153053 fix: 展开的加载按钮异常 BI-124572 fix: 过滤组件主题色修复 KERNEL-18940 refactor: 类型补充 KERNEL-18940 refactor: 新增一些属性和方法 无JIRA layout 的updateChildren过程中传递context REPORT-125909 fix: 【公共模型引入BI】低版本chrome,维度指标集在组件分析区域不显示master
Dailer-刘荣歆
3 months ago
43 changed files with 402 additions and 93 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