@uzum-tech/ui 1.1.4 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +1 -1
- package/dist/index.js +281 -340
- package/dist/index.prod.js +2 -2
- package/es/_utils/uzum/warn.js +3 -3
- package/es/alert/src/Alert.js +1 -1
- package/es/alert/src/styles/index.cssr.js +1 -1
- package/es/date-picker/src/DatePicker.d.ts +1 -0
- package/es/date-picker/src/DatePicker.js +10 -8
- package/es/date-picker/src/config.d.ts +1 -1
- package/es/date-picker/src/config.js +1 -1
- package/es/date-picker/src/interface.d.ts +7 -5
- package/es/date-picker/src/panel/date.d.ts +10 -7
- package/es/date-picker/src/panel/date.js +38 -18
- package/es/date-picker/src/panel/daterange.d.ts +18 -7
- package/es/date-picker/src/panel/daterange.js +94 -43
- package/es/date-picker/src/panel/datetime.d.ts +3 -1
- package/es/date-picker/src/panel/datetimerange.d.ts +2 -0
- package/es/date-picker/src/panel/panelHeader.d.ts +28 -7
- package/es/date-picker/src/panel/panelHeader.js +37 -13
- package/es/date-picker/src/panel/panelMonth.d.ts +16 -8
- package/es/date-picker/src/panel/panelMonth.js +8 -4
- package/es/date-picker/src/panel/panelMonthContent.d.ts +3 -1
- package/es/date-picker/src/panel/panelMonthContent.js +2 -5
- package/es/date-picker/src/panel/panelYear.d.ts +16 -8
- package/es/date-picker/src/panel/panelYear.js +8 -4
- package/es/date-picker/src/panel/panelYearContent.d.ts +3 -1
- package/es/date-picker/src/panel/panelYearContent.js +2 -1
- package/es/date-picker/src/panel/use-calendar.d.ts +4 -3
- package/es/date-picker/src/panel/use-dual-calendar.d.ts +1 -0
- package/es/date-picker/src/panel/use-panel-common.d.ts +2 -0
- package/es/date-picker/src/panel/use-panel-common.js +1 -0
- package/es/date-picker/src/styles/index.cssr.js +12 -10
- package/es/date-picker/src/utils.d.ts +1 -0
- package/es/grid/src/Grid.js +1 -1
- package/es/index.d.ts +1 -0
- package/es/index.js +1 -0
- package/es/preset.d.ts +2 -2
- package/es/preset.js +3 -3
- package/es/version.d.ts +1 -1
- package/es/version.js +1 -1
- package/lib/_utils/uzum/warn.js +3 -3
- package/lib/alert/src/Alert.js +1 -1
- package/lib/alert/src/styles/index.cssr.js +1 -1
- package/lib/date-picker/src/DatePicker.d.ts +1 -0
- package/lib/date-picker/src/DatePicker.js +9 -7
- package/lib/date-picker/src/config.d.ts +1 -1
- package/lib/date-picker/src/config.js +1 -1
- package/lib/date-picker/src/interface.d.ts +7 -5
- package/lib/date-picker/src/panel/date.d.ts +10 -7
- package/lib/date-picker/src/panel/date.js +37 -17
- package/lib/date-picker/src/panel/daterange.d.ts +18 -7
- package/lib/date-picker/src/panel/daterange.js +93 -42
- package/lib/date-picker/src/panel/datetime.d.ts +3 -1
- package/lib/date-picker/src/panel/datetimerange.d.ts +2 -0
- package/lib/date-picker/src/panel/panelHeader.d.ts +28 -7
- package/lib/date-picker/src/panel/panelHeader.js +37 -13
- package/lib/date-picker/src/panel/panelMonth.d.ts +16 -8
- package/lib/date-picker/src/panel/panelMonth.js +8 -4
- package/lib/date-picker/src/panel/panelMonthContent.d.ts +3 -1
- package/lib/date-picker/src/panel/panelMonthContent.js +2 -5
- package/lib/date-picker/src/panel/panelYear.d.ts +16 -8
- package/lib/date-picker/src/panel/panelYear.js +8 -4
- package/lib/date-picker/src/panel/panelYearContent.d.ts +3 -1
- package/lib/date-picker/src/panel/panelYearContent.js +2 -1
- package/lib/date-picker/src/panel/use-calendar.d.ts +4 -3
- package/lib/date-picker/src/panel/use-dual-calendar.d.ts +1 -0
- package/lib/date-picker/src/panel/use-panel-common.d.ts +2 -0
- package/lib/date-picker/src/panel/use-panel-common.js +1 -0
- package/lib/date-picker/src/styles/index.cssr.js +12 -10
- package/lib/date-picker/src/utils.d.ts +1 -0
- package/lib/grid/src/Grid.js +1 -1
- package/lib/index.d.ts +1 -0
- package/lib/index.js +1 -0
- package/lib/preset.d.ts +2 -2
- package/lib/preset.js +3 -3
- package/lib/version.d.ts +1 -1
- package/lib/version.js +1 -1
- package/package.json +5 -10
- package/web-types.json +9 -9
- package/es/date-picker/src/panel/monthrange.d.ts +0 -1303
- package/es/date-picker/src/panel/monthrange.js +0 -117
- package/lib/date-picker/src/panel/monthrange.d.ts +0 -1303
- package/lib/date-picker/src/panel/monthrange.js +0 -119
|
@@ -1,1303 +0,0 @@
|
|
|
1
|
-
import { type PropType, type VNode } from 'vue';
|
|
2
|
-
import type { MonthItem, QuarterItem, YearItem } from '../utils';
|
|
3
|
-
declare const _default: import("vue").DefineComponent<{
|
|
4
|
-
type: {
|
|
5
|
-
type: PropType<"monthrange" | "quarterrange" | "yearrange">;
|
|
6
|
-
required: true;
|
|
7
|
-
};
|
|
8
|
-
defaultCalendarStartTime: NumberConstructor;
|
|
9
|
-
defaultCalendarEndTime: NumberConstructor;
|
|
10
|
-
bindCalendarMonths: BooleanConstructor;
|
|
11
|
-
actions: {
|
|
12
|
-
readonly type: ArrayConstructor;
|
|
13
|
-
readonly default: () => string[];
|
|
14
|
-
};
|
|
15
|
-
active: BooleanConstructor;
|
|
16
|
-
dateFormat: StringConstructor;
|
|
17
|
-
timeFormat: {
|
|
18
|
-
readonly type: StringConstructor;
|
|
19
|
-
readonly value: "HH:mm:ss";
|
|
20
|
-
};
|
|
21
|
-
value: {
|
|
22
|
-
readonly type: PropType<import("../interface").Value | null>;
|
|
23
|
-
readonly default: null;
|
|
24
|
-
};
|
|
25
|
-
shortcuts: PropType<import("../interface").Shortcuts>;
|
|
26
|
-
defaultTime: PropType<import("../interface").DefaultTime>;
|
|
27
|
-
onClear: FunctionConstructor;
|
|
28
|
-
onConfirm: PropType<(value: import("../interface").Value | null) => void>;
|
|
29
|
-
onClose: PropType<import("../interface").OnClose>;
|
|
30
|
-
onTabOut: FunctionConstructor;
|
|
31
|
-
onUpdateValue: {
|
|
32
|
-
readonly type: PropType<import("../interface").OnPanelUpdateValue>;
|
|
33
|
-
readonly required: true;
|
|
34
|
-
};
|
|
35
|
-
themeClass: StringConstructor;
|
|
36
|
-
onRender: PropType<(() => void) | undefined>;
|
|
37
|
-
panel: BooleanConstructor;
|
|
38
|
-
}, {
|
|
39
|
-
renderItem: (item: YearItem | MonthItem | QuarterItem, i: number, mergedClsPrefix: string, type: 'start' | 'end') => VNode;
|
|
40
|
-
startDateDisplayString: import("vue").Ref<string>;
|
|
41
|
-
endDateInput: import("vue").Ref<string>;
|
|
42
|
-
timePickerSize: import("vue").Ref<import("../../..").InputSize>;
|
|
43
|
-
startTimeValue: import("vue").ComputedRef<number | null>;
|
|
44
|
-
endTimeValue: import("vue").ComputedRef<number | null>;
|
|
45
|
-
datePickerSlots: Readonly<{
|
|
46
|
-
[name: string]: import("vue").Slot<any> | undefined;
|
|
47
|
-
}>;
|
|
48
|
-
shortcuts: import("vue").ComputedRef<import("../interface").Shortcuts | undefined>;
|
|
49
|
-
startCalendarDateTime: import("vue").Ref<number>;
|
|
50
|
-
endCalendarDateTime: import("vue").Ref<number>;
|
|
51
|
-
justifyColumnsScrollState: {
|
|
52
|
-
(value: [number, number], type: "start" | "end"): void;
|
|
53
|
-
(): void;
|
|
54
|
-
};
|
|
55
|
-
handleFocusDetectorFocus: () => void;
|
|
56
|
-
handleStartTimePickerChange: (value: number | null) => void;
|
|
57
|
-
handleEndTimePickerChange: (value: number | null) => void;
|
|
58
|
-
handleStartDateInput: (value: string) => void;
|
|
59
|
-
handleStartDateInputBlur: () => void;
|
|
60
|
-
handleEndDateInput: (value: string) => void;
|
|
61
|
-
handleEndDateInputBlur: () => void;
|
|
62
|
-
handleStartYearVlScroll: () => void;
|
|
63
|
-
handleEndYearVlScroll: () => void;
|
|
64
|
-
virtualListContainer: (type: "start" | "end") => HTMLElement;
|
|
65
|
-
virtualListContent: (type: "start" | "end") => HTMLElement;
|
|
66
|
-
onUpdateStartCalendarValue: (value: number) => void;
|
|
67
|
-
onUpdateEndCalendarValue: (value: number) => void;
|
|
68
|
-
startYearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
69
|
-
endYearScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
70
|
-
startMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
71
|
-
endMonthScrollbarRef: import("vue").Ref<import("../../../_internal").ScrollbarInst | null>;
|
|
72
|
-
startYearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
|
|
73
|
-
endYearVlRef: import("vue").Ref<import("vueuc").VirtualListInst | null>;
|
|
74
|
-
isDateDisabled: import("vue").Ref<import("../interface").IsDateDisabled | undefined>;
|
|
75
|
-
isStartHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
|
|
76
|
-
isEndHourDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsHourDisabled | undefined>;
|
|
77
|
-
isStartMinuteDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsMinuteDisabled | undefined>;
|
|
78
|
-
isEndMinuteDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsMinuteDisabled | undefined>;
|
|
79
|
-
isStartSecondDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsSecondDisabled | undefined>;
|
|
80
|
-
isEndSecondDisabled: import("vue").ComputedRef<import("../../../time-picker/src/interface").IsSecondDisabled | undefined>;
|
|
81
|
-
isStartDateInvalid: import("vue").ComputedRef<boolean>;
|
|
82
|
-
isEndDateInvalid: import("vue").ComputedRef<boolean>;
|
|
83
|
-
isStartTimeInvalid: import("vue").ComputedRef<boolean>;
|
|
84
|
-
isEndTimeInvalid: import("vue").ComputedRef<boolean>;
|
|
85
|
-
isStartValueInvalid: import("vue").ComputedRef<boolean>;
|
|
86
|
-
isEndValueInvalid: import("vue").ComputedRef<boolean>;
|
|
87
|
-
isRangeInvalid: import("vue").ComputedRef<boolean>;
|
|
88
|
-
mergedTheme: import("vue").Ref<{
|
|
89
|
-
common: {
|
|
90
|
-
scrollbarColor: string;
|
|
91
|
-
scrollbarColorHover: string;
|
|
92
|
-
scrollbarWidth: string;
|
|
93
|
-
scrollbarHeight: string;
|
|
94
|
-
scrollbarBorderRadius: string;
|
|
95
|
-
opacityDisabled: string;
|
|
96
|
-
brandPrimary50: string;
|
|
97
|
-
brandPrimary100: string;
|
|
98
|
-
brandPrimary200: string;
|
|
99
|
-
brandPrimary300: string;
|
|
100
|
-
brandPrimary400: string;
|
|
101
|
-
brandPrimary500: string;
|
|
102
|
-
brandPrimary550: string;
|
|
103
|
-
brandPrimary600: string;
|
|
104
|
-
brandSecondary500: string;
|
|
105
|
-
brandSecondary300: string;
|
|
106
|
-
brandSecondary600: string;
|
|
107
|
-
brandTertiary500: string;
|
|
108
|
-
brandTertiary300: string;
|
|
109
|
-
brandTertiary600: string;
|
|
110
|
-
brandQuaternary500: string;
|
|
111
|
-
brandQuaternary300: string;
|
|
112
|
-
brandQuaternary600: string;
|
|
113
|
-
brandQuinary500: string;
|
|
114
|
-
brandQuinary300: string;
|
|
115
|
-
brandQuinary600: string;
|
|
116
|
-
brandQuinary100: string;
|
|
117
|
-
surfacePrimary: string;
|
|
118
|
-
surfaceSecondary: string;
|
|
119
|
-
containerPrimary: string;
|
|
120
|
-
containerSecondary: string;
|
|
121
|
-
textPrimary: string;
|
|
122
|
-
textSecondary: string;
|
|
123
|
-
textTertiary: string;
|
|
124
|
-
textQuaternary: string;
|
|
125
|
-
textBrand: string;
|
|
126
|
-
elementsPrimary: string;
|
|
127
|
-
elementsSecondary: string;
|
|
128
|
-
elementsTertiary: string;
|
|
129
|
-
elementsQuaternary: string;
|
|
130
|
-
elementsQuinary: string;
|
|
131
|
-
elementsDarkQuinary: string;
|
|
132
|
-
elementsSenary: string;
|
|
133
|
-
elementsOnContainer: string;
|
|
134
|
-
transparencyPrimary: string;
|
|
135
|
-
transparencySecondary: string;
|
|
136
|
-
transparencyTertiary: string;
|
|
137
|
-
transparencyQuinary: string;
|
|
138
|
-
transparencyModal: string;
|
|
139
|
-
staticBlack: string;
|
|
140
|
-
staticDarkGrey: string;
|
|
141
|
-
staticWhite: string;
|
|
142
|
-
staticRed: string;
|
|
143
|
-
staticOrange: string;
|
|
144
|
-
staticGreen: string;
|
|
145
|
-
staticErrorAccent: string;
|
|
146
|
-
shadowDepth2: string;
|
|
147
|
-
fontFamily: string;
|
|
148
|
-
fontFamilyMono: string;
|
|
149
|
-
cubicBezierEaseInOut: string;
|
|
150
|
-
cubicBezierEaseOut: string;
|
|
151
|
-
cubicBezierEaseIn: string;
|
|
152
|
-
borderRadiusLarge: string;
|
|
153
|
-
borderRadius: string;
|
|
154
|
-
borderRadiusMedium: string;
|
|
155
|
-
borderRadiusSmall: string;
|
|
156
|
-
borderRadiusTiny: string;
|
|
157
|
-
heightMini: string;
|
|
158
|
-
heightTiny: string;
|
|
159
|
-
heightSmall: string;
|
|
160
|
-
heightMedium: string;
|
|
161
|
-
heightLarge: string;
|
|
162
|
-
heightHuge: string;
|
|
163
|
-
fontDisplayLarge: string;
|
|
164
|
-
fontDisplaySmall: string;
|
|
165
|
-
fontHeadingLarge: string;
|
|
166
|
-
fontHeadingMedium: string;
|
|
167
|
-
fontHeadingSmall: string;
|
|
168
|
-
fontTitleLarge: string;
|
|
169
|
-
fontTitleMedium: string;
|
|
170
|
-
fontTitleSmall: string;
|
|
171
|
-
fontBodyLarge: string;
|
|
172
|
-
fontBodyMedium: string;
|
|
173
|
-
fontBodySmall: string;
|
|
174
|
-
lineHeightDisplayLarge: string;
|
|
175
|
-
lineHeightDisplaySmall: string;
|
|
176
|
-
lineHeightHeadingLarge: string;
|
|
177
|
-
lineHeightHeadingMedium: string;
|
|
178
|
-
lineHeightHeadingSmall: string;
|
|
179
|
-
lineHeightTitleLarge: string;
|
|
180
|
-
lineHeightTitleMedium: string;
|
|
181
|
-
lineHeightTitleSmall: string;
|
|
182
|
-
lineHeightBodyLarge: string;
|
|
183
|
-
lineHeightBodyMedium: string;
|
|
184
|
-
lineHeightBodySmall: string;
|
|
185
|
-
fontWeight: string;
|
|
186
|
-
fontWeightStrong: string;
|
|
187
|
-
fontWeightBold: string;
|
|
188
|
-
iconSmall: string;
|
|
189
|
-
iconMedium: string;
|
|
190
|
-
iconLarge: string;
|
|
191
|
-
iconHuge: string;
|
|
192
|
-
closeSmall: string;
|
|
193
|
-
closeMedium: string;
|
|
194
|
-
closeLarge: string;
|
|
195
|
-
closeHuge: string;
|
|
196
|
-
closeBorderRadius: string;
|
|
197
|
-
name: "common";
|
|
198
|
-
};
|
|
199
|
-
self: {
|
|
200
|
-
itemColor: string;
|
|
201
|
-
itemColorHover: string;
|
|
202
|
-
itemColorPressed: string;
|
|
203
|
-
itemColorDisabled: string;
|
|
204
|
-
itemTextColor: string;
|
|
205
|
-
itemTextColorHover: string;
|
|
206
|
-
itemTextColorPressed: string;
|
|
207
|
-
itemTextColorDisabled: string;
|
|
208
|
-
itemColorActive: string;
|
|
209
|
-
itemColorActiveHover: string;
|
|
210
|
-
itemColorActivePressed: string;
|
|
211
|
-
itemColorActiveDisabled: string;
|
|
212
|
-
itemTextColorActive: string;
|
|
213
|
-
itemTextColorActiveHover: string;
|
|
214
|
-
itemTextColorActivePressed: string;
|
|
215
|
-
itemTextColorActiveDisabled: string;
|
|
216
|
-
itemColorCurrent: string;
|
|
217
|
-
itemColorCurrentHover: string;
|
|
218
|
-
itemColorCurrentPressed: string;
|
|
219
|
-
itemColorCurrentDisabled: string;
|
|
220
|
-
itemTextColorCurrent: string;
|
|
221
|
-
itemTextColorCurrentHover: string;
|
|
222
|
-
itemTextColorCurrentPressed: string;
|
|
223
|
-
itemTextColorCurrentDisabled: string;
|
|
224
|
-
itemColorIncluded: string;
|
|
225
|
-
itemColorIncludedHover: string;
|
|
226
|
-
itemColorIncludedPressed: string;
|
|
227
|
-
itemColorIncludedDisabled: string;
|
|
228
|
-
itemTextColorIncluded: string;
|
|
229
|
-
itemTextColorIncludedHover: string;
|
|
230
|
-
itemTextColorIncludedPressed: string;
|
|
231
|
-
itemTextColorIncludedDisabled: string;
|
|
232
|
-
itemColorExcluded: string;
|
|
233
|
-
itemTextColorExcluded: string;
|
|
234
|
-
arrowSize: string;
|
|
235
|
-
arrowColor: string;
|
|
236
|
-
itemFontSize: string;
|
|
237
|
-
itemFontWeight: string;
|
|
238
|
-
itemBorderRadius: string;
|
|
239
|
-
calendarDaysFontSize: string;
|
|
240
|
-
calendarTitleFontSize: string;
|
|
241
|
-
monthItemTextColorActive: string;
|
|
242
|
-
monthItemColorActive: string;
|
|
243
|
-
monthItemColor: string;
|
|
244
|
-
monthItemTextColor: string;
|
|
245
|
-
monthItemColorHover: string;
|
|
246
|
-
monthItemTextColorHover: string;
|
|
247
|
-
titleColorActive: string;
|
|
248
|
-
panelColor: string;
|
|
249
|
-
panelTextColor: string;
|
|
250
|
-
calendarTitleTextColor: string;
|
|
251
|
-
calendarTitleColorHover: string;
|
|
252
|
-
calendarDividerColor: string;
|
|
253
|
-
panelActionDividerColor: string;
|
|
254
|
-
panelBoxShadow: string;
|
|
255
|
-
panelBorderRadius: string;
|
|
256
|
-
calendarTitleFontWeight: string;
|
|
257
|
-
scrollItemBorderRadius: string;
|
|
258
|
-
iconColor: string;
|
|
259
|
-
iconColorDisabled: string;
|
|
260
|
-
itemWidth: string;
|
|
261
|
-
itemHeight: string;
|
|
262
|
-
itemSelectedWidth: string;
|
|
263
|
-
itemCellWidth: string;
|
|
264
|
-
itemCellHeight: string;
|
|
265
|
-
itemHeadCellWidth: string;
|
|
266
|
-
itemHeadCellHeight: string;
|
|
267
|
-
scrollItemWidth: string;
|
|
268
|
-
scrollItemHeight: string;
|
|
269
|
-
scrollItemGap: string;
|
|
270
|
-
panelExtraFooterPadding: string;
|
|
271
|
-
panelActionPadding: string;
|
|
272
|
-
calendarTitlePadding: string;
|
|
273
|
-
calendarTitleHeight: string;
|
|
274
|
-
panelHeaderPadding: string;
|
|
275
|
-
calendarDaysHeight: string;
|
|
276
|
-
calendarTitleGridTempateColumns: string;
|
|
277
|
-
calendarLeftPaddingDate: string;
|
|
278
|
-
calendarLeftPaddingDatetime: string;
|
|
279
|
-
calendarLeftPaddingDaterange: string;
|
|
280
|
-
calendarLeftPaddingDatetimerange: string;
|
|
281
|
-
calendarLeftPaddingMonth: string;
|
|
282
|
-
calendarLeftPaddingYear: string;
|
|
283
|
-
calendarLeftPaddingQuarter: string;
|
|
284
|
-
calendarLeftPaddingMonthrange: string;
|
|
285
|
-
calendarLeftPaddingQuarterrange: string;
|
|
286
|
-
calendarLeftPaddingYearrange: string;
|
|
287
|
-
calendarRightPaddingDate: string;
|
|
288
|
-
calendarRightPaddingDatetime: string;
|
|
289
|
-
calendarRightPaddingDaterange: string;
|
|
290
|
-
calendarRightPaddingDatetimerange: string;
|
|
291
|
-
calendarRightPaddingMonth: string;
|
|
292
|
-
calendarRightPaddingYear: string;
|
|
293
|
-
calendarRightPaddingQuarter: string;
|
|
294
|
-
calendarRightPaddingMonthrange: string;
|
|
295
|
-
calendarRightPaddingQuarterrange: string;
|
|
296
|
-
calendarRightPaddingYearrange: string;
|
|
297
|
-
};
|
|
298
|
-
peers: {
|
|
299
|
-
Input: import("../../../_mixins").Theme<"Input", {
|
|
300
|
-
paddingTiny: string;
|
|
301
|
-
paddingSmall: string;
|
|
302
|
-
paddingMedium: string;
|
|
303
|
-
paddingLarge: string;
|
|
304
|
-
paddingHuge: string;
|
|
305
|
-
clearSize: string;
|
|
306
|
-
countTextColorDisabled: string;
|
|
307
|
-
countTextColor: string;
|
|
308
|
-
heightTiny: string;
|
|
309
|
-
heightSmall: string;
|
|
310
|
-
heightMedium: string;
|
|
311
|
-
heightLarge: string;
|
|
312
|
-
heightHuge: string;
|
|
313
|
-
fontSizeTiny: string;
|
|
314
|
-
fontSizeSmall: string;
|
|
315
|
-
fontSizeMedium: string;
|
|
316
|
-
fontSizeLarge: string;
|
|
317
|
-
fontSizeHuge: string;
|
|
318
|
-
lineHeight: string;
|
|
319
|
-
lineHeightTextarea: string;
|
|
320
|
-
borderRadius: string;
|
|
321
|
-
iconSize: string;
|
|
322
|
-
groupLabelTextColor: string;
|
|
323
|
-
textColor: string;
|
|
324
|
-
textColorDisabled: string;
|
|
325
|
-
textDecorationColor: string;
|
|
326
|
-
caretColor: string;
|
|
327
|
-
placeholderColor: string;
|
|
328
|
-
placeholderColorDisabled: string;
|
|
329
|
-
color: string;
|
|
330
|
-
colorDisabled: string;
|
|
331
|
-
colorFocus: string;
|
|
332
|
-
groupLabelBorder: string;
|
|
333
|
-
border: string;
|
|
334
|
-
borderHover: string;
|
|
335
|
-
borderDisabled: string;
|
|
336
|
-
borderFocus: string;
|
|
337
|
-
boxShadowFocus: string;
|
|
338
|
-
loadingColor: string;
|
|
339
|
-
loadingColorWarning: string;
|
|
340
|
-
borderWarning: string;
|
|
341
|
-
borderHoverWarning: string;
|
|
342
|
-
colorFocusWarning: string;
|
|
343
|
-
borderFocusWarning: string;
|
|
344
|
-
boxShadowFocusWarning: string;
|
|
345
|
-
caretColorWarning: string;
|
|
346
|
-
loadingColorError: string;
|
|
347
|
-
borderError: string;
|
|
348
|
-
borderHoverError: string;
|
|
349
|
-
colorFocusError: string;
|
|
350
|
-
borderFocusError: string;
|
|
351
|
-
boxShadowFocusError: string;
|
|
352
|
-
caretColorError: string;
|
|
353
|
-
clearColor: string;
|
|
354
|
-
clearColorHover: string;
|
|
355
|
-
clearColorPressed: string;
|
|
356
|
-
iconColor: string;
|
|
357
|
-
iconColorDisabled: string;
|
|
358
|
-
iconColorHover: string;
|
|
359
|
-
iconColorPressed: string;
|
|
360
|
-
suffixTextColor: string;
|
|
361
|
-
selectionColor: string;
|
|
362
|
-
}, any>;
|
|
363
|
-
Button: import("../../../_mixins").Theme<"Button", {
|
|
364
|
-
heightTiny: string;
|
|
365
|
-
heightSmall: string;
|
|
366
|
-
heightMedium: string;
|
|
367
|
-
heightLarge: string;
|
|
368
|
-
borderRadiusTiny: string;
|
|
369
|
-
borderRadiusSmall: string;
|
|
370
|
-
borderRadiusMedium: string;
|
|
371
|
-
borderRadiusLarge: string;
|
|
372
|
-
fontSizeTiny: string;
|
|
373
|
-
fontSizeSmall: string;
|
|
374
|
-
fontSizeMedium: string;
|
|
375
|
-
fontSizeLarge: string;
|
|
376
|
-
opacityDisabled: string;
|
|
377
|
-
colorOpacitySecondary: string;
|
|
378
|
-
colorOpacitySecondaryHover: string;
|
|
379
|
-
colorOpacitySecondaryPressed: string;
|
|
380
|
-
colorOpacitySecondaryFocus: string;
|
|
381
|
-
colorSecondary: string;
|
|
382
|
-
colorSecondaryHover: string;
|
|
383
|
-
colorSecondaryPressed: string;
|
|
384
|
-
waveColorSecondary: string;
|
|
385
|
-
colorTertiary: string;
|
|
386
|
-
colorTertiaryHover: string;
|
|
387
|
-
colorTertiaryPressed: string;
|
|
388
|
-
colorTertiaryDisalbed: string;
|
|
389
|
-
waveColorTertiary: string;
|
|
390
|
-
textColorTextTertiary: string;
|
|
391
|
-
colorQuaternary: string;
|
|
392
|
-
colorQuaternaryHover: string;
|
|
393
|
-
colorQuaternaryPressed: string;
|
|
394
|
-
color: string;
|
|
395
|
-
colorHover: string;
|
|
396
|
-
colorPressed: string;
|
|
397
|
-
colorFocus: string;
|
|
398
|
-
colorDisabled: string;
|
|
399
|
-
textColor: string;
|
|
400
|
-
textTertiary: string;
|
|
401
|
-
textColorTertiary: string;
|
|
402
|
-
textColorHover: string;
|
|
403
|
-
textColorPressed: string;
|
|
404
|
-
textColorFocus: string;
|
|
405
|
-
textColorDisabled: string;
|
|
406
|
-
textColorText: string;
|
|
407
|
-
textColorTextHover: string;
|
|
408
|
-
textColorTextPressed: string;
|
|
409
|
-
textColorTextFocus: string;
|
|
410
|
-
textColorTextDisabled: string;
|
|
411
|
-
textColorGhost: string;
|
|
412
|
-
textColorGhostHover: string;
|
|
413
|
-
textColorGhostPressed: string;
|
|
414
|
-
textColorGhostFocus: string;
|
|
415
|
-
textColorGhostDisabled: string;
|
|
416
|
-
border: string;
|
|
417
|
-
borderHover: string;
|
|
418
|
-
borderPressed: string;
|
|
419
|
-
borderFocus: string;
|
|
420
|
-
borderDisabled: string;
|
|
421
|
-
rippleColor: string;
|
|
422
|
-
colorPrimary: string;
|
|
423
|
-
colorHoverPrimary: string;
|
|
424
|
-
colorPressedPrimary: string;
|
|
425
|
-
colorFocusPrimary: string;
|
|
426
|
-
colorDisabledPrimary: string;
|
|
427
|
-
waveColorPrimary: string;
|
|
428
|
-
textColorPrimary: string;
|
|
429
|
-
textColorHoverPrimary: string;
|
|
430
|
-
textColorPressedPrimary: string;
|
|
431
|
-
textColorFocusPrimary: string;
|
|
432
|
-
textColorDisabledPrimary: string;
|
|
433
|
-
textColorTextPrimary: string;
|
|
434
|
-
textColorTextHoverPrimary: string;
|
|
435
|
-
textColorTextPressedPrimary: string;
|
|
436
|
-
textColorTextFocusPrimary: string;
|
|
437
|
-
textColorTextDisabledPrimary: string;
|
|
438
|
-
textColorGhostPrimary: string;
|
|
439
|
-
textColorGhostHoverPrimary: string;
|
|
440
|
-
textColorGhostPressedPrimary: string;
|
|
441
|
-
textColorGhostFocusPrimary: string;
|
|
442
|
-
textColorGhostDisabledPrimary: string;
|
|
443
|
-
borderPrimary: string;
|
|
444
|
-
borderHoverPrimary: string;
|
|
445
|
-
borderPressedPrimary: string;
|
|
446
|
-
borderFocusPrimary: string;
|
|
447
|
-
borderDisabledPrimary: string;
|
|
448
|
-
rippleColorPrimary: string;
|
|
449
|
-
colorInfo: string;
|
|
450
|
-
colorHoverInfo: string;
|
|
451
|
-
colorPressedInfo: string;
|
|
452
|
-
colorFocusInfo: string;
|
|
453
|
-
colorDisabledInfo: string;
|
|
454
|
-
textColorInfo: string;
|
|
455
|
-
textColorHoverInfo: string;
|
|
456
|
-
textColorPressedInfo: string;
|
|
457
|
-
textColorFocusInfo: string;
|
|
458
|
-
textColorDisabledInfo: string;
|
|
459
|
-
textColorTextInfo: string;
|
|
460
|
-
textColorTextHoverInfo: string;
|
|
461
|
-
textColorTextPressedInfo: string;
|
|
462
|
-
textColorTextFocusInfo: string;
|
|
463
|
-
textColorTextDisabledInfo: string;
|
|
464
|
-
textColorGhostInfo: string;
|
|
465
|
-
textColorGhostHoverInfo: string;
|
|
466
|
-
textColorGhostPressedInfo: string;
|
|
467
|
-
textColorGhostFocusInfo: string;
|
|
468
|
-
textColorGhostDisabledInfo: string;
|
|
469
|
-
borderInfo: string;
|
|
470
|
-
borderHoverInfo: string;
|
|
471
|
-
borderPressedInfo: string;
|
|
472
|
-
borderFocusInfo: string;
|
|
473
|
-
borderDisabledInfo: string;
|
|
474
|
-
rippleColorInfo: string;
|
|
475
|
-
colorSuccess: string;
|
|
476
|
-
colorHoverSuccess: string;
|
|
477
|
-
colorPressedSuccess: string;
|
|
478
|
-
colorFocusSuccess: string;
|
|
479
|
-
colorDisabledSuccess: string;
|
|
480
|
-
textColorSuccess: string;
|
|
481
|
-
textColorHoverSuccess: string;
|
|
482
|
-
textColorPressedSuccess: string;
|
|
483
|
-
textColorFocusSuccess: string;
|
|
484
|
-
textColorDisabledSuccess: string;
|
|
485
|
-
textColorTextSuccess: string;
|
|
486
|
-
textColorTextHoverSuccess: string;
|
|
487
|
-
textColorTextPressedSuccess: string;
|
|
488
|
-
textColorTextFocusSuccess: string;
|
|
489
|
-
textColorTextDisabledSuccess: string;
|
|
490
|
-
textColorGhostSuccess: string;
|
|
491
|
-
textColorGhostHoverSuccess: string;
|
|
492
|
-
textColorGhostPressedSuccess: string;
|
|
493
|
-
textColorGhostFocusSuccess: string;
|
|
494
|
-
textColorGhostDisabledSuccess: string;
|
|
495
|
-
borderSuccess: string;
|
|
496
|
-
borderHoverSuccess: string;
|
|
497
|
-
borderPressedSuccess: string;
|
|
498
|
-
borderFocusSuccess: string;
|
|
499
|
-
borderDisabledSuccess: string;
|
|
500
|
-
rippleColorSuccess: string;
|
|
501
|
-
colorWarning: string;
|
|
502
|
-
colorHoverWarning: string;
|
|
503
|
-
colorPressedWarning: string;
|
|
504
|
-
colorFocusWarning: string;
|
|
505
|
-
colorDisabledWarning: string;
|
|
506
|
-
textColorWarning: string;
|
|
507
|
-
textColorHoverWarning: string;
|
|
508
|
-
textColorPressedWarning: string;
|
|
509
|
-
textColorFocusWarning: string;
|
|
510
|
-
textColorDisabledWarning: string;
|
|
511
|
-
textColorTextWarning: string;
|
|
512
|
-
textColorTextHoverWarning: string;
|
|
513
|
-
textColorTextPressedWarning: string;
|
|
514
|
-
textColorTextFocusWarning: string;
|
|
515
|
-
textColorTextDisabledWarning: string;
|
|
516
|
-
textColorGhostWarning: string;
|
|
517
|
-
textColorGhostHoverWarning: string;
|
|
518
|
-
textColorGhostPressedWarning: string;
|
|
519
|
-
textColorGhostFocusWarning: string;
|
|
520
|
-
textColorGhostDisabledWarning: string;
|
|
521
|
-
borderWarning: string;
|
|
522
|
-
borderHoverWarning: string;
|
|
523
|
-
borderPressedWarning: string;
|
|
524
|
-
borderFocusWarning: string;
|
|
525
|
-
borderDisabledWarning: string;
|
|
526
|
-
rippleColorWarning: string;
|
|
527
|
-
colorError: string;
|
|
528
|
-
colorHoverError: string;
|
|
529
|
-
colorPressedError: string;
|
|
530
|
-
colorFocusError: string;
|
|
531
|
-
colorDisabledError: string;
|
|
532
|
-
textColorError: string;
|
|
533
|
-
textColorHoverError: string;
|
|
534
|
-
textColorPressedError: string;
|
|
535
|
-
textColorFocusError: string;
|
|
536
|
-
textColorDisabledError: string;
|
|
537
|
-
textColorTextError: string;
|
|
538
|
-
textColorTextHoverError: string;
|
|
539
|
-
textColorTextPressedError: string;
|
|
540
|
-
textColorTextFocusError: string;
|
|
541
|
-
textColorTextDisabledError: string;
|
|
542
|
-
textColorGhostError: string;
|
|
543
|
-
textColorGhostHoverError: string;
|
|
544
|
-
textColorGhostPressedError: string;
|
|
545
|
-
textColorGhostFocusError: string;
|
|
546
|
-
textColorGhostDisabledError: string;
|
|
547
|
-
borderError: string;
|
|
548
|
-
borderHoverError: string;
|
|
549
|
-
borderPressedError: string;
|
|
550
|
-
borderFocusError: string;
|
|
551
|
-
borderDisabledError: string;
|
|
552
|
-
rippleColorError: string;
|
|
553
|
-
waveOpacity: string;
|
|
554
|
-
fontWeight: string;
|
|
555
|
-
fontWeightStrong: string;
|
|
556
|
-
paddingTiny: string;
|
|
557
|
-
paddingSmall: string;
|
|
558
|
-
paddingMedium: string;
|
|
559
|
-
paddingLarge: string;
|
|
560
|
-
paddingRoundTiny: string;
|
|
561
|
-
paddingRoundSmall: string;
|
|
562
|
-
paddingRoundMedium: string;
|
|
563
|
-
paddingRoundLarge: string;
|
|
564
|
-
iconMarginTiny: string;
|
|
565
|
-
iconMarginSmall: string;
|
|
566
|
-
iconMarginMedium: string;
|
|
567
|
-
iconMarginLarge: string;
|
|
568
|
-
iconSizeTiny: string;
|
|
569
|
-
iconSizeSmall: string;
|
|
570
|
-
iconSizeMedium: string;
|
|
571
|
-
iconSizeLarge: string;
|
|
572
|
-
rippleDuration: string;
|
|
573
|
-
}, any>;
|
|
574
|
-
TimePicker: import("../../../_mixins").Theme<"TimePicker", {
|
|
575
|
-
itemFontSize: string;
|
|
576
|
-
itemFontWeight: string;
|
|
577
|
-
itemHeight: string;
|
|
578
|
-
itemWidth: string;
|
|
579
|
-
panelActionPadding: string;
|
|
580
|
-
panelColor: string;
|
|
581
|
-
panelBoxShadow: string;
|
|
582
|
-
panelDividerColor: string;
|
|
583
|
-
itemTextColor: string;
|
|
584
|
-
itemTextColorActive: string;
|
|
585
|
-
itemColorHover: string;
|
|
586
|
-
itemOpacityDisabled: string;
|
|
587
|
-
itemBorderRadius: string;
|
|
588
|
-
borderRadius: string;
|
|
589
|
-
iconColor: string;
|
|
590
|
-
iconColorDisabled: string;
|
|
591
|
-
}, {
|
|
592
|
-
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
593
|
-
color: string;
|
|
594
|
-
colorHover: string;
|
|
595
|
-
}, any>;
|
|
596
|
-
Button: import("../../../_mixins").Theme<"Button", {
|
|
597
|
-
heightTiny: string;
|
|
598
|
-
heightSmall: string;
|
|
599
|
-
heightMedium: string;
|
|
600
|
-
heightLarge: string;
|
|
601
|
-
borderRadiusTiny: string;
|
|
602
|
-
borderRadiusSmall: string;
|
|
603
|
-
borderRadiusMedium: string;
|
|
604
|
-
borderRadiusLarge: string;
|
|
605
|
-
fontSizeTiny: string;
|
|
606
|
-
fontSizeSmall: string;
|
|
607
|
-
fontSizeMedium: string;
|
|
608
|
-
fontSizeLarge: string;
|
|
609
|
-
opacityDisabled: string;
|
|
610
|
-
colorOpacitySecondary: string;
|
|
611
|
-
colorOpacitySecondaryHover: string;
|
|
612
|
-
colorOpacitySecondaryPressed: string;
|
|
613
|
-
colorOpacitySecondaryFocus: string;
|
|
614
|
-
colorSecondary: string;
|
|
615
|
-
colorSecondaryHover: string;
|
|
616
|
-
colorSecondaryPressed: string;
|
|
617
|
-
waveColorSecondary: string;
|
|
618
|
-
colorTertiary: string;
|
|
619
|
-
colorTertiaryHover: string;
|
|
620
|
-
colorTertiaryPressed: string;
|
|
621
|
-
colorTertiaryDisalbed: string;
|
|
622
|
-
waveColorTertiary: string;
|
|
623
|
-
textColorTextTertiary: string;
|
|
624
|
-
colorQuaternary: string;
|
|
625
|
-
colorQuaternaryHover: string;
|
|
626
|
-
colorQuaternaryPressed: string;
|
|
627
|
-
color: string;
|
|
628
|
-
colorHover: string;
|
|
629
|
-
colorPressed: string;
|
|
630
|
-
colorFocus: string;
|
|
631
|
-
colorDisabled: string;
|
|
632
|
-
textColor: string;
|
|
633
|
-
textTertiary: string;
|
|
634
|
-
textColorTertiary: string;
|
|
635
|
-
textColorHover: string;
|
|
636
|
-
textColorPressed: string;
|
|
637
|
-
textColorFocus: string;
|
|
638
|
-
textColorDisabled: string;
|
|
639
|
-
textColorText: string;
|
|
640
|
-
textColorTextHover: string;
|
|
641
|
-
textColorTextPressed: string;
|
|
642
|
-
textColorTextFocus: string;
|
|
643
|
-
textColorTextDisabled: string;
|
|
644
|
-
textColorGhost: string;
|
|
645
|
-
textColorGhostHover: string;
|
|
646
|
-
textColorGhostPressed: string;
|
|
647
|
-
textColorGhostFocus: string;
|
|
648
|
-
textColorGhostDisabled: string;
|
|
649
|
-
border: string;
|
|
650
|
-
borderHover: string;
|
|
651
|
-
borderPressed: string;
|
|
652
|
-
borderFocus: string;
|
|
653
|
-
borderDisabled: string;
|
|
654
|
-
rippleColor: string;
|
|
655
|
-
colorPrimary: string;
|
|
656
|
-
colorHoverPrimary: string;
|
|
657
|
-
colorPressedPrimary: string;
|
|
658
|
-
colorFocusPrimary: string;
|
|
659
|
-
colorDisabledPrimary: string;
|
|
660
|
-
waveColorPrimary: string;
|
|
661
|
-
textColorPrimary: string;
|
|
662
|
-
textColorHoverPrimary: string;
|
|
663
|
-
textColorPressedPrimary: string;
|
|
664
|
-
textColorFocusPrimary: string;
|
|
665
|
-
textColorDisabledPrimary: string;
|
|
666
|
-
textColorTextPrimary: string;
|
|
667
|
-
textColorTextHoverPrimary: string;
|
|
668
|
-
textColorTextPressedPrimary: string;
|
|
669
|
-
textColorTextFocusPrimary: string;
|
|
670
|
-
textColorTextDisabledPrimary: string;
|
|
671
|
-
textColorGhostPrimary: string;
|
|
672
|
-
textColorGhostHoverPrimary: string;
|
|
673
|
-
textColorGhostPressedPrimary: string;
|
|
674
|
-
textColorGhostFocusPrimary: string;
|
|
675
|
-
textColorGhostDisabledPrimary: string;
|
|
676
|
-
borderPrimary: string;
|
|
677
|
-
borderHoverPrimary: string;
|
|
678
|
-
borderPressedPrimary: string;
|
|
679
|
-
borderFocusPrimary: string;
|
|
680
|
-
borderDisabledPrimary: string;
|
|
681
|
-
rippleColorPrimary: string;
|
|
682
|
-
colorInfo: string;
|
|
683
|
-
colorHoverInfo: string;
|
|
684
|
-
colorPressedInfo: string;
|
|
685
|
-
colorFocusInfo: string;
|
|
686
|
-
colorDisabledInfo: string;
|
|
687
|
-
textColorInfo: string;
|
|
688
|
-
textColorHoverInfo: string;
|
|
689
|
-
textColorPressedInfo: string;
|
|
690
|
-
textColorFocusInfo: string;
|
|
691
|
-
textColorDisabledInfo: string;
|
|
692
|
-
textColorTextInfo: string;
|
|
693
|
-
textColorTextHoverInfo: string;
|
|
694
|
-
textColorTextPressedInfo: string;
|
|
695
|
-
textColorTextFocusInfo: string;
|
|
696
|
-
textColorTextDisabledInfo: string;
|
|
697
|
-
textColorGhostInfo: string;
|
|
698
|
-
textColorGhostHoverInfo: string;
|
|
699
|
-
textColorGhostPressedInfo: string;
|
|
700
|
-
textColorGhostFocusInfo: string;
|
|
701
|
-
textColorGhostDisabledInfo: string;
|
|
702
|
-
borderInfo: string;
|
|
703
|
-
borderHoverInfo: string;
|
|
704
|
-
borderPressedInfo: string;
|
|
705
|
-
borderFocusInfo: string;
|
|
706
|
-
borderDisabledInfo: string;
|
|
707
|
-
rippleColorInfo: string;
|
|
708
|
-
colorSuccess: string;
|
|
709
|
-
colorHoverSuccess: string;
|
|
710
|
-
colorPressedSuccess: string;
|
|
711
|
-
colorFocusSuccess: string;
|
|
712
|
-
colorDisabledSuccess: string;
|
|
713
|
-
textColorSuccess: string;
|
|
714
|
-
textColorHoverSuccess: string;
|
|
715
|
-
textColorPressedSuccess: string;
|
|
716
|
-
textColorFocusSuccess: string;
|
|
717
|
-
textColorDisabledSuccess: string;
|
|
718
|
-
textColorTextSuccess: string;
|
|
719
|
-
textColorTextHoverSuccess: string;
|
|
720
|
-
textColorTextPressedSuccess: string;
|
|
721
|
-
textColorTextFocusSuccess: string;
|
|
722
|
-
textColorTextDisabledSuccess: string;
|
|
723
|
-
textColorGhostSuccess: string;
|
|
724
|
-
textColorGhostHoverSuccess: string;
|
|
725
|
-
textColorGhostPressedSuccess: string;
|
|
726
|
-
textColorGhostFocusSuccess: string;
|
|
727
|
-
textColorGhostDisabledSuccess: string;
|
|
728
|
-
borderSuccess: string;
|
|
729
|
-
borderHoverSuccess: string;
|
|
730
|
-
borderPressedSuccess: string;
|
|
731
|
-
borderFocusSuccess: string;
|
|
732
|
-
borderDisabledSuccess: string;
|
|
733
|
-
rippleColorSuccess: string;
|
|
734
|
-
colorWarning: string;
|
|
735
|
-
colorHoverWarning: string;
|
|
736
|
-
colorPressedWarning: string;
|
|
737
|
-
colorFocusWarning: string;
|
|
738
|
-
colorDisabledWarning: string;
|
|
739
|
-
textColorWarning: string;
|
|
740
|
-
textColorHoverWarning: string;
|
|
741
|
-
textColorPressedWarning: string;
|
|
742
|
-
textColorFocusWarning: string;
|
|
743
|
-
textColorDisabledWarning: string;
|
|
744
|
-
textColorTextWarning: string;
|
|
745
|
-
textColorTextHoverWarning: string;
|
|
746
|
-
textColorTextPressedWarning: string;
|
|
747
|
-
textColorTextFocusWarning: string;
|
|
748
|
-
textColorTextDisabledWarning: string;
|
|
749
|
-
textColorGhostWarning: string;
|
|
750
|
-
textColorGhostHoverWarning: string;
|
|
751
|
-
textColorGhostPressedWarning: string;
|
|
752
|
-
textColorGhostFocusWarning: string;
|
|
753
|
-
textColorGhostDisabledWarning: string;
|
|
754
|
-
borderWarning: string;
|
|
755
|
-
borderHoverWarning: string;
|
|
756
|
-
borderPressedWarning: string;
|
|
757
|
-
borderFocusWarning: string;
|
|
758
|
-
borderDisabledWarning: string;
|
|
759
|
-
rippleColorWarning: string;
|
|
760
|
-
colorError: string;
|
|
761
|
-
colorHoverError: string;
|
|
762
|
-
colorPressedError: string;
|
|
763
|
-
colorFocusError: string;
|
|
764
|
-
colorDisabledError: string;
|
|
765
|
-
textColorError: string;
|
|
766
|
-
textColorHoverError: string;
|
|
767
|
-
textColorPressedError: string;
|
|
768
|
-
textColorFocusError: string;
|
|
769
|
-
textColorDisabledError: string;
|
|
770
|
-
textColorTextError: string;
|
|
771
|
-
textColorTextHoverError: string;
|
|
772
|
-
textColorTextPressedError: string;
|
|
773
|
-
textColorTextFocusError: string;
|
|
774
|
-
textColorTextDisabledError: string;
|
|
775
|
-
textColorGhostError: string;
|
|
776
|
-
textColorGhostHoverError: string;
|
|
777
|
-
textColorGhostPressedError: string;
|
|
778
|
-
textColorGhostFocusError: string;
|
|
779
|
-
textColorGhostDisabledError: string;
|
|
780
|
-
borderError: string;
|
|
781
|
-
borderHoverError: string;
|
|
782
|
-
borderPressedError: string;
|
|
783
|
-
borderFocusError: string;
|
|
784
|
-
borderDisabledError: string;
|
|
785
|
-
rippleColorError: string;
|
|
786
|
-
waveOpacity: string;
|
|
787
|
-
fontWeight: string;
|
|
788
|
-
fontWeightStrong: string;
|
|
789
|
-
paddingTiny: string;
|
|
790
|
-
paddingSmall: string;
|
|
791
|
-
paddingMedium: string;
|
|
792
|
-
paddingLarge: string;
|
|
793
|
-
paddingRoundTiny: string;
|
|
794
|
-
paddingRoundSmall: string;
|
|
795
|
-
paddingRoundMedium: string;
|
|
796
|
-
paddingRoundLarge: string;
|
|
797
|
-
iconMarginTiny: string;
|
|
798
|
-
iconMarginSmall: string;
|
|
799
|
-
iconMarginMedium: string;
|
|
800
|
-
iconMarginLarge: string;
|
|
801
|
-
iconSizeTiny: string;
|
|
802
|
-
iconSizeSmall: string;
|
|
803
|
-
iconSizeMedium: string;
|
|
804
|
-
iconSizeLarge: string;
|
|
805
|
-
rippleDuration: string;
|
|
806
|
-
}, any>;
|
|
807
|
-
Input: import("../../../_mixins").Theme<"Input", {
|
|
808
|
-
paddingTiny: string;
|
|
809
|
-
paddingSmall: string;
|
|
810
|
-
paddingMedium: string;
|
|
811
|
-
paddingLarge: string;
|
|
812
|
-
paddingHuge: string;
|
|
813
|
-
clearSize: string;
|
|
814
|
-
countTextColorDisabled: string;
|
|
815
|
-
countTextColor: string;
|
|
816
|
-
heightTiny: string;
|
|
817
|
-
heightSmall: string;
|
|
818
|
-
heightMedium: string;
|
|
819
|
-
heightLarge: string;
|
|
820
|
-
heightHuge: string;
|
|
821
|
-
fontSizeTiny: string;
|
|
822
|
-
fontSizeSmall: string;
|
|
823
|
-
fontSizeMedium: string;
|
|
824
|
-
fontSizeLarge: string;
|
|
825
|
-
fontSizeHuge: string;
|
|
826
|
-
lineHeight: string;
|
|
827
|
-
lineHeightTextarea: string;
|
|
828
|
-
borderRadius: string;
|
|
829
|
-
iconSize: string;
|
|
830
|
-
groupLabelTextColor: string;
|
|
831
|
-
textColor: string;
|
|
832
|
-
textColorDisabled: string;
|
|
833
|
-
textDecorationColor: string;
|
|
834
|
-
caretColor: string;
|
|
835
|
-
placeholderColor: string;
|
|
836
|
-
placeholderColorDisabled: string;
|
|
837
|
-
color: string;
|
|
838
|
-
colorDisabled: string;
|
|
839
|
-
colorFocus: string;
|
|
840
|
-
groupLabelBorder: string;
|
|
841
|
-
border: string;
|
|
842
|
-
borderHover: string;
|
|
843
|
-
borderDisabled: string;
|
|
844
|
-
borderFocus: string;
|
|
845
|
-
boxShadowFocus: string;
|
|
846
|
-
loadingColor: string;
|
|
847
|
-
loadingColorWarning: string;
|
|
848
|
-
borderWarning: string;
|
|
849
|
-
borderHoverWarning: string;
|
|
850
|
-
colorFocusWarning: string;
|
|
851
|
-
borderFocusWarning: string;
|
|
852
|
-
boxShadowFocusWarning: string;
|
|
853
|
-
caretColorWarning: string;
|
|
854
|
-
loadingColorError: string;
|
|
855
|
-
borderError: string;
|
|
856
|
-
borderHoverError: string;
|
|
857
|
-
colorFocusError: string;
|
|
858
|
-
borderFocusError: string;
|
|
859
|
-
boxShadowFocusError: string;
|
|
860
|
-
caretColorError: string;
|
|
861
|
-
clearColor: string;
|
|
862
|
-
clearColorHover: string;
|
|
863
|
-
clearColorPressed: string;
|
|
864
|
-
iconColor: string;
|
|
865
|
-
iconColorDisabled: string;
|
|
866
|
-
iconColorHover: string;
|
|
867
|
-
iconColorPressed: string;
|
|
868
|
-
suffixTextColor: string;
|
|
869
|
-
selectionColor: string;
|
|
870
|
-
}, any>;
|
|
871
|
-
}>;
|
|
872
|
-
Scrollbar: import("../../../_mixins").Theme<"Scrollbar", {
|
|
873
|
-
color: string;
|
|
874
|
-
colorHover: string;
|
|
875
|
-
}, any>;
|
|
876
|
-
};
|
|
877
|
-
peerOverrides: {
|
|
878
|
-
Input?: {
|
|
879
|
-
peers?: {
|
|
880
|
-
[x: string]: any;
|
|
881
|
-
} | undefined;
|
|
882
|
-
} | undefined;
|
|
883
|
-
Button?: {
|
|
884
|
-
peers?: {
|
|
885
|
-
[x: string]: any;
|
|
886
|
-
} | undefined;
|
|
887
|
-
} | undefined;
|
|
888
|
-
TimePicker?: {
|
|
889
|
-
peers?: {
|
|
890
|
-
Scrollbar?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Scrollbar", {
|
|
891
|
-
color: string;
|
|
892
|
-
colorHover: string;
|
|
893
|
-
}, any>> | undefined;
|
|
894
|
-
Button?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Button", {
|
|
895
|
-
heightTiny: string;
|
|
896
|
-
heightSmall: string;
|
|
897
|
-
heightMedium: string;
|
|
898
|
-
heightLarge: string;
|
|
899
|
-
borderRadiusTiny: string;
|
|
900
|
-
borderRadiusSmall: string;
|
|
901
|
-
borderRadiusMedium: string;
|
|
902
|
-
borderRadiusLarge: string;
|
|
903
|
-
fontSizeTiny: string;
|
|
904
|
-
fontSizeSmall: string;
|
|
905
|
-
fontSizeMedium: string;
|
|
906
|
-
fontSizeLarge: string;
|
|
907
|
-
opacityDisabled: string;
|
|
908
|
-
colorOpacitySecondary: string;
|
|
909
|
-
colorOpacitySecondaryHover: string;
|
|
910
|
-
colorOpacitySecondaryPressed: string;
|
|
911
|
-
colorOpacitySecondaryFocus: string;
|
|
912
|
-
colorSecondary: string;
|
|
913
|
-
colorSecondaryHover: string;
|
|
914
|
-
colorSecondaryPressed: string;
|
|
915
|
-
waveColorSecondary: string;
|
|
916
|
-
colorTertiary: string;
|
|
917
|
-
colorTertiaryHover: string;
|
|
918
|
-
colorTertiaryPressed: string;
|
|
919
|
-
colorTertiaryDisalbed: string;
|
|
920
|
-
waveColorTertiary: string;
|
|
921
|
-
textColorTextTertiary: string;
|
|
922
|
-
colorQuaternary: string;
|
|
923
|
-
colorQuaternaryHover: string;
|
|
924
|
-
colorQuaternaryPressed: string;
|
|
925
|
-
color: string;
|
|
926
|
-
colorHover: string;
|
|
927
|
-
colorPressed: string;
|
|
928
|
-
colorFocus: string;
|
|
929
|
-
colorDisabled: string;
|
|
930
|
-
textColor: string;
|
|
931
|
-
textTertiary: string;
|
|
932
|
-
textColorTertiary: string;
|
|
933
|
-
textColorHover: string;
|
|
934
|
-
textColorPressed: string;
|
|
935
|
-
textColorFocus: string;
|
|
936
|
-
textColorDisabled: string;
|
|
937
|
-
textColorText: string;
|
|
938
|
-
textColorTextHover: string;
|
|
939
|
-
textColorTextPressed: string;
|
|
940
|
-
textColorTextFocus: string;
|
|
941
|
-
textColorTextDisabled: string;
|
|
942
|
-
textColorGhost: string;
|
|
943
|
-
textColorGhostHover: string;
|
|
944
|
-
textColorGhostPressed: string;
|
|
945
|
-
textColorGhostFocus: string;
|
|
946
|
-
textColorGhostDisabled: string;
|
|
947
|
-
border: string;
|
|
948
|
-
borderHover: string;
|
|
949
|
-
borderPressed: string;
|
|
950
|
-
borderFocus: string;
|
|
951
|
-
borderDisabled: string;
|
|
952
|
-
rippleColor: string;
|
|
953
|
-
colorPrimary: string;
|
|
954
|
-
colorHoverPrimary: string;
|
|
955
|
-
colorPressedPrimary: string;
|
|
956
|
-
colorFocusPrimary: string;
|
|
957
|
-
colorDisabledPrimary: string;
|
|
958
|
-
waveColorPrimary: string;
|
|
959
|
-
textColorPrimary: string;
|
|
960
|
-
textColorHoverPrimary: string;
|
|
961
|
-
textColorPressedPrimary: string;
|
|
962
|
-
textColorFocusPrimary: string;
|
|
963
|
-
textColorDisabledPrimary: string;
|
|
964
|
-
textColorTextPrimary: string;
|
|
965
|
-
textColorTextHoverPrimary: string;
|
|
966
|
-
textColorTextPressedPrimary: string;
|
|
967
|
-
textColorTextFocusPrimary: string;
|
|
968
|
-
textColorTextDisabledPrimary: string;
|
|
969
|
-
textColorGhostPrimary: string;
|
|
970
|
-
textColorGhostHoverPrimary: string;
|
|
971
|
-
textColorGhostPressedPrimary: string;
|
|
972
|
-
textColorGhostFocusPrimary: string;
|
|
973
|
-
textColorGhostDisabledPrimary: string;
|
|
974
|
-
borderPrimary: string;
|
|
975
|
-
borderHoverPrimary: string;
|
|
976
|
-
borderPressedPrimary: string;
|
|
977
|
-
borderFocusPrimary: string;
|
|
978
|
-
borderDisabledPrimary: string;
|
|
979
|
-
rippleColorPrimary: string;
|
|
980
|
-
colorInfo: string;
|
|
981
|
-
colorHoverInfo: string;
|
|
982
|
-
colorPressedInfo: string;
|
|
983
|
-
colorFocusInfo: string;
|
|
984
|
-
colorDisabledInfo: string;
|
|
985
|
-
textColorInfo: string;
|
|
986
|
-
textColorHoverInfo: string;
|
|
987
|
-
textColorPressedInfo: string;
|
|
988
|
-
textColorFocusInfo: string;
|
|
989
|
-
textColorDisabledInfo: string;
|
|
990
|
-
textColorTextInfo: string;
|
|
991
|
-
textColorTextHoverInfo: string;
|
|
992
|
-
textColorTextPressedInfo: string;
|
|
993
|
-
textColorTextFocusInfo: string;
|
|
994
|
-
textColorTextDisabledInfo: string;
|
|
995
|
-
textColorGhostInfo: string;
|
|
996
|
-
textColorGhostHoverInfo: string;
|
|
997
|
-
textColorGhostPressedInfo: string;
|
|
998
|
-
textColorGhostFocusInfo: string;
|
|
999
|
-
textColorGhostDisabledInfo: string;
|
|
1000
|
-
borderInfo: string;
|
|
1001
|
-
borderHoverInfo: string;
|
|
1002
|
-
borderPressedInfo: string;
|
|
1003
|
-
borderFocusInfo: string;
|
|
1004
|
-
borderDisabledInfo: string;
|
|
1005
|
-
rippleColorInfo: string;
|
|
1006
|
-
colorSuccess: string;
|
|
1007
|
-
colorHoverSuccess: string;
|
|
1008
|
-
colorPressedSuccess: string;
|
|
1009
|
-
colorFocusSuccess: string;
|
|
1010
|
-
colorDisabledSuccess: string;
|
|
1011
|
-
textColorSuccess: string;
|
|
1012
|
-
textColorHoverSuccess: string;
|
|
1013
|
-
textColorPressedSuccess: string;
|
|
1014
|
-
textColorFocusSuccess: string;
|
|
1015
|
-
textColorDisabledSuccess: string;
|
|
1016
|
-
textColorTextSuccess: string;
|
|
1017
|
-
textColorTextHoverSuccess: string;
|
|
1018
|
-
textColorTextPressedSuccess: string;
|
|
1019
|
-
textColorTextFocusSuccess: string;
|
|
1020
|
-
textColorTextDisabledSuccess: string;
|
|
1021
|
-
textColorGhostSuccess: string;
|
|
1022
|
-
textColorGhostHoverSuccess: string;
|
|
1023
|
-
textColorGhostPressedSuccess: string;
|
|
1024
|
-
textColorGhostFocusSuccess: string;
|
|
1025
|
-
textColorGhostDisabledSuccess: string;
|
|
1026
|
-
borderSuccess: string;
|
|
1027
|
-
borderHoverSuccess: string;
|
|
1028
|
-
borderPressedSuccess: string;
|
|
1029
|
-
borderFocusSuccess: string;
|
|
1030
|
-
borderDisabledSuccess: string;
|
|
1031
|
-
rippleColorSuccess: string;
|
|
1032
|
-
colorWarning: string;
|
|
1033
|
-
colorHoverWarning: string;
|
|
1034
|
-
colorPressedWarning: string;
|
|
1035
|
-
colorFocusWarning: string;
|
|
1036
|
-
colorDisabledWarning: string;
|
|
1037
|
-
textColorWarning: string;
|
|
1038
|
-
textColorHoverWarning: string;
|
|
1039
|
-
textColorPressedWarning: string;
|
|
1040
|
-
textColorFocusWarning: string;
|
|
1041
|
-
textColorDisabledWarning: string;
|
|
1042
|
-
textColorTextWarning: string;
|
|
1043
|
-
textColorTextHoverWarning: string;
|
|
1044
|
-
textColorTextPressedWarning: string;
|
|
1045
|
-
textColorTextFocusWarning: string;
|
|
1046
|
-
textColorTextDisabledWarning: string;
|
|
1047
|
-
textColorGhostWarning: string;
|
|
1048
|
-
textColorGhostHoverWarning: string;
|
|
1049
|
-
textColorGhostPressedWarning: string;
|
|
1050
|
-
textColorGhostFocusWarning: string;
|
|
1051
|
-
textColorGhostDisabledWarning: string;
|
|
1052
|
-
borderWarning: string;
|
|
1053
|
-
borderHoverWarning: string;
|
|
1054
|
-
borderPressedWarning: string;
|
|
1055
|
-
borderFocusWarning: string;
|
|
1056
|
-
borderDisabledWarning: string;
|
|
1057
|
-
rippleColorWarning: string;
|
|
1058
|
-
colorError: string;
|
|
1059
|
-
colorHoverError: string;
|
|
1060
|
-
colorPressedError: string;
|
|
1061
|
-
colorFocusError: string;
|
|
1062
|
-
colorDisabledError: string;
|
|
1063
|
-
textColorError: string;
|
|
1064
|
-
textColorHoverError: string;
|
|
1065
|
-
textColorPressedError: string;
|
|
1066
|
-
textColorFocusError: string;
|
|
1067
|
-
textColorDisabledError: string;
|
|
1068
|
-
textColorTextError: string;
|
|
1069
|
-
textColorTextHoverError: string;
|
|
1070
|
-
textColorTextPressedError: string;
|
|
1071
|
-
textColorTextFocusError: string;
|
|
1072
|
-
textColorTextDisabledError: string;
|
|
1073
|
-
textColorGhostError: string;
|
|
1074
|
-
textColorGhostHoverError: string;
|
|
1075
|
-
textColorGhostPressedError: string;
|
|
1076
|
-
textColorGhostFocusError: string;
|
|
1077
|
-
textColorGhostDisabledError: string;
|
|
1078
|
-
borderError: string;
|
|
1079
|
-
borderHoverError: string;
|
|
1080
|
-
borderPressedError: string;
|
|
1081
|
-
borderFocusError: string;
|
|
1082
|
-
borderDisabledError: string;
|
|
1083
|
-
rippleColorError: string;
|
|
1084
|
-
waveOpacity: string;
|
|
1085
|
-
fontWeight: string;
|
|
1086
|
-
fontWeightStrong: string;
|
|
1087
|
-
paddingTiny: string;
|
|
1088
|
-
paddingSmall: string;
|
|
1089
|
-
paddingMedium: string;
|
|
1090
|
-
paddingLarge: string;
|
|
1091
|
-
paddingRoundTiny: string;
|
|
1092
|
-
paddingRoundSmall: string;
|
|
1093
|
-
paddingRoundMedium: string;
|
|
1094
|
-
paddingRoundLarge: string;
|
|
1095
|
-
iconMarginTiny: string;
|
|
1096
|
-
iconMarginSmall: string;
|
|
1097
|
-
iconMarginMedium: string;
|
|
1098
|
-
iconMarginLarge: string;
|
|
1099
|
-
iconSizeTiny: string;
|
|
1100
|
-
iconSizeSmall: string;
|
|
1101
|
-
iconSizeMedium: string;
|
|
1102
|
-
iconSizeLarge: string;
|
|
1103
|
-
rippleDuration: string;
|
|
1104
|
-
}, any>> | undefined;
|
|
1105
|
-
Input?: import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"Input", {
|
|
1106
|
-
paddingTiny: string;
|
|
1107
|
-
paddingSmall: string;
|
|
1108
|
-
paddingMedium: string;
|
|
1109
|
-
paddingLarge: string;
|
|
1110
|
-
paddingHuge: string;
|
|
1111
|
-
clearSize: string;
|
|
1112
|
-
countTextColorDisabled: string;
|
|
1113
|
-
countTextColor: string;
|
|
1114
|
-
heightTiny: string;
|
|
1115
|
-
heightSmall: string;
|
|
1116
|
-
heightMedium: string;
|
|
1117
|
-
heightLarge: string;
|
|
1118
|
-
heightHuge: string;
|
|
1119
|
-
fontSizeTiny: string;
|
|
1120
|
-
fontSizeSmall: string;
|
|
1121
|
-
fontSizeMedium: string;
|
|
1122
|
-
fontSizeLarge: string;
|
|
1123
|
-
fontSizeHuge: string;
|
|
1124
|
-
lineHeight: string;
|
|
1125
|
-
lineHeightTextarea: string;
|
|
1126
|
-
borderRadius: string;
|
|
1127
|
-
iconSize: string;
|
|
1128
|
-
groupLabelTextColor: string;
|
|
1129
|
-
textColor: string;
|
|
1130
|
-
textColorDisabled: string;
|
|
1131
|
-
textDecorationColor: string;
|
|
1132
|
-
caretColor: string;
|
|
1133
|
-
placeholderColor: string;
|
|
1134
|
-
placeholderColorDisabled: string;
|
|
1135
|
-
color: string;
|
|
1136
|
-
colorDisabled: string;
|
|
1137
|
-
colorFocus: string;
|
|
1138
|
-
groupLabelBorder: string;
|
|
1139
|
-
border: string;
|
|
1140
|
-
borderHover: string;
|
|
1141
|
-
borderDisabled: string;
|
|
1142
|
-
borderFocus: string;
|
|
1143
|
-
boxShadowFocus: string;
|
|
1144
|
-
loadingColor: string;
|
|
1145
|
-
loadingColorWarning: string;
|
|
1146
|
-
borderWarning: string;
|
|
1147
|
-
borderHoverWarning: string;
|
|
1148
|
-
colorFocusWarning: string;
|
|
1149
|
-
borderFocusWarning: string;
|
|
1150
|
-
boxShadowFocusWarning: string;
|
|
1151
|
-
caretColorWarning: string;
|
|
1152
|
-
loadingColorError: string;
|
|
1153
|
-
borderError: string;
|
|
1154
|
-
borderHoverError: string;
|
|
1155
|
-
colorFocusError: string;
|
|
1156
|
-
borderFocusError: string;
|
|
1157
|
-
boxShadowFocusError: string;
|
|
1158
|
-
caretColorError: string;
|
|
1159
|
-
clearColor: string;
|
|
1160
|
-
clearColorHover: string;
|
|
1161
|
-
clearColorPressed: string;
|
|
1162
|
-
iconColor: string;
|
|
1163
|
-
iconColorDisabled: string;
|
|
1164
|
-
iconColorHover: string;
|
|
1165
|
-
iconColorPressed: string;
|
|
1166
|
-
suffixTextColor: string;
|
|
1167
|
-
selectionColor: string;
|
|
1168
|
-
}, any>> | undefined;
|
|
1169
|
-
} | undefined;
|
|
1170
|
-
} | undefined;
|
|
1171
|
-
Scrollbar?: {
|
|
1172
|
-
peers?: {
|
|
1173
|
-
[x: string]: any;
|
|
1174
|
-
} | undefined;
|
|
1175
|
-
} | undefined;
|
|
1176
|
-
};
|
|
1177
|
-
}>;
|
|
1178
|
-
mergedClsPrefix: import("vue").Ref<string>;
|
|
1179
|
-
dateFnsOptions: import("vue").ComputedRef<{
|
|
1180
|
-
locale: Locale;
|
|
1181
|
-
}>;
|
|
1182
|
-
timePickerProps: import("vue").Ref<import("../../..").TimePickerProps | [import("../../..").TimePickerProps, import("../../..").TimePickerProps] | undefined>;
|
|
1183
|
-
selfRef: import("vue").Ref<HTMLElement | null>;
|
|
1184
|
-
locale: import("vue").Ref<{
|
|
1185
|
-
yearFormat: string;
|
|
1186
|
-
monthFormat: string;
|
|
1187
|
-
dayFormat: string;
|
|
1188
|
-
yearTypeFormat: string;
|
|
1189
|
-
monthTypeFormat: string;
|
|
1190
|
-
dateFormat: string;
|
|
1191
|
-
dateTimeFormat: string;
|
|
1192
|
-
quarterFormat: string;
|
|
1193
|
-
clear: string;
|
|
1194
|
-
now: string;
|
|
1195
|
-
confirm: string;
|
|
1196
|
-
selectTime: string;
|
|
1197
|
-
selectDate: string;
|
|
1198
|
-
datePlaceholder: string;
|
|
1199
|
-
datetimePlaceholder: string;
|
|
1200
|
-
monthPlaceholder: string;
|
|
1201
|
-
yearPlaceholder: string;
|
|
1202
|
-
quarterPlaceholder: string;
|
|
1203
|
-
startDatePlaceholder: string;
|
|
1204
|
-
endDatePlaceholder: string;
|
|
1205
|
-
startDatetimePlaceholder: string;
|
|
1206
|
-
endDatetimePlaceholder: string;
|
|
1207
|
-
startMonthPlaceholder: string;
|
|
1208
|
-
endMonthPlaceholder: string;
|
|
1209
|
-
monthBeforeYear: boolean;
|
|
1210
|
-
firstDayOfWeek: 0 | 2 | 1 | 3 | 4 | 6 | 5;
|
|
1211
|
-
today: string;
|
|
1212
|
-
}>;
|
|
1213
|
-
doConfirm: () => void;
|
|
1214
|
-
doClose: (disableUpdateOnClose?: boolean) => void;
|
|
1215
|
-
doUpdateValue: (value: import("../interface").Value | null, doUpdate: boolean) => void;
|
|
1216
|
-
doTabOut: () => void;
|
|
1217
|
-
handleClearClick: () => void;
|
|
1218
|
-
disableTransitionOneTick: () => void;
|
|
1219
|
-
handlePanelKeyDown: (e: KeyboardEvent) => void;
|
|
1220
|
-
handlePanelFocus: (e: FocusEvent) => void;
|
|
1221
|
-
cachePendingValue: () => void;
|
|
1222
|
-
clearPendingValue: () => void;
|
|
1223
|
-
restorePendingValue: () => void;
|
|
1224
|
-
getShortcutValue: (shortcut: number | [number, number] | (() => number) | readonly [number, number] | (() => [number, number] | readonly [number, number])) => number | [number, number] | readonly [number, number];
|
|
1225
|
-
handleShortcutMouseleave: () => void;
|
|
1226
|
-
showMonthYearPanel: import("vue").Ref<boolean>;
|
|
1227
|
-
handleOpenQuickSelectMonthPanel: () => void;
|
|
1228
|
-
startDatesElRef: import("vue").Ref<HTMLElement | null>;
|
|
1229
|
-
endDatesElRef: import("vue").Ref<HTMLElement | null>;
|
|
1230
|
-
handleDateClick: (dateItem: import("../utils").DateItem) => void;
|
|
1231
|
-
handleColItemClick: (dateItem: MonthItem | YearItem | QuarterItem, clickType: "start" | "end") => void;
|
|
1232
|
-
handleDateMouseEnter: (dateItem: import("../utils").DateItem) => void;
|
|
1233
|
-
handleConfirmClick: () => void;
|
|
1234
|
-
startCalendarPrevYear: () => void;
|
|
1235
|
-
startCalendarPrevMonth: () => void;
|
|
1236
|
-
startCalendarNextYear: () => void;
|
|
1237
|
-
startCalendarNextMonth: () => void;
|
|
1238
|
-
endCalendarPrevYear: () => void;
|
|
1239
|
-
endCalendarPrevMonth: () => void;
|
|
1240
|
-
endCalendarNextMonth: () => void;
|
|
1241
|
-
endCalendarNextYear: () => void;
|
|
1242
|
-
mergedIsDateDisabled: (ts: number) => boolean;
|
|
1243
|
-
changeStartEndTime: (startTime: number, endTime: number, source: "done" | "shortcutPreview" | "wipPreview") => void;
|
|
1244
|
-
ranges: import("vue").Ref<Record<string, [number, number]> | undefined>;
|
|
1245
|
-
startCalendarMonth: import("vue").ComputedRef<string>;
|
|
1246
|
-
startCalendarYear: import("vue").ComputedRef<string>;
|
|
1247
|
-
endCalendarMonth: import("vue").ComputedRef<string>;
|
|
1248
|
-
endCalendarYear: import("vue").ComputedRef<string>;
|
|
1249
|
-
weekdays: import("vue").ComputedRef<string[]>;
|
|
1250
|
-
startDateArray: import("vue").ComputedRef<import("../utils").DateItem[]>;
|
|
1251
|
-
endDateArray: import("vue").ComputedRef<import("../utils").DateItem[]>;
|
|
1252
|
-
startYearArray: import("vue").ComputedRef<YearItem[]>;
|
|
1253
|
-
startMonthArray: import("vue").ComputedRef<MonthItem[]>;
|
|
1254
|
-
startQuarterArray: import("vue").ComputedRef<QuarterItem[]>;
|
|
1255
|
-
endYearArray: import("vue").ComputedRef<YearItem[]>;
|
|
1256
|
-
endMonthArray: import("vue").ComputedRef<MonthItem[]>;
|
|
1257
|
-
endQuarterArray: import("vue").ComputedRef<QuarterItem[]>;
|
|
1258
|
-
isSelecting: import("vue").Ref<boolean>;
|
|
1259
|
-
handleRangeShortcutMouseenter: (shortcut: number | [number, number] | (() => number) | readonly [number, number] | (() => [number, number] | readonly [number, number])) => void;
|
|
1260
|
-
handleRangeShortcutClick: (shortcut: number | [number, number] | (() => number) | readonly [number, number] | (() => [number, number] | readonly [number, number])) => void;
|
|
1261
|
-
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
|
|
1262
|
-
type: {
|
|
1263
|
-
type: PropType<"monthrange" | "quarterrange" | "yearrange">;
|
|
1264
|
-
required: true;
|
|
1265
|
-
};
|
|
1266
|
-
defaultCalendarStartTime: NumberConstructor;
|
|
1267
|
-
defaultCalendarEndTime: NumberConstructor;
|
|
1268
|
-
bindCalendarMonths: BooleanConstructor;
|
|
1269
|
-
actions: {
|
|
1270
|
-
readonly type: ArrayConstructor;
|
|
1271
|
-
readonly default: () => string[];
|
|
1272
|
-
};
|
|
1273
|
-
active: BooleanConstructor;
|
|
1274
|
-
dateFormat: StringConstructor;
|
|
1275
|
-
timeFormat: {
|
|
1276
|
-
readonly type: StringConstructor;
|
|
1277
|
-
readonly value: "HH:mm:ss";
|
|
1278
|
-
};
|
|
1279
|
-
value: {
|
|
1280
|
-
readonly type: PropType<import("../interface").Value | null>;
|
|
1281
|
-
readonly default: null;
|
|
1282
|
-
};
|
|
1283
|
-
shortcuts: PropType<import("../interface").Shortcuts>;
|
|
1284
|
-
defaultTime: PropType<import("../interface").DefaultTime>;
|
|
1285
|
-
onClear: FunctionConstructor;
|
|
1286
|
-
onConfirm: PropType<(value: import("../interface").Value | null) => void>;
|
|
1287
|
-
onClose: PropType<import("../interface").OnClose>;
|
|
1288
|
-
onTabOut: FunctionConstructor;
|
|
1289
|
-
onUpdateValue: {
|
|
1290
|
-
readonly type: PropType<import("../interface").OnPanelUpdateValue>;
|
|
1291
|
-
readonly required: true;
|
|
1292
|
-
};
|
|
1293
|
-
themeClass: StringConstructor;
|
|
1294
|
-
onRender: PropType<(() => void) | undefined>;
|
|
1295
|
-
panel: BooleanConstructor;
|
|
1296
|
-
}>>, {
|
|
1297
|
-
value: import("../interface").Value | null;
|
|
1298
|
-
active: boolean;
|
|
1299
|
-
actions: unknown[];
|
|
1300
|
-
panel: boolean;
|
|
1301
|
-
bindCalendarMonths: boolean;
|
|
1302
|
-
}, {}>;
|
|
1303
|
-
export default _default;
|