Browse Source
Merge in DEC/fineui from ~ZOEY.CHEN/fineui_:final/11.0 to final/11.0 * commit '90c334eb6bb1e1079e0d2abbfa4dbc090a3796ba': BI-154149 fix: 无法点击清空 BI-154214 fix:国际化 Reapply "Pull request #16: Feature/x" BI-154374 Revert "BI-144276 fix: 【来源POC项目】增量更新开始时间" 无JIRA tab添加子card destory监听 Revert "Pull request #16: Feature/x" Revert "无JIRA layout 的updateChildren过程中传递context" 无JIRA tab添加子card destory监听 BI-154253 fix: 点击报错 BI-154136 fix: 按钮被遮挡 Uploaded files 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
Zoey.Chen-陈泽语
3 months ago
50 changed files with 458 additions and 95 deletions
Binary file not shown.
Before Width: | Height: | Size: 1.1 MiB After Width: | Height: | Size: 1.1 MiB |
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -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