dailer
1 year ago
17 changed files with 121 additions and 9 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