forked from fanruan/fineui
Browse Source
Merge in VISUAL/fineui from ~OLIVER.KE/fineui:master to master * commit '831f9e02593485f36a0015add5c4e7b9711c11ef': 无JIRA任务 补充类型 无JIRA任务 补充类型research/test
Oliver.Ke-柯键基
1 year ago
10 changed files with 104 additions and 6 deletions
@ -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