Browse Source
* commit '07b2b1371adcd419c4d2d011a88120b7de24a2e3': BI-155273 fix: 新增一些方法 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
superman
2 months ago
54 changed files with 517 additions and 102 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.
@ -1,13 +1,17 @@
|
||||
import { PopupView } from "../../../base/layer/layer.popup"; |
||||
import { Widget } from '../../../core/widget'; |
||||
|
||||
export declare class IconCombo extends Widget { |
||||
static xtype: string; |
||||
|
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
|
||||
showView(): void; |
||||
|
||||
hideView(): void; |
||||
|
||||
populate(items: any[]): void; |
||||
|
||||
getPopup(): PopupView; |
||||
} |
||||
|
@ -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