forked from fanruan/fineui
data
4 years ago
40 changed files with 2404 additions and 1816 deletions
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@ -0,0 +1,16 @@
|
||||
import { Single } from '../../base/single/single'; |
||||
export declare class IntervalSlider extends Single { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
max: number; |
||||
min: number; |
||||
getValue(): { |
||||
min: number; |
||||
max: number; |
||||
}; |
||||
setMinAndMax(v: { |
||||
min: number; |
||||
max: number; |
||||
}): void; |
||||
reset(): void; |
||||
} |
@ -0,0 +1,9 @@
|
||||
import { Single } from '../../base/single/single'; |
||||
export declare class MultiSelectInsertList extends Single { |
||||
static xtype: string; |
||||
static REQ_GET_DATA_LENGTH: 1; |
||||
static REQ_GET_ALL_DATA: -1; |
||||
static EVENT_CHANGE: string; |
||||
isAllSelected(): boolean; |
||||
resize(): void; |
||||
} |
@ -0,0 +1,17 @@
|
||||
import { Single } from '../../base/single/single'; |
||||
export declare class NumberInterval extends Single { |
||||
static xtype: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
isStateValid(): boolean; |
||||
setMinEnable(v: boolean): void; |
||||
setCloseMinEnable(v: boolean): void; |
||||
setMaxEnable(v: boolean): void; |
||||
setCloseMaxEnable(v: boolean): void; |
||||
showNumTip(): void; |
||||
hideNumTip(): void; |
||||
setNumTip(v: string): void; |
||||
getNumTip(): void; |
||||
} |
@ -0,0 +1,6 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
export declare class DynamicYearCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
} |
@ -0,0 +1,12 @@
|
||||
import { Single } from '../../base/single/single'; |
||||
export declare class YearMonthInterval extends Single { |
||||
static xtype: string; |
||||
static EVENT_VALID: string; |
||||
static EVENT_ERROR: string; |
||||
static EVENT_CHANGE: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
getValue(): { |
||||
start: number; |
||||
end: number; |
||||
}; |
||||
} |
@ -0,0 +1,6 @@
|
||||
import { Widget } from "../../core/widget"; |
||||
export declare class DynamicYearQuarterCombo extends Widget { |
||||
static xtype: string; |
||||
static EVENT_CONFIRM: string; |
||||
static EVENT_BEFORE_POPUPVIEW: string; |
||||
} |
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue