forked from fanruan/fineui
Browse Source
* commit '3ef548d6dcaf88c3921fb36631e1d79e7956992e': 无JIRA任务 custom_tree支持hasNext 无JIRA任务 rowHeight支持一下传function 无JIRA任务,优化object对象的un方法 无JIRA 补一个ts类型 无JIRA任务 补充类型 无JIRA任务 补充类型 无JIRA singletree.combo 支持传入popup属性, maxHeight之类的 无JIRA singletree.combo 支持传入popup属性, maxHeight之类的 BI-125208 feat: 组件日期类型的过滤算子优化 BI-129591 feat: HexColorChooserPopup 支持配置自动和透明 update KERNEL-15856 fix:兼容定时调度 无JIRA 更新异步加载方法 无jria fix:group.virtualresearch/test
superman
12 months ago
30 changed files with 212 additions and 58 deletions
@ -1,14 +0,0 @@
|
||||
export * from './worker.js'; |
||||
|
||||
// "!src/base/single/input/file.js",
|
||||
// "!src/case/ztree/**/*.js",
|
||||
import * as _case from './case'; |
||||
import * as _widget from './widget'; |
||||
import { _global } from "@/core/0.foundation"; |
||||
|
||||
const fuiExport = { |
||||
..._case, |
||||
..._widget |
||||
}; |
||||
|
||||
Object.assign(_global.BI, fuiExport); |
@ -1 +1,3 @@
|
||||
export declare function $import(src: string, ext?: string, must?: boolean): void |
||||
|
||||
export declare function loadResource(opt: { src: string, extension?: string, async?: boolean }): Promise<any> |
||||
|
@ -0,0 +1,23 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
import { DynamicYearComboValue } from "../year/combo.year"; |
||||
|
||||
export declare class YearInterval extends Single { |
||||
static xtype: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
|
||||
props: { |
||||
simple?: boolean; |
||||
} & Single['props']; |
||||
|
||||
getValue(): { |
||||
start: DynamicYearComboValue; |
||||
end: DynamicYearComboValue; |
||||
}; |
||||
|
||||
setMinDate(minDate: string): void; |
||||
|
||||
setMaxDate(maxDate: string): void; |
||||
} |
@ -0,0 +1,23 @@
|
||||
import { Single } from "../../base/single/single"; |
||||
import { DynamicYearQuarterComboValue } from "../yearquarter/combo.yearquarter"; |
||||
|
||||
export declare class YearQuarterInterval extends Single { |
||||
static xtype: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
|
||||
props: { |
||||
simple?: boolean; |
||||
} & Single['props']; |
||||
|
||||
getValue(): { |
||||
start: DynamicYearQuarterComboValue; |
||||
end: DynamicYearQuarterComboValue; |
||||
}; |
||||
|
||||
setMinDate(minDate: string): void; |
||||
|
||||
setMaxDate(maxDate: string): void; |
||||
} |
Loading…
Reference in new issue