forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~KIRA/fineui:master to master * commit '5e898b556eb5d5c12bf13ce8511926fed228f081': KERNEL-6533 refactor: 补充描述es6
Kira
4 years ago
7 changed files with 108 additions and 1 deletions
@ -0,0 +1,22 @@ |
|||||||
|
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,12 @@ |
|||||||
|
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,27 @@ |
|||||||
|
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,7 @@ |
|||||||
|
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,14 @@ |
|||||||
|
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; |
||||||
|
}; |
||||||
|
} |
Loading…
Reference in new issue