@uzum-tech/ui 1.12.21 → 1.13.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.
Files changed (95) hide show
  1. package/dist/index.js +2789 -510
  2. package/dist/index.prod.js +4 -4
  3. package/es/_styles/common/dark.js +1 -1
  4. package/es/_styles/common/light.d.ts +1 -0
  5. package/es/_styles/common/light.js +1 -1
  6. package/es/chat/src/ChatMessages.js +6 -1
  7. package/es/chat/src/styles/index.cssr.js +5 -1
  8. package/es/components.d.ts +1 -0
  9. package/es/components.js +1 -0
  10. package/es/config-provider/src/internal-interface.d.ts +3 -0
  11. package/es/date-picker-v2/index.d.ts +5 -0
  12. package/es/date-picker-v2/index.js +2 -0
  13. package/es/date-picker-v2/src/DatePickerV2.d.ts +4765 -0
  14. package/es/date-picker-v2/src/DatePickerV2.js +750 -0
  15. package/es/date-picker-v2/src/composables/useCalendarScroll.d.ts +1133 -0
  16. package/es/date-picker-v2/src/composables/useCalendarScroll.js +61 -0
  17. package/es/date-picker-v2/src/config.d.ts +14 -0
  18. package/es/date-picker-v2/src/config.js +34 -0
  19. package/es/date-picker-v2/src/interface.d.ts +42 -0
  20. package/es/date-picker-v2/src/interface.js +1 -0
  21. package/es/date-picker-v2/src/panel/CalendarPanel.d.ts +1222 -0
  22. package/es/date-picker-v2/src/panel/CalendarPanel.js +186 -0
  23. package/es/date-picker-v2/src/panel/CalendarRangePanel.d.ts +1246 -0
  24. package/es/date-picker-v2/src/panel/CalendarRangePanel.js +205 -0
  25. package/es/date-picker-v2/src/styles/index.cssr.d.ts +2 -0
  26. package/es/date-picker-v2/src/styles/index.cssr.js +190 -0
  27. package/es/date-picker-v2/src/utils.d.ts +12 -0
  28. package/es/date-picker-v2/src/utils.js +92 -0
  29. package/es/date-picker-v2/styles/dark.d.ts +447 -0
  30. package/es/date-picker-v2/styles/dark.js +19 -0
  31. package/es/date-picker-v2/styles/index.d.ts +3 -0
  32. package/es/date-picker-v2/styles/index.js +2 -0
  33. package/es/date-picker-v2/styles/light.d.ts +477 -0
  34. package/es/date-picker-v2/styles/light.js +56 -0
  35. package/es/dialog/src/DialogProvider.d.ts +2 -0
  36. package/es/header/src/Header.js +4 -1
  37. package/es/header/src/HeaderSearchDesktop.d.ts +12 -0
  38. package/es/header/src/HeaderSearchDesktop.js +21 -4
  39. package/es/header/src/HeaderSearchMobile.d.ts +12 -0
  40. package/es/header/src/HeaderSearchMobile.js +8 -2
  41. package/es/header/src/mobile/HeaderMobile.js +18 -3
  42. package/es/locales/common/enUS.js +1 -1
  43. package/es/theme-editor/src/ThemeEditor.d.ts +1 -0
  44. package/es/themes/dark.js +2 -0
  45. package/es/themes/light.js +2 -0
  46. package/es/version.d.ts +1 -1
  47. package/es/version.js +1 -1
  48. package/lib/_styles/common/dark.js +1 -1
  49. package/lib/_styles/common/light.d.ts +1 -0
  50. package/lib/_styles/common/light.js +1 -1
  51. package/lib/chat/src/ChatMessages.js +6 -1
  52. package/lib/chat/src/styles/index.cssr.js +5 -1
  53. package/lib/components.d.ts +1 -0
  54. package/lib/components.js +1 -0
  55. package/lib/config-provider/src/internal-interface.d.ts +3 -0
  56. package/lib/date-picker-v2/index.d.ts +5 -0
  57. package/lib/date-picker-v2/index.js +11 -0
  58. package/lib/date-picker-v2/src/DatePickerV2.d.ts +4765 -0
  59. package/lib/date-picker-v2/src/DatePickerV2.js +756 -0
  60. package/lib/date-picker-v2/src/composables/useCalendarScroll.d.ts +1133 -0
  61. package/lib/date-picker-v2/src/composables/useCalendarScroll.js +64 -0
  62. package/lib/date-picker-v2/src/config.d.ts +14 -0
  63. package/lib/date-picker-v2/src/config.js +37 -0
  64. package/lib/date-picker-v2/src/interface.d.ts +42 -0
  65. package/lib/date-picker-v2/src/interface.js +4 -0
  66. package/lib/date-picker-v2/src/panel/CalendarPanel.d.ts +1222 -0
  67. package/lib/date-picker-v2/src/panel/CalendarPanel.js +188 -0
  68. package/lib/date-picker-v2/src/panel/CalendarRangePanel.d.ts +1246 -0
  69. package/lib/date-picker-v2/src/panel/CalendarRangePanel.js +207 -0
  70. package/lib/date-picker-v2/src/styles/index.cssr.d.ts +2 -0
  71. package/lib/date-picker-v2/src/styles/index.cssr.js +195 -0
  72. package/lib/date-picker-v2/src/utils.d.ts +12 -0
  73. package/lib/date-picker-v2/src/utils.js +101 -0
  74. package/lib/date-picker-v2/styles/dark.d.ts +447 -0
  75. package/lib/date-picker-v2/styles/dark.js +21 -0
  76. package/lib/date-picker-v2/styles/index.d.ts +3 -0
  77. package/lib/date-picker-v2/styles/index.js +10 -0
  78. package/lib/date-picker-v2/styles/light.d.ts +477 -0
  79. package/lib/date-picker-v2/styles/light.js +60 -0
  80. package/lib/dialog/src/DialogProvider.d.ts +2 -0
  81. package/lib/header/src/Header.js +4 -1
  82. package/lib/header/src/HeaderSearchDesktop.d.ts +12 -0
  83. package/lib/header/src/HeaderSearchDesktop.js +20 -3
  84. package/lib/header/src/HeaderSearchMobile.d.ts +12 -0
  85. package/lib/header/src/HeaderSearchMobile.js +7 -1
  86. package/lib/header/src/mobile/HeaderMobile.js +18 -3
  87. package/lib/locales/common/enUS.js +1 -1
  88. package/lib/theme-editor/src/ThemeEditor.d.ts +1 -0
  89. package/lib/themes/dark.js +2 -0
  90. package/lib/themes/light.js +2 -0
  91. package/lib/version.d.ts +1 -1
  92. package/lib/version.js +1 -1
  93. package/package.json +1 -1
  94. package/volar.d.ts +1 -0
  95. package/web-types.json +161 -1
@@ -0,0 +1,4765 @@
1
+ import { type PropType } from 'vue';
2
+ import { type FollowerPlacement } from 'vueuc';
3
+ import type { FormValidationStatus } from '../../form/src/interface';
4
+ import type { InputSize } from '../../input';
5
+ import type { MaybeArray, ExtractPublicPropTypes } from '../../_utils';
6
+ import type { Value, RangeValue, OnUpdateValue, OnUpdateRangeValue, IsDateDisabled, TriggerPreset } from './interface';
7
+ type DatePickerV2Type = 'date' | 'daterange';
8
+ export declare const datePickerV2Props: {
9
+ readonly to: {
10
+ type: PropType<HTMLElement | string | boolean>;
11
+ default: undefined;
12
+ };
13
+ readonly type: {
14
+ readonly type: PropType<DatePickerV2Type>;
15
+ readonly default: "date";
16
+ };
17
+ readonly bordered: {
18
+ readonly type: PropType<boolean | undefined>;
19
+ readonly default: undefined;
20
+ };
21
+ readonly round: BooleanConstructor;
22
+ readonly clearable: BooleanConstructor;
23
+ readonly defaultValue: PropType<Value | RangeValue>;
24
+ readonly disabled: {
25
+ readonly type: PropType<boolean | undefined>;
26
+ readonly default: undefined;
27
+ };
28
+ readonly placement: {
29
+ readonly type: PropType<FollowerPlacement>;
30
+ readonly default: "bottom-start";
31
+ };
32
+ readonly value: PropType<Value | RangeValue>;
33
+ readonly size: PropType<InputSize>;
34
+ readonly placeholder: StringConstructor;
35
+ readonly startPlaceholder: StringConstructor;
36
+ readonly endPlaceholder: StringConstructor;
37
+ readonly separator: StringConstructor;
38
+ readonly format: {
39
+ readonly type: StringConstructor;
40
+ readonly default: "DD.MM.YYYY";
41
+ };
42
+ readonly triggerPreset: {
43
+ readonly type: PropType<TriggerPreset>;
44
+ readonly default: "input";
45
+ };
46
+ readonly isDateDisabled: PropType<IsDateDisabled>;
47
+ readonly show: {
48
+ readonly type: PropType<boolean | undefined>;
49
+ readonly default: undefined;
50
+ };
51
+ readonly status: PropType<FormValidationStatus>;
52
+ readonly inputReadonly: BooleanConstructor;
53
+ readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
54
+ readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
55
+ readonly 'onUpdate:value': PropType<MaybeArray<OnUpdateValue | OnUpdateRangeValue>>;
56
+ readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue | OnUpdateRangeValue>>;
57
+ readonly onFocus: PropType<(e: FocusEvent) => void>;
58
+ readonly onBlur: PropType<(e: FocusEvent) => void>;
59
+ readonly theme: PropType<import("../../_mixins").Theme<"DatePickerV2", {
60
+ panelColor: string;
61
+ panelBoxShadow: string;
62
+ panelBorderRadius: string;
63
+ panelTextColor: string;
64
+ dividerColor: string;
65
+ itemTextColor: string;
66
+ itemTextColorOtherMonth: string;
67
+ itemTextColorDisabled: string;
68
+ itemColorHover: string;
69
+ itemColorActive: string;
70
+ itemColorIncluded: string;
71
+ itemTextColorActive: string;
72
+ itemBorderRadius: string;
73
+ iconColor: string;
74
+ iconColorDisabled: string;
75
+ weekdayTextColor: string;
76
+ weekendTextColor: string;
77
+ monthItemHeight: string;
78
+ monthItemColorHover: string;
79
+ monthItemColorActive: string;
80
+ monthItemTextColorActive: string;
81
+ yearTriggerColor: string;
82
+ yearTriggerColorHover: string;
83
+ yearTriggerTextColor: string;
84
+ currentDateIndicatorColor: string;
85
+ }, {
86
+ Button: import("../../_mixins").Theme<"Button", {
87
+ heightTiny: string;
88
+ heightSmall: string;
89
+ heightMedium: string;
90
+ heightLarge: string;
91
+ borderRadiusTiny: string;
92
+ borderRadiusSmall: string;
93
+ borderRadiusMedium: string;
94
+ borderRadiusLarge: string;
95
+ fontSizeTiny: string;
96
+ fontSizeSmall: string;
97
+ fontSizeMedium: string;
98
+ fontSizeLarge: string;
99
+ opacityDisabled: string;
100
+ colorOpacitySecondary: string;
101
+ colorOpacitySecondaryHover: string;
102
+ colorOpacitySecondaryPressed: string;
103
+ colorOpacitySecondaryFocus: string;
104
+ colorSecondary: string;
105
+ colorSecondaryHover: string;
106
+ colorSecondaryPressed: string;
107
+ colorSecondaryFocus: string;
108
+ colorSecondaryDisabled: string;
109
+ textColorSecondaryDisabled: string;
110
+ waveColorSecondary: string;
111
+ colorTertiary: string;
112
+ colorTertiaryHover: string;
113
+ colorTertiaryPressed: string;
114
+ colorTertiaryFocus: string;
115
+ colorTertiaryDisalbed: string;
116
+ waveColorTertiary: string;
117
+ textColorTextTertiary: string;
118
+ rippleColorTertiary: string;
119
+ colorQuaternary: string;
120
+ colorQuaternaryHover: string;
121
+ colorQuaternaryPressed: string;
122
+ colorQuaternaryFocus: string;
123
+ rippleColorQuaternary: string;
124
+ waveColorQuaternary: string;
125
+ color: string;
126
+ colorHover: string;
127
+ colorPressed: string;
128
+ colorFocus: string;
129
+ colorDisabled: string;
130
+ textColor: string;
131
+ textTertiary: string;
132
+ textColorTertiary: string;
133
+ textColorHover: string;
134
+ textColorPressed: string;
135
+ textColorFocus: string;
136
+ textColorDisabled: string;
137
+ textColorText: string;
138
+ textColorTextHover: string;
139
+ textColorTextPressed: string;
140
+ textColorTextFocus: string;
141
+ textColorTextDisabled: string;
142
+ textColorGhost: string;
143
+ textColorGhostHover: string;
144
+ textColorGhostPressed: string;
145
+ textColorGhostFocus: string;
146
+ textColorGhostDisabled: string;
147
+ border: string;
148
+ borderHover: string;
149
+ borderPressed: string;
150
+ borderFocus: string;
151
+ borderDisabled: string;
152
+ rippleColor: string;
153
+ colorPrimary: string;
154
+ colorHoverPrimary: string;
155
+ colorPressedPrimary: string;
156
+ colorFocusPrimary: string;
157
+ colorDisabledPrimary: string;
158
+ waveColorPrimary: string;
159
+ textColorPrimary: string;
160
+ textColorHoverPrimary: string;
161
+ textColorPressedPrimary: string;
162
+ textColorFocusPrimary: string;
163
+ textColorDisabledPrimary: string;
164
+ textColorTextPrimary: string;
165
+ textColorTextHoverPrimary: string;
166
+ textColorTextPressedPrimary: string;
167
+ textColorTextFocusPrimary: string;
168
+ textColorTextDisabledPrimary: string;
169
+ textColorGhostPrimary: string;
170
+ textColorGhostHoverPrimary: string;
171
+ textColorGhostPressedPrimary: string;
172
+ textColorGhostFocusPrimary: string;
173
+ textColorGhostDisabledPrimary: string;
174
+ borderPrimary: string;
175
+ borderHoverPrimary: string;
176
+ borderPressedPrimary: string;
177
+ borderFocusPrimary: string;
178
+ borderDisabledPrimary: string;
179
+ rippleColorPrimary: string;
180
+ colorInfo: string;
181
+ colorHoverInfo: string;
182
+ colorPressedInfo: string;
183
+ colorFocusInfo: string;
184
+ colorDisabledInfo: string;
185
+ textColorInfo: string;
186
+ textColorHoverInfo: string;
187
+ textColorPressedInfo: string;
188
+ textColorFocusInfo: string;
189
+ textColorDisabledInfo: string;
190
+ textColorTextInfo: string;
191
+ textColorTextHoverInfo: string;
192
+ textColorTextPressedInfo: string;
193
+ textColorTextFocusInfo: string;
194
+ textColorTextDisabledInfo: string;
195
+ textColorGhostInfo: string;
196
+ textColorGhostHoverInfo: string;
197
+ textColorGhostPressedInfo: string;
198
+ textColorGhostFocusInfo: string;
199
+ textColorGhostDisabledInfo: string;
200
+ borderInfo: string;
201
+ borderHoverInfo: string;
202
+ borderPressedInfo: string;
203
+ borderFocusInfo: string;
204
+ borderDisabledInfo: string;
205
+ rippleColorInfo: string;
206
+ colorSuccess: string;
207
+ colorHoverSuccess: string;
208
+ colorPressedSuccess: string;
209
+ colorFocusSuccess: string;
210
+ colorDisabledSuccess: string;
211
+ textColorSuccess: string;
212
+ textColorHoverSuccess: string;
213
+ textColorPressedSuccess: string;
214
+ textColorFocusSuccess: string;
215
+ textColorDisabledSuccess: string;
216
+ textColorTextSuccess: string;
217
+ textColorTextHoverSuccess: string;
218
+ textColorTextPressedSuccess: string;
219
+ textColorTextFocusSuccess: string;
220
+ textColorTextDisabledSuccess: string;
221
+ textColorGhostSuccess: string;
222
+ textColorGhostHoverSuccess: string;
223
+ textColorGhostPressedSuccess: string;
224
+ textColorGhostFocusSuccess: string;
225
+ textColorGhostDisabledSuccess: string;
226
+ borderSuccess: string;
227
+ borderHoverSuccess: string;
228
+ borderPressedSuccess: string;
229
+ borderFocusSuccess: string;
230
+ borderDisabledSuccess: string;
231
+ rippleColorSuccess: string;
232
+ colorWarning: string;
233
+ colorHoverWarning: string;
234
+ colorPressedWarning: string;
235
+ colorFocusWarning: string;
236
+ colorDisabledWarning: string;
237
+ textColorWarning: string;
238
+ textColorHoverWarning: string;
239
+ textColorPressedWarning: string;
240
+ textColorFocusWarning: string;
241
+ textColorDisabledWarning: string;
242
+ textColorTextWarning: string;
243
+ textColorTextHoverWarning: string;
244
+ textColorTextPressedWarning: string;
245
+ textColorTextFocusWarning: string;
246
+ textColorTextDisabledWarning: string;
247
+ textColorGhostWarning: string;
248
+ textColorGhostHoverWarning: string;
249
+ textColorGhostPressedWarning: string;
250
+ textColorGhostFocusWarning: string;
251
+ textColorGhostDisabledWarning: string;
252
+ borderWarning: string;
253
+ borderHoverWarning: string;
254
+ borderPressedWarning: string;
255
+ borderFocusWarning: string;
256
+ borderDisabledWarning: string;
257
+ rippleColorWarning: string;
258
+ colorError: string;
259
+ colorHoverError: string;
260
+ colorPressedError: string;
261
+ colorFocusError: string;
262
+ colorDisabledError: string;
263
+ textColorError: string;
264
+ textColorHoverError: string;
265
+ textColorPressedError: string;
266
+ textColorFocusError: string;
267
+ textColorDisabledError: string;
268
+ textColorTextError: string;
269
+ textColorTextHoverError: string;
270
+ textColorTextPressedError: string;
271
+ textColorTextFocusError: string;
272
+ textColorTextDisabledError: string;
273
+ textColorGhostError: string;
274
+ textColorGhostHoverError: string;
275
+ textColorGhostPressedError: string;
276
+ textColorGhostFocusError: string;
277
+ textColorGhostDisabledError: string;
278
+ borderError: string;
279
+ borderHoverError: string;
280
+ borderPressedError: string;
281
+ borderFocusError: string;
282
+ borderDisabledError: string;
283
+ rippleColorError: string;
284
+ waveOpacity: string;
285
+ fontWeight: string;
286
+ fontWeightStrong: string;
287
+ paddingTiny: string;
288
+ paddingSmall: string;
289
+ paddingMedium: string;
290
+ paddingLarge: string;
291
+ paddingRoundTiny: string;
292
+ paddingRoundSmall: string;
293
+ paddingRoundMedium: string;
294
+ paddingRoundLarge: string;
295
+ iconMarginTiny: string;
296
+ iconMarginSmall: string;
297
+ iconMarginMedium: string;
298
+ iconMarginLarge: string;
299
+ iconSizeTiny: string;
300
+ iconSizeSmall: string;
301
+ iconSizeMedium: string;
302
+ iconSizeLarge: string;
303
+ rippleDuration: string;
304
+ }, any>;
305
+ Input: import("../../_mixins").Theme<"Input", {
306
+ paddingTiny: string;
307
+ paddingSmall: string;
308
+ paddingMedium: string;
309
+ paddingLarge: string;
310
+ paddingHuge: string;
311
+ clearSize: string;
312
+ countTextColorDisabled: string;
313
+ countTextColor: string;
314
+ heightTiny: string;
315
+ heightSmall: string;
316
+ heightMedium: string;
317
+ heightLarge: string;
318
+ heightHuge: string;
319
+ fontSizeTiny: string;
320
+ fontSizeSmall: string;
321
+ fontSizeMedium: string;
322
+ fontSizeLarge: string;
323
+ fontSizeHuge: string;
324
+ lineHeight: string;
325
+ lineHeightTextarea: string;
326
+ borderRadius: string;
327
+ iconSize: string;
328
+ groupLabelTextColor: string;
329
+ textColor: string;
330
+ textColorDisabled: string;
331
+ textDecorationColor: string;
332
+ caretColor: string;
333
+ placeholderColor: string;
334
+ placeholderColorDisabled: string;
335
+ color: string;
336
+ colorDisabled: string;
337
+ colorFocus: string;
338
+ groupLabelBorder: string;
339
+ border: string;
340
+ borderHover: string;
341
+ borderDisabled: string;
342
+ borderFocus: string;
343
+ boxShadowFocus: string;
344
+ loadingColor: string;
345
+ loadingColorWarning: string;
346
+ borderWarning: string;
347
+ borderHoverWarning: string;
348
+ colorFocusWarning: string;
349
+ borderFocusWarning: string;
350
+ boxShadowFocusWarning: string;
351
+ caretColorWarning: string;
352
+ loadingColorError: string;
353
+ borderError: string;
354
+ borderHoverError: string;
355
+ colorFocusError: string;
356
+ borderFocusError: string;
357
+ boxShadowFocusError: string;
358
+ caretColorError: string;
359
+ clearColor: string;
360
+ clearColorHover: string;
361
+ clearColorPressed: string;
362
+ iconColor: string;
363
+ iconColorDisabled: string;
364
+ iconColorHover: string;
365
+ iconColorPressed: string;
366
+ suffixTextColor: string;
367
+ selectionColor: string;
368
+ }, any>;
369
+ Select: import("../../_mixins").Theme<"InternalSelection", {
370
+ paddingTiny: string;
371
+ paddingSmall: string;
372
+ paddingMedium: string;
373
+ paddingLarge: string;
374
+ paddingHuge: string;
375
+ clearSizeTiny: string;
376
+ clearSizeSmall: string;
377
+ clearSizeMedium: string;
378
+ clearSizeLarge: string;
379
+ clearSizeHuge: string;
380
+ arrowSizeTiny: string;
381
+ arrowSizeSmall: string;
382
+ arrowSizeMedium: string;
383
+ arrowSizeLarge: string;
384
+ arrowSizeHuge: string;
385
+ fontSizeTiny: string;
386
+ fontSizeSmall: string;
387
+ fontSizeMedium: string;
388
+ fontSizeLarge: string;
389
+ fontSizeHuge: string;
390
+ lineHeightTiny: string;
391
+ lineHeightSmall: string;
392
+ lineHeightMedium: string;
393
+ lineHeightLarge: string;
394
+ lineHeightHuge: string;
395
+ heightTiny: string;
396
+ heightSmall: string;
397
+ heightMedium: string;
398
+ heightLarge: string;
399
+ heightHuge: string;
400
+ borderRadiusTiny: string;
401
+ borderRadiusSmall: string;
402
+ borderRadiusMedium: string;
403
+ borderRadiusLarge: string;
404
+ borderRadiusHuge: string;
405
+ textColor: string;
406
+ textColorDisabled: string;
407
+ placeholderColor: string;
408
+ placeholderColorDisabled: string;
409
+ color: string;
410
+ colorFilled: string;
411
+ colorDisabled: string;
412
+ colorActive: string;
413
+ border: string;
414
+ borderFilled: string;
415
+ borderHover: string;
416
+ borderActive: string;
417
+ borderFocus: string;
418
+ borderDisabled: string;
419
+ boxShadowHover: string;
420
+ boxShadowActive: string;
421
+ boxShadowFocus: string;
422
+ caretColor: string;
423
+ arrowColor: string;
424
+ arrowColorHover: string;
425
+ arrowColorDisabled: string;
426
+ loadingColor: string;
427
+ borderWarning: string;
428
+ borderHoverWarning: string;
429
+ borderActiveWarning: string;
430
+ borderFocusWarning: string;
431
+ boxShadowHoverWarning: string;
432
+ boxShadowActiveWarning: string;
433
+ boxShadowFocusWarning: string;
434
+ colorActiveWarning: string;
435
+ caretColorWarning: string;
436
+ borderError: string;
437
+ borderHoverError: string;
438
+ borderActiveError: string;
439
+ borderFocusError: string;
440
+ boxShadowHoverError: string;
441
+ boxShadowActiveError: string;
442
+ boxShadowFocusError: string;
443
+ colorActiveError: string;
444
+ caretColorError: string;
445
+ clearColor: string;
446
+ clearColorHover: string;
447
+ clearColorPressed: string;
448
+ caretColorSecondary: string;
449
+ filterCounterTextColor: string;
450
+ filterCounterTextColorDisabled: string;
451
+ arrowColorSecondary: string;
452
+ clearColorSecondary: string;
453
+ colorSecondary: string;
454
+ textColorSecondary: string;
455
+ borderSecondary: string;
456
+ arrowColorDisabledSecondary: string;
457
+ clearColorDisabledSecondary: string;
458
+ colorDisabledSecondary: string;
459
+ textColorDisabledSecondary: string;
460
+ borderDisabledSecondary: string;
461
+ arrowColorHoverSecondary: string;
462
+ clearColorHoverSecondary: string;
463
+ colorHoverSecondary: string;
464
+ textColorHoverSecondary: string;
465
+ borderHoverSecondary: string;
466
+ arrowColorFocusSecondary: string;
467
+ clearColorFocusSecondary: string;
468
+ colorFocusSecondary: string;
469
+ textColorFocusSecondary: string;
470
+ borderFocusSecondary: string;
471
+ arrowColorActiveSecondary: string;
472
+ clearColorActiveSecondary: string;
473
+ colorActiveSecondary: string;
474
+ textColorActiveSecondary: string;
475
+ borderActiveSecondary: string;
476
+ }, {
477
+ Popover: import("../../_mixins").Theme<"Popover", {
478
+ space: string;
479
+ spaceArrow: string;
480
+ arrowOffset: string;
481
+ arrowOffsetVertical: string;
482
+ arrowHeight: string;
483
+ padding: string;
484
+ fontSize: string;
485
+ borderRadius: string;
486
+ color: string;
487
+ dividerColor: string;
488
+ textColor: string;
489
+ boxShadow: string;
490
+ }, any>;
491
+ }>;
492
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
493
+ height: string;
494
+ width: string;
495
+ borderRadius: string;
496
+ color: string;
497
+ colorHover: string;
498
+ railInsetHorizontalBottom: string;
499
+ railInsetHorizontalTop: string;
500
+ railInsetVerticalRight: string;
501
+ railInsetVerticalLeft: string;
502
+ railColor: string;
503
+ }, any>;
504
+ }>>;
505
+ readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePickerV2", {
506
+ panelColor: string;
507
+ panelBoxShadow: string;
508
+ panelBorderRadius: string;
509
+ panelTextColor: string;
510
+ dividerColor: string;
511
+ itemTextColor: string;
512
+ itemTextColorOtherMonth: string;
513
+ itemTextColorDisabled: string;
514
+ itemColorHover: string;
515
+ itemColorActive: string;
516
+ itemColorIncluded: string;
517
+ itemTextColorActive: string;
518
+ itemBorderRadius: string;
519
+ iconColor: string;
520
+ iconColorDisabled: string;
521
+ weekdayTextColor: string;
522
+ weekendTextColor: string;
523
+ monthItemHeight: string;
524
+ monthItemColorHover: string;
525
+ monthItemColorActive: string;
526
+ monthItemTextColorActive: string;
527
+ yearTriggerColor: string;
528
+ yearTriggerColorHover: string;
529
+ yearTriggerTextColor: string;
530
+ currentDateIndicatorColor: string;
531
+ }, {
532
+ Button: import("../../_mixins").Theme<"Button", {
533
+ heightTiny: string;
534
+ heightSmall: string;
535
+ heightMedium: string;
536
+ heightLarge: string;
537
+ borderRadiusTiny: string;
538
+ borderRadiusSmall: string;
539
+ borderRadiusMedium: string;
540
+ borderRadiusLarge: string;
541
+ fontSizeTiny: string;
542
+ fontSizeSmall: string;
543
+ fontSizeMedium: string;
544
+ fontSizeLarge: string;
545
+ opacityDisabled: string;
546
+ colorOpacitySecondary: string;
547
+ colorOpacitySecondaryHover: string;
548
+ colorOpacitySecondaryPressed: string;
549
+ colorOpacitySecondaryFocus: string;
550
+ colorSecondary: string;
551
+ colorSecondaryHover: string;
552
+ colorSecondaryPressed: string;
553
+ colorSecondaryFocus: string;
554
+ colorSecondaryDisabled: string;
555
+ textColorSecondaryDisabled: string;
556
+ waveColorSecondary: string;
557
+ colorTertiary: string;
558
+ colorTertiaryHover: string;
559
+ colorTertiaryPressed: string;
560
+ colorTertiaryFocus: string;
561
+ colorTertiaryDisalbed: string;
562
+ waveColorTertiary: string;
563
+ textColorTextTertiary: string;
564
+ rippleColorTertiary: string;
565
+ colorQuaternary: string;
566
+ colorQuaternaryHover: string;
567
+ colorQuaternaryPressed: string;
568
+ colorQuaternaryFocus: string;
569
+ rippleColorQuaternary: string;
570
+ waveColorQuaternary: string;
571
+ color: string;
572
+ colorHover: string;
573
+ colorPressed: string;
574
+ colorFocus: string;
575
+ colorDisabled: string;
576
+ textColor: string;
577
+ textTertiary: string;
578
+ textColorTertiary: string;
579
+ textColorHover: string;
580
+ textColorPressed: string;
581
+ textColorFocus: string;
582
+ textColorDisabled: string;
583
+ textColorText: string;
584
+ textColorTextHover: string;
585
+ textColorTextPressed: string;
586
+ textColorTextFocus: string;
587
+ textColorTextDisabled: string;
588
+ textColorGhost: string;
589
+ textColorGhostHover: string;
590
+ textColorGhostPressed: string;
591
+ textColorGhostFocus: string;
592
+ textColorGhostDisabled: string;
593
+ border: string;
594
+ borderHover: string;
595
+ borderPressed: string;
596
+ borderFocus: string;
597
+ borderDisabled: string;
598
+ rippleColor: string;
599
+ colorPrimary: string;
600
+ colorHoverPrimary: string;
601
+ colorPressedPrimary: string;
602
+ colorFocusPrimary: string;
603
+ colorDisabledPrimary: string;
604
+ waveColorPrimary: string;
605
+ textColorPrimary: string;
606
+ textColorHoverPrimary: string;
607
+ textColorPressedPrimary: string;
608
+ textColorFocusPrimary: string;
609
+ textColorDisabledPrimary: string;
610
+ textColorTextPrimary: string;
611
+ textColorTextHoverPrimary: string;
612
+ textColorTextPressedPrimary: string;
613
+ textColorTextFocusPrimary: string;
614
+ textColorTextDisabledPrimary: string;
615
+ textColorGhostPrimary: string;
616
+ textColorGhostHoverPrimary: string;
617
+ textColorGhostPressedPrimary: string;
618
+ textColorGhostFocusPrimary: string;
619
+ textColorGhostDisabledPrimary: string;
620
+ borderPrimary: string;
621
+ borderHoverPrimary: string;
622
+ borderPressedPrimary: string;
623
+ borderFocusPrimary: string;
624
+ borderDisabledPrimary: string;
625
+ rippleColorPrimary: string;
626
+ colorInfo: string;
627
+ colorHoverInfo: string;
628
+ colorPressedInfo: string;
629
+ colorFocusInfo: string;
630
+ colorDisabledInfo: string;
631
+ textColorInfo: string;
632
+ textColorHoverInfo: string;
633
+ textColorPressedInfo: string;
634
+ textColorFocusInfo: string;
635
+ textColorDisabledInfo: string;
636
+ textColorTextInfo: string;
637
+ textColorTextHoverInfo: string;
638
+ textColorTextPressedInfo: string;
639
+ textColorTextFocusInfo: string;
640
+ textColorTextDisabledInfo: string;
641
+ textColorGhostInfo: string;
642
+ textColorGhostHoverInfo: string;
643
+ textColorGhostPressedInfo: string;
644
+ textColorGhostFocusInfo: string;
645
+ textColorGhostDisabledInfo: string;
646
+ borderInfo: string;
647
+ borderHoverInfo: string;
648
+ borderPressedInfo: string;
649
+ borderFocusInfo: string;
650
+ borderDisabledInfo: string;
651
+ rippleColorInfo: string;
652
+ colorSuccess: string;
653
+ colorHoverSuccess: string;
654
+ colorPressedSuccess: string;
655
+ colorFocusSuccess: string;
656
+ colorDisabledSuccess: string;
657
+ textColorSuccess: string;
658
+ textColorHoverSuccess: string;
659
+ textColorPressedSuccess: string;
660
+ textColorFocusSuccess: string;
661
+ textColorDisabledSuccess: string;
662
+ textColorTextSuccess: string;
663
+ textColorTextHoverSuccess: string;
664
+ textColorTextPressedSuccess: string;
665
+ textColorTextFocusSuccess: string;
666
+ textColorTextDisabledSuccess: string;
667
+ textColorGhostSuccess: string;
668
+ textColorGhostHoverSuccess: string;
669
+ textColorGhostPressedSuccess: string;
670
+ textColorGhostFocusSuccess: string;
671
+ textColorGhostDisabledSuccess: string;
672
+ borderSuccess: string;
673
+ borderHoverSuccess: string;
674
+ borderPressedSuccess: string;
675
+ borderFocusSuccess: string;
676
+ borderDisabledSuccess: string;
677
+ rippleColorSuccess: string;
678
+ colorWarning: string;
679
+ colorHoverWarning: string;
680
+ colorPressedWarning: string;
681
+ colorFocusWarning: string;
682
+ colorDisabledWarning: string;
683
+ textColorWarning: string;
684
+ textColorHoverWarning: string;
685
+ textColorPressedWarning: string;
686
+ textColorFocusWarning: string;
687
+ textColorDisabledWarning: string;
688
+ textColorTextWarning: string;
689
+ textColorTextHoverWarning: string;
690
+ textColorTextPressedWarning: string;
691
+ textColorTextFocusWarning: string;
692
+ textColorTextDisabledWarning: string;
693
+ textColorGhostWarning: string;
694
+ textColorGhostHoverWarning: string;
695
+ textColorGhostPressedWarning: string;
696
+ textColorGhostFocusWarning: string;
697
+ textColorGhostDisabledWarning: string;
698
+ borderWarning: string;
699
+ borderHoverWarning: string;
700
+ borderPressedWarning: string;
701
+ borderFocusWarning: string;
702
+ borderDisabledWarning: string;
703
+ rippleColorWarning: string;
704
+ colorError: string;
705
+ colorHoverError: string;
706
+ colorPressedError: string;
707
+ colorFocusError: string;
708
+ colorDisabledError: string;
709
+ textColorError: string;
710
+ textColorHoverError: string;
711
+ textColorPressedError: string;
712
+ textColorFocusError: string;
713
+ textColorDisabledError: string;
714
+ textColorTextError: string;
715
+ textColorTextHoverError: string;
716
+ textColorTextPressedError: string;
717
+ textColorTextFocusError: string;
718
+ textColorTextDisabledError: string;
719
+ textColorGhostError: string;
720
+ textColorGhostHoverError: string;
721
+ textColorGhostPressedError: string;
722
+ textColorGhostFocusError: string;
723
+ textColorGhostDisabledError: string;
724
+ borderError: string;
725
+ borderHoverError: string;
726
+ borderPressedError: string;
727
+ borderFocusError: string;
728
+ borderDisabledError: string;
729
+ rippleColorError: string;
730
+ waveOpacity: string;
731
+ fontWeight: string;
732
+ fontWeightStrong: string;
733
+ paddingTiny: string;
734
+ paddingSmall: string;
735
+ paddingMedium: string;
736
+ paddingLarge: string;
737
+ paddingRoundTiny: string;
738
+ paddingRoundSmall: string;
739
+ paddingRoundMedium: string;
740
+ paddingRoundLarge: string;
741
+ iconMarginTiny: string;
742
+ iconMarginSmall: string;
743
+ iconMarginMedium: string;
744
+ iconMarginLarge: string;
745
+ iconSizeTiny: string;
746
+ iconSizeSmall: string;
747
+ iconSizeMedium: string;
748
+ iconSizeLarge: string;
749
+ rippleDuration: string;
750
+ }, any>;
751
+ Input: import("../../_mixins").Theme<"Input", {
752
+ paddingTiny: string;
753
+ paddingSmall: string;
754
+ paddingMedium: string;
755
+ paddingLarge: string;
756
+ paddingHuge: string;
757
+ clearSize: string;
758
+ countTextColorDisabled: string;
759
+ countTextColor: string;
760
+ heightTiny: string;
761
+ heightSmall: string;
762
+ heightMedium: string;
763
+ heightLarge: string;
764
+ heightHuge: string;
765
+ fontSizeTiny: string;
766
+ fontSizeSmall: string;
767
+ fontSizeMedium: string;
768
+ fontSizeLarge: string;
769
+ fontSizeHuge: string;
770
+ lineHeight: string;
771
+ lineHeightTextarea: string;
772
+ borderRadius: string;
773
+ iconSize: string;
774
+ groupLabelTextColor: string;
775
+ textColor: string;
776
+ textColorDisabled: string;
777
+ textDecorationColor: string;
778
+ caretColor: string;
779
+ placeholderColor: string;
780
+ placeholderColorDisabled: string;
781
+ color: string;
782
+ colorDisabled: string;
783
+ colorFocus: string;
784
+ groupLabelBorder: string;
785
+ border: string;
786
+ borderHover: string;
787
+ borderDisabled: string;
788
+ borderFocus: string;
789
+ boxShadowFocus: string;
790
+ loadingColor: string;
791
+ loadingColorWarning: string;
792
+ borderWarning: string;
793
+ borderHoverWarning: string;
794
+ colorFocusWarning: string;
795
+ borderFocusWarning: string;
796
+ boxShadowFocusWarning: string;
797
+ caretColorWarning: string;
798
+ loadingColorError: string;
799
+ borderError: string;
800
+ borderHoverError: string;
801
+ colorFocusError: string;
802
+ borderFocusError: string;
803
+ boxShadowFocusError: string;
804
+ caretColorError: string;
805
+ clearColor: string;
806
+ clearColorHover: string;
807
+ clearColorPressed: string;
808
+ iconColor: string;
809
+ iconColorDisabled: string;
810
+ iconColorHover: string;
811
+ iconColorPressed: string;
812
+ suffixTextColor: string;
813
+ selectionColor: string;
814
+ }, any>;
815
+ Select: import("../../_mixins").Theme<"InternalSelection", {
816
+ paddingTiny: string;
817
+ paddingSmall: string;
818
+ paddingMedium: string;
819
+ paddingLarge: string;
820
+ paddingHuge: string;
821
+ clearSizeTiny: string;
822
+ clearSizeSmall: string;
823
+ clearSizeMedium: string;
824
+ clearSizeLarge: string;
825
+ clearSizeHuge: string;
826
+ arrowSizeTiny: string;
827
+ arrowSizeSmall: string;
828
+ arrowSizeMedium: string;
829
+ arrowSizeLarge: string;
830
+ arrowSizeHuge: string;
831
+ fontSizeTiny: string;
832
+ fontSizeSmall: string;
833
+ fontSizeMedium: string;
834
+ fontSizeLarge: string;
835
+ fontSizeHuge: string;
836
+ lineHeightTiny: string;
837
+ lineHeightSmall: string;
838
+ lineHeightMedium: string;
839
+ lineHeightLarge: string;
840
+ lineHeightHuge: string;
841
+ heightTiny: string;
842
+ heightSmall: string;
843
+ heightMedium: string;
844
+ heightLarge: string;
845
+ heightHuge: string;
846
+ borderRadiusTiny: string;
847
+ borderRadiusSmall: string;
848
+ borderRadiusMedium: string;
849
+ borderRadiusLarge: string;
850
+ borderRadiusHuge: string;
851
+ textColor: string;
852
+ textColorDisabled: string;
853
+ placeholderColor: string;
854
+ placeholderColorDisabled: string;
855
+ color: string;
856
+ colorFilled: string;
857
+ colorDisabled: string;
858
+ colorActive: string;
859
+ border: string;
860
+ borderFilled: string;
861
+ borderHover: string;
862
+ borderActive: string;
863
+ borderFocus: string;
864
+ borderDisabled: string;
865
+ boxShadowHover: string;
866
+ boxShadowActive: string;
867
+ boxShadowFocus: string;
868
+ caretColor: string;
869
+ arrowColor: string;
870
+ arrowColorHover: string;
871
+ arrowColorDisabled: string;
872
+ loadingColor: string;
873
+ borderWarning: string;
874
+ borderHoverWarning: string;
875
+ borderActiveWarning: string;
876
+ borderFocusWarning: string;
877
+ boxShadowHoverWarning: string;
878
+ boxShadowActiveWarning: string;
879
+ boxShadowFocusWarning: string;
880
+ colorActiveWarning: string;
881
+ caretColorWarning: string;
882
+ borderError: string;
883
+ borderHoverError: string;
884
+ borderActiveError: string;
885
+ borderFocusError: string;
886
+ boxShadowHoverError: string;
887
+ boxShadowActiveError: string;
888
+ boxShadowFocusError: string;
889
+ colorActiveError: string;
890
+ caretColorError: string;
891
+ clearColor: string;
892
+ clearColorHover: string;
893
+ clearColorPressed: string;
894
+ caretColorSecondary: string;
895
+ filterCounterTextColor: string;
896
+ filterCounterTextColorDisabled: string;
897
+ arrowColorSecondary: string;
898
+ clearColorSecondary: string;
899
+ colorSecondary: string;
900
+ textColorSecondary: string;
901
+ borderSecondary: string;
902
+ arrowColorDisabledSecondary: string;
903
+ clearColorDisabledSecondary: string;
904
+ colorDisabledSecondary: string;
905
+ textColorDisabledSecondary: string;
906
+ borderDisabledSecondary: string;
907
+ arrowColorHoverSecondary: string;
908
+ clearColorHoverSecondary: string;
909
+ colorHoverSecondary: string;
910
+ textColorHoverSecondary: string;
911
+ borderHoverSecondary: string;
912
+ arrowColorFocusSecondary: string;
913
+ clearColorFocusSecondary: string;
914
+ colorFocusSecondary: string;
915
+ textColorFocusSecondary: string;
916
+ borderFocusSecondary: string;
917
+ arrowColorActiveSecondary: string;
918
+ clearColorActiveSecondary: string;
919
+ colorActiveSecondary: string;
920
+ textColorActiveSecondary: string;
921
+ borderActiveSecondary: string;
922
+ }, {
923
+ Popover: import("../../_mixins").Theme<"Popover", {
924
+ space: string;
925
+ spaceArrow: string;
926
+ arrowOffset: string;
927
+ arrowOffsetVertical: string;
928
+ arrowHeight: string;
929
+ padding: string;
930
+ fontSize: string;
931
+ borderRadius: string;
932
+ color: string;
933
+ dividerColor: string;
934
+ textColor: string;
935
+ boxShadow: string;
936
+ }, any>;
937
+ }>;
938
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
939
+ height: string;
940
+ width: string;
941
+ borderRadius: string;
942
+ color: string;
943
+ colorHover: string;
944
+ railInsetHorizontalBottom: string;
945
+ railInsetHorizontalTop: string;
946
+ railInsetVerticalRight: string;
947
+ railInsetVerticalLeft: string;
948
+ railColor: string;
949
+ }, any>;
950
+ }>>>;
951
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePickerV2", {
952
+ panelColor: string;
953
+ panelBoxShadow: string;
954
+ panelBorderRadius: string;
955
+ panelTextColor: string;
956
+ dividerColor: string;
957
+ itemTextColor: string;
958
+ itemTextColorOtherMonth: string;
959
+ itemTextColorDisabled: string;
960
+ itemColorHover: string;
961
+ itemColorActive: string;
962
+ itemColorIncluded: string;
963
+ itemTextColorActive: string;
964
+ itemBorderRadius: string;
965
+ iconColor: string;
966
+ iconColorDisabled: string;
967
+ weekdayTextColor: string;
968
+ weekendTextColor: string;
969
+ monthItemHeight: string;
970
+ monthItemColorHover: string;
971
+ monthItemColorActive: string;
972
+ monthItemTextColorActive: string;
973
+ yearTriggerColor: string;
974
+ yearTriggerColorHover: string;
975
+ yearTriggerTextColor: string;
976
+ currentDateIndicatorColor: string;
977
+ }, {
978
+ Button: import("../../_mixins").Theme<"Button", {
979
+ heightTiny: string;
980
+ heightSmall: string;
981
+ heightMedium: string;
982
+ heightLarge: string;
983
+ borderRadiusTiny: string;
984
+ borderRadiusSmall: string;
985
+ borderRadiusMedium: string;
986
+ borderRadiusLarge: string;
987
+ fontSizeTiny: string;
988
+ fontSizeSmall: string;
989
+ fontSizeMedium: string;
990
+ fontSizeLarge: string;
991
+ opacityDisabled: string;
992
+ colorOpacitySecondary: string;
993
+ colorOpacitySecondaryHover: string;
994
+ colorOpacitySecondaryPressed: string;
995
+ colorOpacitySecondaryFocus: string;
996
+ colorSecondary: string;
997
+ colorSecondaryHover: string;
998
+ colorSecondaryPressed: string;
999
+ colorSecondaryFocus: string;
1000
+ colorSecondaryDisabled: string;
1001
+ textColorSecondaryDisabled: string;
1002
+ waveColorSecondary: string;
1003
+ colorTertiary: string;
1004
+ colorTertiaryHover: string;
1005
+ colorTertiaryPressed: string;
1006
+ colorTertiaryFocus: string;
1007
+ colorTertiaryDisalbed: string;
1008
+ waveColorTertiary: string;
1009
+ textColorTextTertiary: string;
1010
+ rippleColorTertiary: string;
1011
+ colorQuaternary: string;
1012
+ colorQuaternaryHover: string;
1013
+ colorQuaternaryPressed: string;
1014
+ colorQuaternaryFocus: string;
1015
+ rippleColorQuaternary: string;
1016
+ waveColorQuaternary: string;
1017
+ color: string;
1018
+ colorHover: string;
1019
+ colorPressed: string;
1020
+ colorFocus: string;
1021
+ colorDisabled: string;
1022
+ textColor: string;
1023
+ textTertiary: string;
1024
+ textColorTertiary: string;
1025
+ textColorHover: string;
1026
+ textColorPressed: string;
1027
+ textColorFocus: string;
1028
+ textColorDisabled: string;
1029
+ textColorText: string;
1030
+ textColorTextHover: string;
1031
+ textColorTextPressed: string;
1032
+ textColorTextFocus: string;
1033
+ textColorTextDisabled: string;
1034
+ textColorGhost: string;
1035
+ textColorGhostHover: string;
1036
+ textColorGhostPressed: string;
1037
+ textColorGhostFocus: string;
1038
+ textColorGhostDisabled: string;
1039
+ border: string;
1040
+ borderHover: string;
1041
+ borderPressed: string;
1042
+ borderFocus: string;
1043
+ borderDisabled: string;
1044
+ rippleColor: string;
1045
+ colorPrimary: string;
1046
+ colorHoverPrimary: string;
1047
+ colorPressedPrimary: string;
1048
+ colorFocusPrimary: string;
1049
+ colorDisabledPrimary: string;
1050
+ waveColorPrimary: string;
1051
+ textColorPrimary: string;
1052
+ textColorHoverPrimary: string;
1053
+ textColorPressedPrimary: string;
1054
+ textColorFocusPrimary: string;
1055
+ textColorDisabledPrimary: string;
1056
+ textColorTextPrimary: string;
1057
+ textColorTextHoverPrimary: string;
1058
+ textColorTextPressedPrimary: string;
1059
+ textColorTextFocusPrimary: string;
1060
+ textColorTextDisabledPrimary: string;
1061
+ textColorGhostPrimary: string;
1062
+ textColorGhostHoverPrimary: string;
1063
+ textColorGhostPressedPrimary: string;
1064
+ textColorGhostFocusPrimary: string;
1065
+ textColorGhostDisabledPrimary: string;
1066
+ borderPrimary: string;
1067
+ borderHoverPrimary: string;
1068
+ borderPressedPrimary: string;
1069
+ borderFocusPrimary: string;
1070
+ borderDisabledPrimary: string;
1071
+ rippleColorPrimary: string;
1072
+ colorInfo: string;
1073
+ colorHoverInfo: string;
1074
+ colorPressedInfo: string;
1075
+ colorFocusInfo: string;
1076
+ colorDisabledInfo: string;
1077
+ textColorInfo: string;
1078
+ textColorHoverInfo: string;
1079
+ textColorPressedInfo: string;
1080
+ textColorFocusInfo: string;
1081
+ textColorDisabledInfo: string;
1082
+ textColorTextInfo: string;
1083
+ textColorTextHoverInfo: string;
1084
+ textColorTextPressedInfo: string;
1085
+ textColorTextFocusInfo: string;
1086
+ textColorTextDisabledInfo: string;
1087
+ textColorGhostInfo: string;
1088
+ textColorGhostHoverInfo: string;
1089
+ textColorGhostPressedInfo: string;
1090
+ textColorGhostFocusInfo: string;
1091
+ textColorGhostDisabledInfo: string;
1092
+ borderInfo: string;
1093
+ borderHoverInfo: string;
1094
+ borderPressedInfo: string;
1095
+ borderFocusInfo: string;
1096
+ borderDisabledInfo: string;
1097
+ rippleColorInfo: string;
1098
+ colorSuccess: string;
1099
+ colorHoverSuccess: string;
1100
+ colorPressedSuccess: string;
1101
+ colorFocusSuccess: string;
1102
+ colorDisabledSuccess: string;
1103
+ textColorSuccess: string;
1104
+ textColorHoverSuccess: string;
1105
+ textColorPressedSuccess: string;
1106
+ textColorFocusSuccess: string;
1107
+ textColorDisabledSuccess: string;
1108
+ textColorTextSuccess: string;
1109
+ textColorTextHoverSuccess: string;
1110
+ textColorTextPressedSuccess: string;
1111
+ textColorTextFocusSuccess: string;
1112
+ textColorTextDisabledSuccess: string;
1113
+ textColorGhostSuccess: string;
1114
+ textColorGhostHoverSuccess: string;
1115
+ textColorGhostPressedSuccess: string;
1116
+ textColorGhostFocusSuccess: string;
1117
+ textColorGhostDisabledSuccess: string;
1118
+ borderSuccess: string;
1119
+ borderHoverSuccess: string;
1120
+ borderPressedSuccess: string;
1121
+ borderFocusSuccess: string;
1122
+ borderDisabledSuccess: string;
1123
+ rippleColorSuccess: string;
1124
+ colorWarning: string;
1125
+ colorHoverWarning: string;
1126
+ colorPressedWarning: string;
1127
+ colorFocusWarning: string;
1128
+ colorDisabledWarning: string;
1129
+ textColorWarning: string;
1130
+ textColorHoverWarning: string;
1131
+ textColorPressedWarning: string;
1132
+ textColorFocusWarning: string;
1133
+ textColorDisabledWarning: string;
1134
+ textColorTextWarning: string;
1135
+ textColorTextHoverWarning: string;
1136
+ textColorTextPressedWarning: string;
1137
+ textColorTextFocusWarning: string;
1138
+ textColorTextDisabledWarning: string;
1139
+ textColorGhostWarning: string;
1140
+ textColorGhostHoverWarning: string;
1141
+ textColorGhostPressedWarning: string;
1142
+ textColorGhostFocusWarning: string;
1143
+ textColorGhostDisabledWarning: string;
1144
+ borderWarning: string;
1145
+ borderHoverWarning: string;
1146
+ borderPressedWarning: string;
1147
+ borderFocusWarning: string;
1148
+ borderDisabledWarning: string;
1149
+ rippleColorWarning: string;
1150
+ colorError: string;
1151
+ colorHoverError: string;
1152
+ colorPressedError: string;
1153
+ colorFocusError: string;
1154
+ colorDisabledError: string;
1155
+ textColorError: string;
1156
+ textColorHoverError: string;
1157
+ textColorPressedError: string;
1158
+ textColorFocusError: string;
1159
+ textColorDisabledError: string;
1160
+ textColorTextError: string;
1161
+ textColorTextHoverError: string;
1162
+ textColorTextPressedError: string;
1163
+ textColorTextFocusError: string;
1164
+ textColorTextDisabledError: string;
1165
+ textColorGhostError: string;
1166
+ textColorGhostHoverError: string;
1167
+ textColorGhostPressedError: string;
1168
+ textColorGhostFocusError: string;
1169
+ textColorGhostDisabledError: string;
1170
+ borderError: string;
1171
+ borderHoverError: string;
1172
+ borderPressedError: string;
1173
+ borderFocusError: string;
1174
+ borderDisabledError: string;
1175
+ rippleColorError: string;
1176
+ waveOpacity: string;
1177
+ fontWeight: string;
1178
+ fontWeightStrong: string;
1179
+ paddingTiny: string;
1180
+ paddingSmall: string;
1181
+ paddingMedium: string;
1182
+ paddingLarge: string;
1183
+ paddingRoundTiny: string;
1184
+ paddingRoundSmall: string;
1185
+ paddingRoundMedium: string;
1186
+ paddingRoundLarge: string;
1187
+ iconMarginTiny: string;
1188
+ iconMarginSmall: string;
1189
+ iconMarginMedium: string;
1190
+ iconMarginLarge: string;
1191
+ iconSizeTiny: string;
1192
+ iconSizeSmall: string;
1193
+ iconSizeMedium: string;
1194
+ iconSizeLarge: string;
1195
+ rippleDuration: string;
1196
+ }, any>;
1197
+ Input: import("../../_mixins").Theme<"Input", {
1198
+ paddingTiny: string;
1199
+ paddingSmall: string;
1200
+ paddingMedium: string;
1201
+ paddingLarge: string;
1202
+ paddingHuge: string;
1203
+ clearSize: string;
1204
+ countTextColorDisabled: string;
1205
+ countTextColor: string;
1206
+ heightTiny: string;
1207
+ heightSmall: string;
1208
+ heightMedium: string;
1209
+ heightLarge: string;
1210
+ heightHuge: string;
1211
+ fontSizeTiny: string;
1212
+ fontSizeSmall: string;
1213
+ fontSizeMedium: string;
1214
+ fontSizeLarge: string;
1215
+ fontSizeHuge: string;
1216
+ lineHeight: string;
1217
+ lineHeightTextarea: string;
1218
+ borderRadius: string;
1219
+ iconSize: string;
1220
+ groupLabelTextColor: string;
1221
+ textColor: string;
1222
+ textColorDisabled: string;
1223
+ textDecorationColor: string;
1224
+ caretColor: string;
1225
+ placeholderColor: string;
1226
+ placeholderColorDisabled: string;
1227
+ color: string;
1228
+ colorDisabled: string;
1229
+ colorFocus: string;
1230
+ groupLabelBorder: string;
1231
+ border: string;
1232
+ borderHover: string;
1233
+ borderDisabled: string;
1234
+ borderFocus: string;
1235
+ boxShadowFocus: string;
1236
+ loadingColor: string;
1237
+ loadingColorWarning: string;
1238
+ borderWarning: string;
1239
+ borderHoverWarning: string;
1240
+ colorFocusWarning: string;
1241
+ borderFocusWarning: string;
1242
+ boxShadowFocusWarning: string;
1243
+ caretColorWarning: string;
1244
+ loadingColorError: string;
1245
+ borderError: string;
1246
+ borderHoverError: string;
1247
+ colorFocusError: string;
1248
+ borderFocusError: string;
1249
+ boxShadowFocusError: string;
1250
+ caretColorError: string;
1251
+ clearColor: string;
1252
+ clearColorHover: string;
1253
+ clearColorPressed: string;
1254
+ iconColor: string;
1255
+ iconColorDisabled: string;
1256
+ iconColorHover: string;
1257
+ iconColorPressed: string;
1258
+ suffixTextColor: string;
1259
+ selectionColor: string;
1260
+ }, any>;
1261
+ Select: import("../../_mixins").Theme<"InternalSelection", {
1262
+ paddingTiny: string;
1263
+ paddingSmall: string;
1264
+ paddingMedium: string;
1265
+ paddingLarge: string;
1266
+ paddingHuge: string;
1267
+ clearSizeTiny: string;
1268
+ clearSizeSmall: string;
1269
+ clearSizeMedium: string;
1270
+ clearSizeLarge: string;
1271
+ clearSizeHuge: string;
1272
+ arrowSizeTiny: string;
1273
+ arrowSizeSmall: string;
1274
+ arrowSizeMedium: string;
1275
+ arrowSizeLarge: string;
1276
+ arrowSizeHuge: string;
1277
+ fontSizeTiny: string;
1278
+ fontSizeSmall: string;
1279
+ fontSizeMedium: string;
1280
+ fontSizeLarge: string;
1281
+ fontSizeHuge: string;
1282
+ lineHeightTiny: string;
1283
+ lineHeightSmall: string;
1284
+ lineHeightMedium: string;
1285
+ lineHeightLarge: string;
1286
+ lineHeightHuge: string;
1287
+ heightTiny: string;
1288
+ heightSmall: string;
1289
+ heightMedium: string;
1290
+ heightLarge: string;
1291
+ heightHuge: string;
1292
+ borderRadiusTiny: string;
1293
+ borderRadiusSmall: string;
1294
+ borderRadiusMedium: string;
1295
+ borderRadiusLarge: string;
1296
+ borderRadiusHuge: string;
1297
+ textColor: string;
1298
+ textColorDisabled: string;
1299
+ placeholderColor: string;
1300
+ placeholderColorDisabled: string;
1301
+ color: string;
1302
+ colorFilled: string;
1303
+ colorDisabled: string;
1304
+ colorActive: string;
1305
+ border: string;
1306
+ borderFilled: string;
1307
+ borderHover: string;
1308
+ borderActive: string;
1309
+ borderFocus: string;
1310
+ borderDisabled: string;
1311
+ boxShadowHover: string;
1312
+ boxShadowActive: string;
1313
+ boxShadowFocus: string;
1314
+ caretColor: string;
1315
+ arrowColor: string;
1316
+ arrowColorHover: string;
1317
+ arrowColorDisabled: string;
1318
+ loadingColor: string;
1319
+ borderWarning: string;
1320
+ borderHoverWarning: string;
1321
+ borderActiveWarning: string;
1322
+ borderFocusWarning: string;
1323
+ boxShadowHoverWarning: string;
1324
+ boxShadowActiveWarning: string;
1325
+ boxShadowFocusWarning: string;
1326
+ colorActiveWarning: string;
1327
+ caretColorWarning: string;
1328
+ borderError: string;
1329
+ borderHoverError: string;
1330
+ borderActiveError: string;
1331
+ borderFocusError: string;
1332
+ boxShadowHoverError: string;
1333
+ boxShadowActiveError: string;
1334
+ boxShadowFocusError: string;
1335
+ colorActiveError: string;
1336
+ caretColorError: string;
1337
+ clearColor: string;
1338
+ clearColorHover: string;
1339
+ clearColorPressed: string;
1340
+ caretColorSecondary: string;
1341
+ filterCounterTextColor: string;
1342
+ filterCounterTextColorDisabled: string;
1343
+ arrowColorSecondary: string;
1344
+ clearColorSecondary: string;
1345
+ colorSecondary: string;
1346
+ textColorSecondary: string;
1347
+ borderSecondary: string;
1348
+ arrowColorDisabledSecondary: string;
1349
+ clearColorDisabledSecondary: string;
1350
+ colorDisabledSecondary: string;
1351
+ textColorDisabledSecondary: string;
1352
+ borderDisabledSecondary: string;
1353
+ arrowColorHoverSecondary: string;
1354
+ clearColorHoverSecondary: string;
1355
+ colorHoverSecondary: string;
1356
+ textColorHoverSecondary: string;
1357
+ borderHoverSecondary: string;
1358
+ arrowColorFocusSecondary: string;
1359
+ clearColorFocusSecondary: string;
1360
+ colorFocusSecondary: string;
1361
+ textColorFocusSecondary: string;
1362
+ borderFocusSecondary: string;
1363
+ arrowColorActiveSecondary: string;
1364
+ clearColorActiveSecondary: string;
1365
+ colorActiveSecondary: string;
1366
+ textColorActiveSecondary: string;
1367
+ borderActiveSecondary: string;
1368
+ }, {
1369
+ Popover: import("../../_mixins").Theme<"Popover", {
1370
+ space: string;
1371
+ spaceArrow: string;
1372
+ arrowOffset: string;
1373
+ arrowOffsetVertical: string;
1374
+ arrowHeight: string;
1375
+ padding: string;
1376
+ fontSize: string;
1377
+ borderRadius: string;
1378
+ color: string;
1379
+ dividerColor: string;
1380
+ textColor: string;
1381
+ boxShadow: string;
1382
+ }, any>;
1383
+ }>;
1384
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1385
+ height: string;
1386
+ width: string;
1387
+ borderRadius: string;
1388
+ color: string;
1389
+ colorHover: string;
1390
+ railInsetHorizontalBottom: string;
1391
+ railInsetHorizontalTop: string;
1392
+ railInsetVerticalRight: string;
1393
+ railInsetVerticalLeft: string;
1394
+ railColor: string;
1395
+ }, any>;
1396
+ }>>>;
1397
+ };
1398
+ export type DatePickerV2Props = ExtractPublicPropTypes<typeof datePickerV2Props>;
1399
+ declare const _default: import("vue").DefineComponent<{
1400
+ readonly to: {
1401
+ type: PropType<HTMLElement | string | boolean>;
1402
+ default: undefined;
1403
+ };
1404
+ readonly type: {
1405
+ readonly type: PropType<DatePickerV2Type>;
1406
+ readonly default: "date";
1407
+ };
1408
+ readonly bordered: {
1409
+ readonly type: PropType<boolean | undefined>;
1410
+ readonly default: undefined;
1411
+ };
1412
+ readonly round: BooleanConstructor;
1413
+ readonly clearable: BooleanConstructor;
1414
+ readonly defaultValue: PropType<Value | RangeValue>;
1415
+ readonly disabled: {
1416
+ readonly type: PropType<boolean | undefined>;
1417
+ readonly default: undefined;
1418
+ };
1419
+ readonly placement: {
1420
+ readonly type: PropType<FollowerPlacement>;
1421
+ readonly default: "bottom-start";
1422
+ };
1423
+ readonly value: PropType<Value | RangeValue>;
1424
+ readonly size: PropType<InputSize>;
1425
+ readonly placeholder: StringConstructor;
1426
+ readonly startPlaceholder: StringConstructor;
1427
+ readonly endPlaceholder: StringConstructor;
1428
+ readonly separator: StringConstructor;
1429
+ readonly format: {
1430
+ readonly type: StringConstructor;
1431
+ readonly default: "DD.MM.YYYY";
1432
+ };
1433
+ readonly triggerPreset: {
1434
+ readonly type: PropType<TriggerPreset>;
1435
+ readonly default: "input";
1436
+ };
1437
+ readonly isDateDisabled: PropType<IsDateDisabled>;
1438
+ readonly show: {
1439
+ readonly type: PropType<boolean | undefined>;
1440
+ readonly default: undefined;
1441
+ };
1442
+ readonly status: PropType<FormValidationStatus>;
1443
+ readonly inputReadonly: BooleanConstructor;
1444
+ readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
1445
+ readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
1446
+ readonly 'onUpdate:value': PropType<MaybeArray<OnUpdateValue | OnUpdateRangeValue>>;
1447
+ readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue | OnUpdateRangeValue>>;
1448
+ readonly onFocus: PropType<(e: FocusEvent) => void>;
1449
+ readonly onBlur: PropType<(e: FocusEvent) => void>;
1450
+ readonly theme: PropType<import("../../_mixins").Theme<"DatePickerV2", {
1451
+ panelColor: string;
1452
+ panelBoxShadow: string;
1453
+ panelBorderRadius: string;
1454
+ panelTextColor: string;
1455
+ dividerColor: string;
1456
+ itemTextColor: string;
1457
+ itemTextColorOtherMonth: string;
1458
+ itemTextColorDisabled: string;
1459
+ itemColorHover: string;
1460
+ itemColorActive: string;
1461
+ itemColorIncluded: string;
1462
+ itemTextColorActive: string;
1463
+ itemBorderRadius: string;
1464
+ iconColor: string;
1465
+ iconColorDisabled: string;
1466
+ weekdayTextColor: string;
1467
+ weekendTextColor: string;
1468
+ monthItemHeight: string;
1469
+ monthItemColorHover: string;
1470
+ monthItemColorActive: string;
1471
+ monthItemTextColorActive: string;
1472
+ yearTriggerColor: string;
1473
+ yearTriggerColorHover: string;
1474
+ yearTriggerTextColor: string;
1475
+ currentDateIndicatorColor: string;
1476
+ }, {
1477
+ Button: import("../../_mixins").Theme<"Button", {
1478
+ heightTiny: string;
1479
+ heightSmall: string;
1480
+ heightMedium: string;
1481
+ heightLarge: string;
1482
+ borderRadiusTiny: string;
1483
+ borderRadiusSmall: string;
1484
+ borderRadiusMedium: string;
1485
+ borderRadiusLarge: string;
1486
+ fontSizeTiny: string;
1487
+ fontSizeSmall: string;
1488
+ fontSizeMedium: string;
1489
+ fontSizeLarge: string;
1490
+ opacityDisabled: string;
1491
+ colorOpacitySecondary: string;
1492
+ colorOpacitySecondaryHover: string;
1493
+ colorOpacitySecondaryPressed: string;
1494
+ colorOpacitySecondaryFocus: string;
1495
+ colorSecondary: string;
1496
+ colorSecondaryHover: string;
1497
+ colorSecondaryPressed: string;
1498
+ colorSecondaryFocus: string;
1499
+ colorSecondaryDisabled: string;
1500
+ textColorSecondaryDisabled: string;
1501
+ waveColorSecondary: string;
1502
+ colorTertiary: string;
1503
+ colorTertiaryHover: string;
1504
+ colorTertiaryPressed: string;
1505
+ colorTertiaryFocus: string;
1506
+ colorTertiaryDisalbed: string;
1507
+ waveColorTertiary: string;
1508
+ textColorTextTertiary: string;
1509
+ rippleColorTertiary: string;
1510
+ colorQuaternary: string;
1511
+ colorQuaternaryHover: string;
1512
+ colorQuaternaryPressed: string;
1513
+ colorQuaternaryFocus: string;
1514
+ rippleColorQuaternary: string;
1515
+ waveColorQuaternary: string;
1516
+ color: string;
1517
+ colorHover: string;
1518
+ colorPressed: string;
1519
+ colorFocus: string;
1520
+ colorDisabled: string;
1521
+ textColor: string;
1522
+ textTertiary: string;
1523
+ textColorTertiary: string;
1524
+ textColorHover: string;
1525
+ textColorPressed: string;
1526
+ textColorFocus: string;
1527
+ textColorDisabled: string;
1528
+ textColorText: string;
1529
+ textColorTextHover: string;
1530
+ textColorTextPressed: string;
1531
+ textColorTextFocus: string;
1532
+ textColorTextDisabled: string;
1533
+ textColorGhost: string;
1534
+ textColorGhostHover: string;
1535
+ textColorGhostPressed: string;
1536
+ textColorGhostFocus: string;
1537
+ textColorGhostDisabled: string;
1538
+ border: string;
1539
+ borderHover: string;
1540
+ borderPressed: string;
1541
+ borderFocus: string;
1542
+ borderDisabled: string;
1543
+ rippleColor: string;
1544
+ colorPrimary: string;
1545
+ colorHoverPrimary: string;
1546
+ colorPressedPrimary: string;
1547
+ colorFocusPrimary: string;
1548
+ colorDisabledPrimary: string;
1549
+ waveColorPrimary: string;
1550
+ textColorPrimary: string;
1551
+ textColorHoverPrimary: string;
1552
+ textColorPressedPrimary: string;
1553
+ textColorFocusPrimary: string;
1554
+ textColorDisabledPrimary: string;
1555
+ textColorTextPrimary: string;
1556
+ textColorTextHoverPrimary: string;
1557
+ textColorTextPressedPrimary: string;
1558
+ textColorTextFocusPrimary: string;
1559
+ textColorTextDisabledPrimary: string;
1560
+ textColorGhostPrimary: string;
1561
+ textColorGhostHoverPrimary: string;
1562
+ textColorGhostPressedPrimary: string;
1563
+ textColorGhostFocusPrimary: string;
1564
+ textColorGhostDisabledPrimary: string;
1565
+ borderPrimary: string;
1566
+ borderHoverPrimary: string;
1567
+ borderPressedPrimary: string;
1568
+ borderFocusPrimary: string;
1569
+ borderDisabledPrimary: string;
1570
+ rippleColorPrimary: string;
1571
+ colorInfo: string;
1572
+ colorHoverInfo: string;
1573
+ colorPressedInfo: string;
1574
+ colorFocusInfo: string;
1575
+ colorDisabledInfo: string;
1576
+ textColorInfo: string;
1577
+ textColorHoverInfo: string;
1578
+ textColorPressedInfo: string;
1579
+ textColorFocusInfo: string;
1580
+ textColorDisabledInfo: string;
1581
+ textColorTextInfo: string;
1582
+ textColorTextHoverInfo: string;
1583
+ textColorTextPressedInfo: string;
1584
+ textColorTextFocusInfo: string;
1585
+ textColorTextDisabledInfo: string;
1586
+ textColorGhostInfo: string;
1587
+ textColorGhostHoverInfo: string;
1588
+ textColorGhostPressedInfo: string;
1589
+ textColorGhostFocusInfo: string;
1590
+ textColorGhostDisabledInfo: string;
1591
+ borderInfo: string;
1592
+ borderHoverInfo: string;
1593
+ borderPressedInfo: string;
1594
+ borderFocusInfo: string;
1595
+ borderDisabledInfo: string;
1596
+ rippleColorInfo: string;
1597
+ colorSuccess: string;
1598
+ colorHoverSuccess: string;
1599
+ colorPressedSuccess: string;
1600
+ colorFocusSuccess: string;
1601
+ colorDisabledSuccess: string;
1602
+ textColorSuccess: string;
1603
+ textColorHoverSuccess: string;
1604
+ textColorPressedSuccess: string;
1605
+ textColorFocusSuccess: string;
1606
+ textColorDisabledSuccess: string;
1607
+ textColorTextSuccess: string;
1608
+ textColorTextHoverSuccess: string;
1609
+ textColorTextPressedSuccess: string;
1610
+ textColorTextFocusSuccess: string;
1611
+ textColorTextDisabledSuccess: string;
1612
+ textColorGhostSuccess: string;
1613
+ textColorGhostHoverSuccess: string;
1614
+ textColorGhostPressedSuccess: string;
1615
+ textColorGhostFocusSuccess: string;
1616
+ textColorGhostDisabledSuccess: string;
1617
+ borderSuccess: string;
1618
+ borderHoverSuccess: string;
1619
+ borderPressedSuccess: string;
1620
+ borderFocusSuccess: string;
1621
+ borderDisabledSuccess: string;
1622
+ rippleColorSuccess: string;
1623
+ colorWarning: string;
1624
+ colorHoverWarning: string;
1625
+ colorPressedWarning: string;
1626
+ colorFocusWarning: string;
1627
+ colorDisabledWarning: string;
1628
+ textColorWarning: string;
1629
+ textColorHoverWarning: string;
1630
+ textColorPressedWarning: string;
1631
+ textColorFocusWarning: string;
1632
+ textColorDisabledWarning: string;
1633
+ textColorTextWarning: string;
1634
+ textColorTextHoverWarning: string;
1635
+ textColorTextPressedWarning: string;
1636
+ textColorTextFocusWarning: string;
1637
+ textColorTextDisabledWarning: string;
1638
+ textColorGhostWarning: string;
1639
+ textColorGhostHoverWarning: string;
1640
+ textColorGhostPressedWarning: string;
1641
+ textColorGhostFocusWarning: string;
1642
+ textColorGhostDisabledWarning: string;
1643
+ borderWarning: string;
1644
+ borderHoverWarning: string;
1645
+ borderPressedWarning: string;
1646
+ borderFocusWarning: string;
1647
+ borderDisabledWarning: string;
1648
+ rippleColorWarning: string;
1649
+ colorError: string;
1650
+ colorHoverError: string;
1651
+ colorPressedError: string;
1652
+ colorFocusError: string;
1653
+ colorDisabledError: string;
1654
+ textColorError: string;
1655
+ textColorHoverError: string;
1656
+ textColorPressedError: string;
1657
+ textColorFocusError: string;
1658
+ textColorDisabledError: string;
1659
+ textColorTextError: string;
1660
+ textColorTextHoverError: string;
1661
+ textColorTextPressedError: string;
1662
+ textColorTextFocusError: string;
1663
+ textColorTextDisabledError: string;
1664
+ textColorGhostError: string;
1665
+ textColorGhostHoverError: string;
1666
+ textColorGhostPressedError: string;
1667
+ textColorGhostFocusError: string;
1668
+ textColorGhostDisabledError: string;
1669
+ borderError: string;
1670
+ borderHoverError: string;
1671
+ borderPressedError: string;
1672
+ borderFocusError: string;
1673
+ borderDisabledError: string;
1674
+ rippleColorError: string;
1675
+ waveOpacity: string;
1676
+ fontWeight: string;
1677
+ fontWeightStrong: string;
1678
+ paddingTiny: string;
1679
+ paddingSmall: string;
1680
+ paddingMedium: string;
1681
+ paddingLarge: string;
1682
+ paddingRoundTiny: string;
1683
+ paddingRoundSmall: string;
1684
+ paddingRoundMedium: string;
1685
+ paddingRoundLarge: string;
1686
+ iconMarginTiny: string;
1687
+ iconMarginSmall: string;
1688
+ iconMarginMedium: string;
1689
+ iconMarginLarge: string;
1690
+ iconSizeTiny: string;
1691
+ iconSizeSmall: string;
1692
+ iconSizeMedium: string;
1693
+ iconSizeLarge: string;
1694
+ rippleDuration: string;
1695
+ }, any>;
1696
+ Input: import("../../_mixins").Theme<"Input", {
1697
+ paddingTiny: string;
1698
+ paddingSmall: string;
1699
+ paddingMedium: string;
1700
+ paddingLarge: string;
1701
+ paddingHuge: string;
1702
+ clearSize: string;
1703
+ countTextColorDisabled: string;
1704
+ countTextColor: string;
1705
+ heightTiny: string;
1706
+ heightSmall: string;
1707
+ heightMedium: string;
1708
+ heightLarge: string;
1709
+ heightHuge: string;
1710
+ fontSizeTiny: string;
1711
+ fontSizeSmall: string;
1712
+ fontSizeMedium: string;
1713
+ fontSizeLarge: string;
1714
+ fontSizeHuge: string;
1715
+ lineHeight: string;
1716
+ lineHeightTextarea: string;
1717
+ borderRadius: string;
1718
+ iconSize: string;
1719
+ groupLabelTextColor: string;
1720
+ textColor: string;
1721
+ textColorDisabled: string;
1722
+ textDecorationColor: string;
1723
+ caretColor: string;
1724
+ placeholderColor: string;
1725
+ placeholderColorDisabled: string;
1726
+ color: string;
1727
+ colorDisabled: string;
1728
+ colorFocus: string;
1729
+ groupLabelBorder: string;
1730
+ border: string;
1731
+ borderHover: string;
1732
+ borderDisabled: string;
1733
+ borderFocus: string;
1734
+ boxShadowFocus: string;
1735
+ loadingColor: string;
1736
+ loadingColorWarning: string;
1737
+ borderWarning: string;
1738
+ borderHoverWarning: string;
1739
+ colorFocusWarning: string;
1740
+ borderFocusWarning: string;
1741
+ boxShadowFocusWarning: string;
1742
+ caretColorWarning: string;
1743
+ loadingColorError: string;
1744
+ borderError: string;
1745
+ borderHoverError: string;
1746
+ colorFocusError: string;
1747
+ borderFocusError: string;
1748
+ boxShadowFocusError: string;
1749
+ caretColorError: string;
1750
+ clearColor: string;
1751
+ clearColorHover: string;
1752
+ clearColorPressed: string;
1753
+ iconColor: string;
1754
+ iconColorDisabled: string;
1755
+ iconColorHover: string;
1756
+ iconColorPressed: string;
1757
+ suffixTextColor: string;
1758
+ selectionColor: string;
1759
+ }, any>;
1760
+ Select: import("../../_mixins").Theme<"InternalSelection", {
1761
+ paddingTiny: string;
1762
+ paddingSmall: string;
1763
+ paddingMedium: string;
1764
+ paddingLarge: string;
1765
+ paddingHuge: string;
1766
+ clearSizeTiny: string;
1767
+ clearSizeSmall: string;
1768
+ clearSizeMedium: string;
1769
+ clearSizeLarge: string;
1770
+ clearSizeHuge: string;
1771
+ arrowSizeTiny: string;
1772
+ arrowSizeSmall: string;
1773
+ arrowSizeMedium: string;
1774
+ arrowSizeLarge: string;
1775
+ arrowSizeHuge: string;
1776
+ fontSizeTiny: string;
1777
+ fontSizeSmall: string;
1778
+ fontSizeMedium: string;
1779
+ fontSizeLarge: string;
1780
+ fontSizeHuge: string;
1781
+ lineHeightTiny: string;
1782
+ lineHeightSmall: string;
1783
+ lineHeightMedium: string;
1784
+ lineHeightLarge: string;
1785
+ lineHeightHuge: string;
1786
+ heightTiny: string;
1787
+ heightSmall: string;
1788
+ heightMedium: string;
1789
+ heightLarge: string;
1790
+ heightHuge: string;
1791
+ borderRadiusTiny: string;
1792
+ borderRadiusSmall: string;
1793
+ borderRadiusMedium: string;
1794
+ borderRadiusLarge: string;
1795
+ borderRadiusHuge: string;
1796
+ textColor: string;
1797
+ textColorDisabled: string;
1798
+ placeholderColor: string;
1799
+ placeholderColorDisabled: string;
1800
+ color: string;
1801
+ colorFilled: string;
1802
+ colorDisabled: string;
1803
+ colorActive: string;
1804
+ border: string;
1805
+ borderFilled: string;
1806
+ borderHover: string;
1807
+ borderActive: string;
1808
+ borderFocus: string;
1809
+ borderDisabled: string;
1810
+ boxShadowHover: string;
1811
+ boxShadowActive: string;
1812
+ boxShadowFocus: string;
1813
+ caretColor: string;
1814
+ arrowColor: string;
1815
+ arrowColorHover: string;
1816
+ arrowColorDisabled: string;
1817
+ loadingColor: string;
1818
+ borderWarning: string;
1819
+ borderHoverWarning: string;
1820
+ borderActiveWarning: string;
1821
+ borderFocusWarning: string;
1822
+ boxShadowHoverWarning: string;
1823
+ boxShadowActiveWarning: string;
1824
+ boxShadowFocusWarning: string;
1825
+ colorActiveWarning: string;
1826
+ caretColorWarning: string;
1827
+ borderError: string;
1828
+ borderHoverError: string;
1829
+ borderActiveError: string;
1830
+ borderFocusError: string;
1831
+ boxShadowHoverError: string;
1832
+ boxShadowActiveError: string;
1833
+ boxShadowFocusError: string;
1834
+ colorActiveError: string;
1835
+ caretColorError: string;
1836
+ clearColor: string;
1837
+ clearColorHover: string;
1838
+ clearColorPressed: string;
1839
+ caretColorSecondary: string;
1840
+ filterCounterTextColor: string;
1841
+ filterCounterTextColorDisabled: string;
1842
+ arrowColorSecondary: string;
1843
+ clearColorSecondary: string;
1844
+ colorSecondary: string;
1845
+ textColorSecondary: string;
1846
+ borderSecondary: string;
1847
+ arrowColorDisabledSecondary: string;
1848
+ clearColorDisabledSecondary: string;
1849
+ colorDisabledSecondary: string;
1850
+ textColorDisabledSecondary: string;
1851
+ borderDisabledSecondary: string;
1852
+ arrowColorHoverSecondary: string;
1853
+ clearColorHoverSecondary: string;
1854
+ colorHoverSecondary: string;
1855
+ textColorHoverSecondary: string;
1856
+ borderHoverSecondary: string;
1857
+ arrowColorFocusSecondary: string;
1858
+ clearColorFocusSecondary: string;
1859
+ colorFocusSecondary: string;
1860
+ textColorFocusSecondary: string;
1861
+ borderFocusSecondary: string;
1862
+ arrowColorActiveSecondary: string;
1863
+ clearColorActiveSecondary: string;
1864
+ colorActiveSecondary: string;
1865
+ textColorActiveSecondary: string;
1866
+ borderActiveSecondary: string;
1867
+ }, {
1868
+ Popover: import("../../_mixins").Theme<"Popover", {
1869
+ space: string;
1870
+ spaceArrow: string;
1871
+ arrowOffset: string;
1872
+ arrowOffsetVertical: string;
1873
+ arrowHeight: string;
1874
+ padding: string;
1875
+ fontSize: string;
1876
+ borderRadius: string;
1877
+ color: string;
1878
+ dividerColor: string;
1879
+ textColor: string;
1880
+ boxShadow: string;
1881
+ }, any>;
1882
+ }>;
1883
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1884
+ height: string;
1885
+ width: string;
1886
+ borderRadius: string;
1887
+ color: string;
1888
+ colorHover: string;
1889
+ railInsetHorizontalBottom: string;
1890
+ railInsetHorizontalTop: string;
1891
+ railInsetVerticalRight: string;
1892
+ railInsetVerticalLeft: string;
1893
+ railColor: string;
1894
+ }, any>;
1895
+ }>>;
1896
+ readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePickerV2", {
1897
+ panelColor: string;
1898
+ panelBoxShadow: string;
1899
+ panelBorderRadius: string;
1900
+ panelTextColor: string;
1901
+ dividerColor: string;
1902
+ itemTextColor: string;
1903
+ itemTextColorOtherMonth: string;
1904
+ itemTextColorDisabled: string;
1905
+ itemColorHover: string;
1906
+ itemColorActive: string;
1907
+ itemColorIncluded: string;
1908
+ itemTextColorActive: string;
1909
+ itemBorderRadius: string;
1910
+ iconColor: string;
1911
+ iconColorDisabled: string;
1912
+ weekdayTextColor: string;
1913
+ weekendTextColor: string;
1914
+ monthItemHeight: string;
1915
+ monthItemColorHover: string;
1916
+ monthItemColorActive: string;
1917
+ monthItemTextColorActive: string;
1918
+ yearTriggerColor: string;
1919
+ yearTriggerColorHover: string;
1920
+ yearTriggerTextColor: string;
1921
+ currentDateIndicatorColor: string;
1922
+ }, {
1923
+ Button: import("../../_mixins").Theme<"Button", {
1924
+ heightTiny: string;
1925
+ heightSmall: string;
1926
+ heightMedium: string;
1927
+ heightLarge: string;
1928
+ borderRadiusTiny: string;
1929
+ borderRadiusSmall: string;
1930
+ borderRadiusMedium: string;
1931
+ borderRadiusLarge: string;
1932
+ fontSizeTiny: string;
1933
+ fontSizeSmall: string;
1934
+ fontSizeMedium: string;
1935
+ fontSizeLarge: string;
1936
+ opacityDisabled: string;
1937
+ colorOpacitySecondary: string;
1938
+ colorOpacitySecondaryHover: string;
1939
+ colorOpacitySecondaryPressed: string;
1940
+ colorOpacitySecondaryFocus: string;
1941
+ colorSecondary: string;
1942
+ colorSecondaryHover: string;
1943
+ colorSecondaryPressed: string;
1944
+ colorSecondaryFocus: string;
1945
+ colorSecondaryDisabled: string;
1946
+ textColorSecondaryDisabled: string;
1947
+ waveColorSecondary: string;
1948
+ colorTertiary: string;
1949
+ colorTertiaryHover: string;
1950
+ colorTertiaryPressed: string;
1951
+ colorTertiaryFocus: string;
1952
+ colorTertiaryDisalbed: string;
1953
+ waveColorTertiary: string;
1954
+ textColorTextTertiary: string;
1955
+ rippleColorTertiary: string;
1956
+ colorQuaternary: string;
1957
+ colorQuaternaryHover: string;
1958
+ colorQuaternaryPressed: string;
1959
+ colorQuaternaryFocus: string;
1960
+ rippleColorQuaternary: string;
1961
+ waveColorQuaternary: string;
1962
+ color: string;
1963
+ colorHover: string;
1964
+ colorPressed: string;
1965
+ colorFocus: string;
1966
+ colorDisabled: string;
1967
+ textColor: string;
1968
+ textTertiary: string;
1969
+ textColorTertiary: string;
1970
+ textColorHover: string;
1971
+ textColorPressed: string;
1972
+ textColorFocus: string;
1973
+ textColorDisabled: string;
1974
+ textColorText: string;
1975
+ textColorTextHover: string;
1976
+ textColorTextPressed: string;
1977
+ textColorTextFocus: string;
1978
+ textColorTextDisabled: string;
1979
+ textColorGhost: string;
1980
+ textColorGhostHover: string;
1981
+ textColorGhostPressed: string;
1982
+ textColorGhostFocus: string;
1983
+ textColorGhostDisabled: string;
1984
+ border: string;
1985
+ borderHover: string;
1986
+ borderPressed: string;
1987
+ borderFocus: string;
1988
+ borderDisabled: string;
1989
+ rippleColor: string;
1990
+ colorPrimary: string;
1991
+ colorHoverPrimary: string;
1992
+ colorPressedPrimary: string;
1993
+ colorFocusPrimary: string;
1994
+ colorDisabledPrimary: string;
1995
+ waveColorPrimary: string;
1996
+ textColorPrimary: string;
1997
+ textColorHoverPrimary: string;
1998
+ textColorPressedPrimary: string;
1999
+ textColorFocusPrimary: string;
2000
+ textColorDisabledPrimary: string;
2001
+ textColorTextPrimary: string;
2002
+ textColorTextHoverPrimary: string;
2003
+ textColorTextPressedPrimary: string;
2004
+ textColorTextFocusPrimary: string;
2005
+ textColorTextDisabledPrimary: string;
2006
+ textColorGhostPrimary: string;
2007
+ textColorGhostHoverPrimary: string;
2008
+ textColorGhostPressedPrimary: string;
2009
+ textColorGhostFocusPrimary: string;
2010
+ textColorGhostDisabledPrimary: string;
2011
+ borderPrimary: string;
2012
+ borderHoverPrimary: string;
2013
+ borderPressedPrimary: string;
2014
+ borderFocusPrimary: string;
2015
+ borderDisabledPrimary: string;
2016
+ rippleColorPrimary: string;
2017
+ colorInfo: string;
2018
+ colorHoverInfo: string;
2019
+ colorPressedInfo: string;
2020
+ colorFocusInfo: string;
2021
+ colorDisabledInfo: string;
2022
+ textColorInfo: string;
2023
+ textColorHoverInfo: string;
2024
+ textColorPressedInfo: string;
2025
+ textColorFocusInfo: string;
2026
+ textColorDisabledInfo: string;
2027
+ textColorTextInfo: string;
2028
+ textColorTextHoverInfo: string;
2029
+ textColorTextPressedInfo: string;
2030
+ textColorTextFocusInfo: string;
2031
+ textColorTextDisabledInfo: string;
2032
+ textColorGhostInfo: string;
2033
+ textColorGhostHoverInfo: string;
2034
+ textColorGhostPressedInfo: string;
2035
+ textColorGhostFocusInfo: string;
2036
+ textColorGhostDisabledInfo: string;
2037
+ borderInfo: string;
2038
+ borderHoverInfo: string;
2039
+ borderPressedInfo: string;
2040
+ borderFocusInfo: string;
2041
+ borderDisabledInfo: string;
2042
+ rippleColorInfo: string;
2043
+ colorSuccess: string;
2044
+ colorHoverSuccess: string;
2045
+ colorPressedSuccess: string;
2046
+ colorFocusSuccess: string;
2047
+ colorDisabledSuccess: string;
2048
+ textColorSuccess: string;
2049
+ textColorHoverSuccess: string;
2050
+ textColorPressedSuccess: string;
2051
+ textColorFocusSuccess: string;
2052
+ textColorDisabledSuccess: string;
2053
+ textColorTextSuccess: string;
2054
+ textColorTextHoverSuccess: string;
2055
+ textColorTextPressedSuccess: string;
2056
+ textColorTextFocusSuccess: string;
2057
+ textColorTextDisabledSuccess: string;
2058
+ textColorGhostSuccess: string;
2059
+ textColorGhostHoverSuccess: string;
2060
+ textColorGhostPressedSuccess: string;
2061
+ textColorGhostFocusSuccess: string;
2062
+ textColorGhostDisabledSuccess: string;
2063
+ borderSuccess: string;
2064
+ borderHoverSuccess: string;
2065
+ borderPressedSuccess: string;
2066
+ borderFocusSuccess: string;
2067
+ borderDisabledSuccess: string;
2068
+ rippleColorSuccess: string;
2069
+ colorWarning: string;
2070
+ colorHoverWarning: string;
2071
+ colorPressedWarning: string;
2072
+ colorFocusWarning: string;
2073
+ colorDisabledWarning: string;
2074
+ textColorWarning: string;
2075
+ textColorHoverWarning: string;
2076
+ textColorPressedWarning: string;
2077
+ textColorFocusWarning: string;
2078
+ textColorDisabledWarning: string;
2079
+ textColorTextWarning: string;
2080
+ textColorTextHoverWarning: string;
2081
+ textColorTextPressedWarning: string;
2082
+ textColorTextFocusWarning: string;
2083
+ textColorTextDisabledWarning: string;
2084
+ textColorGhostWarning: string;
2085
+ textColorGhostHoverWarning: string;
2086
+ textColorGhostPressedWarning: string;
2087
+ textColorGhostFocusWarning: string;
2088
+ textColorGhostDisabledWarning: string;
2089
+ borderWarning: string;
2090
+ borderHoverWarning: string;
2091
+ borderPressedWarning: string;
2092
+ borderFocusWarning: string;
2093
+ borderDisabledWarning: string;
2094
+ rippleColorWarning: string;
2095
+ colorError: string;
2096
+ colorHoverError: string;
2097
+ colorPressedError: string;
2098
+ colorFocusError: string;
2099
+ colorDisabledError: string;
2100
+ textColorError: string;
2101
+ textColorHoverError: string;
2102
+ textColorPressedError: string;
2103
+ textColorFocusError: string;
2104
+ textColorDisabledError: string;
2105
+ textColorTextError: string;
2106
+ textColorTextHoverError: string;
2107
+ textColorTextPressedError: string;
2108
+ textColorTextFocusError: string;
2109
+ textColorTextDisabledError: string;
2110
+ textColorGhostError: string;
2111
+ textColorGhostHoverError: string;
2112
+ textColorGhostPressedError: string;
2113
+ textColorGhostFocusError: string;
2114
+ textColorGhostDisabledError: string;
2115
+ borderError: string;
2116
+ borderHoverError: string;
2117
+ borderPressedError: string;
2118
+ borderFocusError: string;
2119
+ borderDisabledError: string;
2120
+ rippleColorError: string;
2121
+ waveOpacity: string;
2122
+ fontWeight: string;
2123
+ fontWeightStrong: string;
2124
+ paddingTiny: string;
2125
+ paddingSmall: string;
2126
+ paddingMedium: string;
2127
+ paddingLarge: string;
2128
+ paddingRoundTiny: string;
2129
+ paddingRoundSmall: string;
2130
+ paddingRoundMedium: string;
2131
+ paddingRoundLarge: string;
2132
+ iconMarginTiny: string;
2133
+ iconMarginSmall: string;
2134
+ iconMarginMedium: string;
2135
+ iconMarginLarge: string;
2136
+ iconSizeTiny: string;
2137
+ iconSizeSmall: string;
2138
+ iconSizeMedium: string;
2139
+ iconSizeLarge: string;
2140
+ rippleDuration: string;
2141
+ }, any>;
2142
+ Input: import("../../_mixins").Theme<"Input", {
2143
+ paddingTiny: string;
2144
+ paddingSmall: string;
2145
+ paddingMedium: string;
2146
+ paddingLarge: string;
2147
+ paddingHuge: string;
2148
+ clearSize: string;
2149
+ countTextColorDisabled: string;
2150
+ countTextColor: string;
2151
+ heightTiny: string;
2152
+ heightSmall: string;
2153
+ heightMedium: string;
2154
+ heightLarge: string;
2155
+ heightHuge: string;
2156
+ fontSizeTiny: string;
2157
+ fontSizeSmall: string;
2158
+ fontSizeMedium: string;
2159
+ fontSizeLarge: string;
2160
+ fontSizeHuge: string;
2161
+ lineHeight: string;
2162
+ lineHeightTextarea: string;
2163
+ borderRadius: string;
2164
+ iconSize: string;
2165
+ groupLabelTextColor: string;
2166
+ textColor: string;
2167
+ textColorDisabled: string;
2168
+ textDecorationColor: string;
2169
+ caretColor: string;
2170
+ placeholderColor: string;
2171
+ placeholderColorDisabled: string;
2172
+ color: string;
2173
+ colorDisabled: string;
2174
+ colorFocus: string;
2175
+ groupLabelBorder: string;
2176
+ border: string;
2177
+ borderHover: string;
2178
+ borderDisabled: string;
2179
+ borderFocus: string;
2180
+ boxShadowFocus: string;
2181
+ loadingColor: string;
2182
+ loadingColorWarning: string;
2183
+ borderWarning: string;
2184
+ borderHoverWarning: string;
2185
+ colorFocusWarning: string;
2186
+ borderFocusWarning: string;
2187
+ boxShadowFocusWarning: string;
2188
+ caretColorWarning: string;
2189
+ loadingColorError: string;
2190
+ borderError: string;
2191
+ borderHoverError: string;
2192
+ colorFocusError: string;
2193
+ borderFocusError: string;
2194
+ boxShadowFocusError: string;
2195
+ caretColorError: string;
2196
+ clearColor: string;
2197
+ clearColorHover: string;
2198
+ clearColorPressed: string;
2199
+ iconColor: string;
2200
+ iconColorDisabled: string;
2201
+ iconColorHover: string;
2202
+ iconColorPressed: string;
2203
+ suffixTextColor: string;
2204
+ selectionColor: string;
2205
+ }, any>;
2206
+ Select: import("../../_mixins").Theme<"InternalSelection", {
2207
+ paddingTiny: string;
2208
+ paddingSmall: string;
2209
+ paddingMedium: string;
2210
+ paddingLarge: string;
2211
+ paddingHuge: string;
2212
+ clearSizeTiny: string;
2213
+ clearSizeSmall: string;
2214
+ clearSizeMedium: string;
2215
+ clearSizeLarge: string;
2216
+ clearSizeHuge: string;
2217
+ arrowSizeTiny: string;
2218
+ arrowSizeSmall: string;
2219
+ arrowSizeMedium: string;
2220
+ arrowSizeLarge: string;
2221
+ arrowSizeHuge: string;
2222
+ fontSizeTiny: string;
2223
+ fontSizeSmall: string;
2224
+ fontSizeMedium: string;
2225
+ fontSizeLarge: string;
2226
+ fontSizeHuge: string;
2227
+ lineHeightTiny: string;
2228
+ lineHeightSmall: string;
2229
+ lineHeightMedium: string;
2230
+ lineHeightLarge: string;
2231
+ lineHeightHuge: string;
2232
+ heightTiny: string;
2233
+ heightSmall: string;
2234
+ heightMedium: string;
2235
+ heightLarge: string;
2236
+ heightHuge: string;
2237
+ borderRadiusTiny: string;
2238
+ borderRadiusSmall: string;
2239
+ borderRadiusMedium: string;
2240
+ borderRadiusLarge: string;
2241
+ borderRadiusHuge: string;
2242
+ textColor: string;
2243
+ textColorDisabled: string;
2244
+ placeholderColor: string;
2245
+ placeholderColorDisabled: string;
2246
+ color: string;
2247
+ colorFilled: string;
2248
+ colorDisabled: string;
2249
+ colorActive: string;
2250
+ border: string;
2251
+ borderFilled: string;
2252
+ borderHover: string;
2253
+ borderActive: string;
2254
+ borderFocus: string;
2255
+ borderDisabled: string;
2256
+ boxShadowHover: string;
2257
+ boxShadowActive: string;
2258
+ boxShadowFocus: string;
2259
+ caretColor: string;
2260
+ arrowColor: string;
2261
+ arrowColorHover: string;
2262
+ arrowColorDisabled: string;
2263
+ loadingColor: string;
2264
+ borderWarning: string;
2265
+ borderHoverWarning: string;
2266
+ borderActiveWarning: string;
2267
+ borderFocusWarning: string;
2268
+ boxShadowHoverWarning: string;
2269
+ boxShadowActiveWarning: string;
2270
+ boxShadowFocusWarning: string;
2271
+ colorActiveWarning: string;
2272
+ caretColorWarning: string;
2273
+ borderError: string;
2274
+ borderHoverError: string;
2275
+ borderActiveError: string;
2276
+ borderFocusError: string;
2277
+ boxShadowHoverError: string;
2278
+ boxShadowActiveError: string;
2279
+ boxShadowFocusError: string;
2280
+ colorActiveError: string;
2281
+ caretColorError: string;
2282
+ clearColor: string;
2283
+ clearColorHover: string;
2284
+ clearColorPressed: string;
2285
+ caretColorSecondary: string;
2286
+ filterCounterTextColor: string;
2287
+ filterCounterTextColorDisabled: string;
2288
+ arrowColorSecondary: string;
2289
+ clearColorSecondary: string;
2290
+ colorSecondary: string;
2291
+ textColorSecondary: string;
2292
+ borderSecondary: string;
2293
+ arrowColorDisabledSecondary: string;
2294
+ clearColorDisabledSecondary: string;
2295
+ colorDisabledSecondary: string;
2296
+ textColorDisabledSecondary: string;
2297
+ borderDisabledSecondary: string;
2298
+ arrowColorHoverSecondary: string;
2299
+ clearColorHoverSecondary: string;
2300
+ colorHoverSecondary: string;
2301
+ textColorHoverSecondary: string;
2302
+ borderHoverSecondary: string;
2303
+ arrowColorFocusSecondary: string;
2304
+ clearColorFocusSecondary: string;
2305
+ colorFocusSecondary: string;
2306
+ textColorFocusSecondary: string;
2307
+ borderFocusSecondary: string;
2308
+ arrowColorActiveSecondary: string;
2309
+ clearColorActiveSecondary: string;
2310
+ colorActiveSecondary: string;
2311
+ textColorActiveSecondary: string;
2312
+ borderActiveSecondary: string;
2313
+ }, {
2314
+ Popover: import("../../_mixins").Theme<"Popover", {
2315
+ space: string;
2316
+ spaceArrow: string;
2317
+ arrowOffset: string;
2318
+ arrowOffsetVertical: string;
2319
+ arrowHeight: string;
2320
+ padding: string;
2321
+ fontSize: string;
2322
+ borderRadius: string;
2323
+ color: string;
2324
+ dividerColor: string;
2325
+ textColor: string;
2326
+ boxShadow: string;
2327
+ }, any>;
2328
+ }>;
2329
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2330
+ height: string;
2331
+ width: string;
2332
+ borderRadius: string;
2333
+ color: string;
2334
+ colorHover: string;
2335
+ railInsetHorizontalBottom: string;
2336
+ railInsetHorizontalTop: string;
2337
+ railInsetVerticalRight: string;
2338
+ railInsetVerticalLeft: string;
2339
+ railColor: string;
2340
+ }, any>;
2341
+ }>>>;
2342
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePickerV2", {
2343
+ panelColor: string;
2344
+ panelBoxShadow: string;
2345
+ panelBorderRadius: string;
2346
+ panelTextColor: string;
2347
+ dividerColor: string;
2348
+ itemTextColor: string;
2349
+ itemTextColorOtherMonth: string;
2350
+ itemTextColorDisabled: string;
2351
+ itemColorHover: string;
2352
+ itemColorActive: string;
2353
+ itemColorIncluded: string;
2354
+ itemTextColorActive: string;
2355
+ itemBorderRadius: string;
2356
+ iconColor: string;
2357
+ iconColorDisabled: string;
2358
+ weekdayTextColor: string;
2359
+ weekendTextColor: string;
2360
+ monthItemHeight: string;
2361
+ monthItemColorHover: string;
2362
+ monthItemColorActive: string;
2363
+ monthItemTextColorActive: string;
2364
+ yearTriggerColor: string;
2365
+ yearTriggerColorHover: string;
2366
+ yearTriggerTextColor: string;
2367
+ currentDateIndicatorColor: string;
2368
+ }, {
2369
+ Button: import("../../_mixins").Theme<"Button", {
2370
+ heightTiny: string;
2371
+ heightSmall: string;
2372
+ heightMedium: string;
2373
+ heightLarge: string;
2374
+ borderRadiusTiny: string;
2375
+ borderRadiusSmall: string;
2376
+ borderRadiusMedium: string;
2377
+ borderRadiusLarge: string;
2378
+ fontSizeTiny: string;
2379
+ fontSizeSmall: string;
2380
+ fontSizeMedium: string;
2381
+ fontSizeLarge: string;
2382
+ opacityDisabled: string;
2383
+ colorOpacitySecondary: string;
2384
+ colorOpacitySecondaryHover: string;
2385
+ colorOpacitySecondaryPressed: string;
2386
+ colorOpacitySecondaryFocus: string;
2387
+ colorSecondary: string;
2388
+ colorSecondaryHover: string;
2389
+ colorSecondaryPressed: string;
2390
+ colorSecondaryFocus: string;
2391
+ colorSecondaryDisabled: string;
2392
+ textColorSecondaryDisabled: string;
2393
+ waveColorSecondary: string;
2394
+ colorTertiary: string;
2395
+ colorTertiaryHover: string;
2396
+ colorTertiaryPressed: string;
2397
+ colorTertiaryFocus: string;
2398
+ colorTertiaryDisalbed: string;
2399
+ waveColorTertiary: string;
2400
+ textColorTextTertiary: string;
2401
+ rippleColorTertiary: string;
2402
+ colorQuaternary: string;
2403
+ colorQuaternaryHover: string;
2404
+ colorQuaternaryPressed: string;
2405
+ colorQuaternaryFocus: string;
2406
+ rippleColorQuaternary: string;
2407
+ waveColorQuaternary: string;
2408
+ color: string;
2409
+ colorHover: string;
2410
+ colorPressed: string;
2411
+ colorFocus: string;
2412
+ colorDisabled: string;
2413
+ textColor: string;
2414
+ textTertiary: string;
2415
+ textColorTertiary: string;
2416
+ textColorHover: string;
2417
+ textColorPressed: string;
2418
+ textColorFocus: string;
2419
+ textColorDisabled: string;
2420
+ textColorText: string;
2421
+ textColorTextHover: string;
2422
+ textColorTextPressed: string;
2423
+ textColorTextFocus: string;
2424
+ textColorTextDisabled: string;
2425
+ textColorGhost: string;
2426
+ textColorGhostHover: string;
2427
+ textColorGhostPressed: string;
2428
+ textColorGhostFocus: string;
2429
+ textColorGhostDisabled: string;
2430
+ border: string;
2431
+ borderHover: string;
2432
+ borderPressed: string;
2433
+ borderFocus: string;
2434
+ borderDisabled: string;
2435
+ rippleColor: string;
2436
+ colorPrimary: string;
2437
+ colorHoverPrimary: string;
2438
+ colorPressedPrimary: string;
2439
+ colorFocusPrimary: string;
2440
+ colorDisabledPrimary: string;
2441
+ waveColorPrimary: string;
2442
+ textColorPrimary: string;
2443
+ textColorHoverPrimary: string;
2444
+ textColorPressedPrimary: string;
2445
+ textColorFocusPrimary: string;
2446
+ textColorDisabledPrimary: string;
2447
+ textColorTextPrimary: string;
2448
+ textColorTextHoverPrimary: string;
2449
+ textColorTextPressedPrimary: string;
2450
+ textColorTextFocusPrimary: string;
2451
+ textColorTextDisabledPrimary: string;
2452
+ textColorGhostPrimary: string;
2453
+ textColorGhostHoverPrimary: string;
2454
+ textColorGhostPressedPrimary: string;
2455
+ textColorGhostFocusPrimary: string;
2456
+ textColorGhostDisabledPrimary: string;
2457
+ borderPrimary: string;
2458
+ borderHoverPrimary: string;
2459
+ borderPressedPrimary: string;
2460
+ borderFocusPrimary: string;
2461
+ borderDisabledPrimary: string;
2462
+ rippleColorPrimary: string;
2463
+ colorInfo: string;
2464
+ colorHoverInfo: string;
2465
+ colorPressedInfo: string;
2466
+ colorFocusInfo: string;
2467
+ colorDisabledInfo: string;
2468
+ textColorInfo: string;
2469
+ textColorHoverInfo: string;
2470
+ textColorPressedInfo: string;
2471
+ textColorFocusInfo: string;
2472
+ textColorDisabledInfo: string;
2473
+ textColorTextInfo: string;
2474
+ textColorTextHoverInfo: string;
2475
+ textColorTextPressedInfo: string;
2476
+ textColorTextFocusInfo: string;
2477
+ textColorTextDisabledInfo: string;
2478
+ textColorGhostInfo: string;
2479
+ textColorGhostHoverInfo: string;
2480
+ textColorGhostPressedInfo: string;
2481
+ textColorGhostFocusInfo: string;
2482
+ textColorGhostDisabledInfo: string;
2483
+ borderInfo: string;
2484
+ borderHoverInfo: string;
2485
+ borderPressedInfo: string;
2486
+ borderFocusInfo: string;
2487
+ borderDisabledInfo: string;
2488
+ rippleColorInfo: string;
2489
+ colorSuccess: string;
2490
+ colorHoverSuccess: string;
2491
+ colorPressedSuccess: string;
2492
+ colorFocusSuccess: string;
2493
+ colorDisabledSuccess: string;
2494
+ textColorSuccess: string;
2495
+ textColorHoverSuccess: string;
2496
+ textColorPressedSuccess: string;
2497
+ textColorFocusSuccess: string;
2498
+ textColorDisabledSuccess: string;
2499
+ textColorTextSuccess: string;
2500
+ textColorTextHoverSuccess: string;
2501
+ textColorTextPressedSuccess: string;
2502
+ textColorTextFocusSuccess: string;
2503
+ textColorTextDisabledSuccess: string;
2504
+ textColorGhostSuccess: string;
2505
+ textColorGhostHoverSuccess: string;
2506
+ textColorGhostPressedSuccess: string;
2507
+ textColorGhostFocusSuccess: string;
2508
+ textColorGhostDisabledSuccess: string;
2509
+ borderSuccess: string;
2510
+ borderHoverSuccess: string;
2511
+ borderPressedSuccess: string;
2512
+ borderFocusSuccess: string;
2513
+ borderDisabledSuccess: string;
2514
+ rippleColorSuccess: string;
2515
+ colorWarning: string;
2516
+ colorHoverWarning: string;
2517
+ colorPressedWarning: string;
2518
+ colorFocusWarning: string;
2519
+ colorDisabledWarning: string;
2520
+ textColorWarning: string;
2521
+ textColorHoverWarning: string;
2522
+ textColorPressedWarning: string;
2523
+ textColorFocusWarning: string;
2524
+ textColorDisabledWarning: string;
2525
+ textColorTextWarning: string;
2526
+ textColorTextHoverWarning: string;
2527
+ textColorTextPressedWarning: string;
2528
+ textColorTextFocusWarning: string;
2529
+ textColorTextDisabledWarning: string;
2530
+ textColorGhostWarning: string;
2531
+ textColorGhostHoverWarning: string;
2532
+ textColorGhostPressedWarning: string;
2533
+ textColorGhostFocusWarning: string;
2534
+ textColorGhostDisabledWarning: string;
2535
+ borderWarning: string;
2536
+ borderHoverWarning: string;
2537
+ borderPressedWarning: string;
2538
+ borderFocusWarning: string;
2539
+ borderDisabledWarning: string;
2540
+ rippleColorWarning: string;
2541
+ colorError: string;
2542
+ colorHoverError: string;
2543
+ colorPressedError: string;
2544
+ colorFocusError: string;
2545
+ colorDisabledError: string;
2546
+ textColorError: string;
2547
+ textColorHoverError: string;
2548
+ textColorPressedError: string;
2549
+ textColorFocusError: string;
2550
+ textColorDisabledError: string;
2551
+ textColorTextError: string;
2552
+ textColorTextHoverError: string;
2553
+ textColorTextPressedError: string;
2554
+ textColorTextFocusError: string;
2555
+ textColorTextDisabledError: string;
2556
+ textColorGhostError: string;
2557
+ textColorGhostHoverError: string;
2558
+ textColorGhostPressedError: string;
2559
+ textColorGhostFocusError: string;
2560
+ textColorGhostDisabledError: string;
2561
+ borderError: string;
2562
+ borderHoverError: string;
2563
+ borderPressedError: string;
2564
+ borderFocusError: string;
2565
+ borderDisabledError: string;
2566
+ rippleColorError: string;
2567
+ waveOpacity: string;
2568
+ fontWeight: string;
2569
+ fontWeightStrong: string;
2570
+ paddingTiny: string;
2571
+ paddingSmall: string;
2572
+ paddingMedium: string;
2573
+ paddingLarge: string;
2574
+ paddingRoundTiny: string;
2575
+ paddingRoundSmall: string;
2576
+ paddingRoundMedium: string;
2577
+ paddingRoundLarge: string;
2578
+ iconMarginTiny: string;
2579
+ iconMarginSmall: string;
2580
+ iconMarginMedium: string;
2581
+ iconMarginLarge: string;
2582
+ iconSizeTiny: string;
2583
+ iconSizeSmall: string;
2584
+ iconSizeMedium: string;
2585
+ iconSizeLarge: string;
2586
+ rippleDuration: string;
2587
+ }, any>;
2588
+ Input: import("../../_mixins").Theme<"Input", {
2589
+ paddingTiny: string;
2590
+ paddingSmall: string;
2591
+ paddingMedium: string;
2592
+ paddingLarge: string;
2593
+ paddingHuge: string;
2594
+ clearSize: string;
2595
+ countTextColorDisabled: string;
2596
+ countTextColor: string;
2597
+ heightTiny: string;
2598
+ heightSmall: string;
2599
+ heightMedium: string;
2600
+ heightLarge: string;
2601
+ heightHuge: string;
2602
+ fontSizeTiny: string;
2603
+ fontSizeSmall: string;
2604
+ fontSizeMedium: string;
2605
+ fontSizeLarge: string;
2606
+ fontSizeHuge: string;
2607
+ lineHeight: string;
2608
+ lineHeightTextarea: string;
2609
+ borderRadius: string;
2610
+ iconSize: string;
2611
+ groupLabelTextColor: string;
2612
+ textColor: string;
2613
+ textColorDisabled: string;
2614
+ textDecorationColor: string;
2615
+ caretColor: string;
2616
+ placeholderColor: string;
2617
+ placeholderColorDisabled: string;
2618
+ color: string;
2619
+ colorDisabled: string;
2620
+ colorFocus: string;
2621
+ groupLabelBorder: string;
2622
+ border: string;
2623
+ borderHover: string;
2624
+ borderDisabled: string;
2625
+ borderFocus: string;
2626
+ boxShadowFocus: string;
2627
+ loadingColor: string;
2628
+ loadingColorWarning: string;
2629
+ borderWarning: string;
2630
+ borderHoverWarning: string;
2631
+ colorFocusWarning: string;
2632
+ borderFocusWarning: string;
2633
+ boxShadowFocusWarning: string;
2634
+ caretColorWarning: string;
2635
+ loadingColorError: string;
2636
+ borderError: string;
2637
+ borderHoverError: string;
2638
+ colorFocusError: string;
2639
+ borderFocusError: string;
2640
+ boxShadowFocusError: string;
2641
+ caretColorError: string;
2642
+ clearColor: string;
2643
+ clearColorHover: string;
2644
+ clearColorPressed: string;
2645
+ iconColor: string;
2646
+ iconColorDisabled: string;
2647
+ iconColorHover: string;
2648
+ iconColorPressed: string;
2649
+ suffixTextColor: string;
2650
+ selectionColor: string;
2651
+ }, any>;
2652
+ Select: import("../../_mixins").Theme<"InternalSelection", {
2653
+ paddingTiny: string;
2654
+ paddingSmall: string;
2655
+ paddingMedium: string;
2656
+ paddingLarge: string;
2657
+ paddingHuge: string;
2658
+ clearSizeTiny: string;
2659
+ clearSizeSmall: string;
2660
+ clearSizeMedium: string;
2661
+ clearSizeLarge: string;
2662
+ clearSizeHuge: string;
2663
+ arrowSizeTiny: string;
2664
+ arrowSizeSmall: string;
2665
+ arrowSizeMedium: string;
2666
+ arrowSizeLarge: string;
2667
+ arrowSizeHuge: string;
2668
+ fontSizeTiny: string;
2669
+ fontSizeSmall: string;
2670
+ fontSizeMedium: string;
2671
+ fontSizeLarge: string;
2672
+ fontSizeHuge: string;
2673
+ lineHeightTiny: string;
2674
+ lineHeightSmall: string;
2675
+ lineHeightMedium: string;
2676
+ lineHeightLarge: string;
2677
+ lineHeightHuge: string;
2678
+ heightTiny: string;
2679
+ heightSmall: string;
2680
+ heightMedium: string;
2681
+ heightLarge: string;
2682
+ heightHuge: string;
2683
+ borderRadiusTiny: string;
2684
+ borderRadiusSmall: string;
2685
+ borderRadiusMedium: string;
2686
+ borderRadiusLarge: string;
2687
+ borderRadiusHuge: string;
2688
+ textColor: string;
2689
+ textColorDisabled: string;
2690
+ placeholderColor: string;
2691
+ placeholderColorDisabled: string;
2692
+ color: string;
2693
+ colorFilled: string;
2694
+ colorDisabled: string;
2695
+ colorActive: string;
2696
+ border: string;
2697
+ borderFilled: string;
2698
+ borderHover: string;
2699
+ borderActive: string;
2700
+ borderFocus: string;
2701
+ borderDisabled: string;
2702
+ boxShadowHover: string;
2703
+ boxShadowActive: string;
2704
+ boxShadowFocus: string;
2705
+ caretColor: string;
2706
+ arrowColor: string;
2707
+ arrowColorHover: string;
2708
+ arrowColorDisabled: string;
2709
+ loadingColor: string;
2710
+ borderWarning: string;
2711
+ borderHoverWarning: string;
2712
+ borderActiveWarning: string;
2713
+ borderFocusWarning: string;
2714
+ boxShadowHoverWarning: string;
2715
+ boxShadowActiveWarning: string;
2716
+ boxShadowFocusWarning: string;
2717
+ colorActiveWarning: string;
2718
+ caretColorWarning: string;
2719
+ borderError: string;
2720
+ borderHoverError: string;
2721
+ borderActiveError: string;
2722
+ borderFocusError: string;
2723
+ boxShadowHoverError: string;
2724
+ boxShadowActiveError: string;
2725
+ boxShadowFocusError: string;
2726
+ colorActiveError: string;
2727
+ caretColorError: string;
2728
+ clearColor: string;
2729
+ clearColorHover: string;
2730
+ clearColorPressed: string;
2731
+ caretColorSecondary: string;
2732
+ filterCounterTextColor: string;
2733
+ filterCounterTextColorDisabled: string;
2734
+ arrowColorSecondary: string;
2735
+ clearColorSecondary: string;
2736
+ colorSecondary: string;
2737
+ textColorSecondary: string;
2738
+ borderSecondary: string;
2739
+ arrowColorDisabledSecondary: string;
2740
+ clearColorDisabledSecondary: string;
2741
+ colorDisabledSecondary: string;
2742
+ textColorDisabledSecondary: string;
2743
+ borderDisabledSecondary: string;
2744
+ arrowColorHoverSecondary: string;
2745
+ clearColorHoverSecondary: string;
2746
+ colorHoverSecondary: string;
2747
+ textColorHoverSecondary: string;
2748
+ borderHoverSecondary: string;
2749
+ arrowColorFocusSecondary: string;
2750
+ clearColorFocusSecondary: string;
2751
+ colorFocusSecondary: string;
2752
+ textColorFocusSecondary: string;
2753
+ borderFocusSecondary: string;
2754
+ arrowColorActiveSecondary: string;
2755
+ clearColorActiveSecondary: string;
2756
+ colorActiveSecondary: string;
2757
+ textColorActiveSecondary: string;
2758
+ borderActiveSecondary: string;
2759
+ }, {
2760
+ Popover: import("../../_mixins").Theme<"Popover", {
2761
+ space: string;
2762
+ spaceArrow: string;
2763
+ arrowOffset: string;
2764
+ arrowOffsetVertical: string;
2765
+ arrowHeight: string;
2766
+ padding: string;
2767
+ fontSize: string;
2768
+ borderRadius: string;
2769
+ color: string;
2770
+ dividerColor: string;
2771
+ textColor: string;
2772
+ boxShadow: string;
2773
+ }, any>;
2774
+ }>;
2775
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
2776
+ height: string;
2777
+ width: string;
2778
+ borderRadius: string;
2779
+ color: string;
2780
+ colorHover: string;
2781
+ railInsetHorizontalBottom: string;
2782
+ railInsetHorizontalTop: string;
2783
+ railInsetVerticalRight: string;
2784
+ railInsetVerticalLeft: string;
2785
+ railColor: string;
2786
+ }, any>;
2787
+ }>>>;
2788
+ }, {
2789
+ mergedClsPrefix: import("vue").Ref<string>;
2790
+ mergedBordered: import("vue").ComputedRef<boolean>;
2791
+ mergedDisabled: import("vue").ComputedRef<boolean>;
2792
+ mergedStatus: import("vue").ComputedRef<FormValidationStatus | undefined>;
2793
+ mergedSize: import("vue").ComputedRef<"small" | "tiny" | "medium" | "large" | "huge">;
2794
+ mergedShow: import("vue").ComputedRef<boolean>;
2795
+ mergedValue: import("vue").ComputedRef<number | [number, number] | null>;
2796
+ isRange: import("vue").ComputedRef<boolean>;
2797
+ displayValue: import("vue").ComputedRef<string>;
2798
+ displayStartValue: import("vue").ComputedRef<string>;
2799
+ displayEndValue: import("vue").ComputedRef<string>;
2800
+ namespace: import("vue").ComputedRef<string | undefined>;
2801
+ adjustedTo: import("vue").ComputedRef<string | HTMLElement>;
2802
+ isMounted: Readonly<import("vue").Ref<boolean>>;
2803
+ triggerElRef: import("vue").Ref<HTMLElement | null>;
2804
+ inputInstRef: import("vue").Ref<{
2805
+ wrapperElRef: HTMLElement | null;
2806
+ textareaElRef: HTMLTextAreaElement | null;
2807
+ inputElRef: HTMLInputElement | null;
2808
+ isCompositing: boolean;
2809
+ blur: () => void;
2810
+ focus: () => void;
2811
+ select: () => void;
2812
+ activate: () => void;
2813
+ deactivate: () => void;
2814
+ scrollTo: (options: ScrollToOptions) => void;
2815
+ } | null>;
2816
+ panelRef: any;
2817
+ mergedTheme: import("vue").ComputedRef<{
2818
+ common: import("../..").ThemeCommonVars;
2819
+ self: {
2820
+ panelColor: string;
2821
+ panelBoxShadow: string;
2822
+ panelBorderRadius: string;
2823
+ panelTextColor: string;
2824
+ dividerColor: string;
2825
+ itemTextColor: string;
2826
+ itemTextColorOtherMonth: string;
2827
+ itemTextColorDisabled: string;
2828
+ itemColorHover: string;
2829
+ itemColorActive: string;
2830
+ itemColorIncluded: string;
2831
+ itemTextColorActive: string;
2832
+ itemBorderRadius: string;
2833
+ iconColor: string;
2834
+ iconColorDisabled: string;
2835
+ weekdayTextColor: string;
2836
+ weekendTextColor: string;
2837
+ monthItemHeight: string;
2838
+ monthItemColorHover: string;
2839
+ monthItemColorActive: string;
2840
+ monthItemTextColorActive: string;
2841
+ yearTriggerColor: string;
2842
+ yearTriggerColorHover: string;
2843
+ yearTriggerTextColor: string;
2844
+ currentDateIndicatorColor: string;
2845
+ };
2846
+ peers: {
2847
+ Button: import("../../_mixins").Theme<"Button", {
2848
+ heightTiny: string;
2849
+ heightSmall: string;
2850
+ heightMedium: string;
2851
+ heightLarge: string;
2852
+ borderRadiusTiny: string;
2853
+ borderRadiusSmall: string;
2854
+ borderRadiusMedium: string;
2855
+ borderRadiusLarge: string;
2856
+ fontSizeTiny: string;
2857
+ fontSizeSmall: string;
2858
+ fontSizeMedium: string;
2859
+ fontSizeLarge: string;
2860
+ opacityDisabled: string;
2861
+ colorOpacitySecondary: string;
2862
+ colorOpacitySecondaryHover: string;
2863
+ colorOpacitySecondaryPressed: string;
2864
+ colorOpacitySecondaryFocus: string;
2865
+ colorSecondary: string;
2866
+ colorSecondaryHover: string;
2867
+ colorSecondaryPressed: string;
2868
+ colorSecondaryFocus: string;
2869
+ colorSecondaryDisabled: string;
2870
+ textColorSecondaryDisabled: string;
2871
+ waveColorSecondary: string;
2872
+ colorTertiary: string;
2873
+ colorTertiaryHover: string;
2874
+ colorTertiaryPressed: string;
2875
+ colorTertiaryFocus: string;
2876
+ colorTertiaryDisalbed: string;
2877
+ waveColorTertiary: string;
2878
+ textColorTextTertiary: string;
2879
+ rippleColorTertiary: string;
2880
+ colorQuaternary: string;
2881
+ colorQuaternaryHover: string;
2882
+ colorQuaternaryPressed: string;
2883
+ colorQuaternaryFocus: string;
2884
+ rippleColorQuaternary: string;
2885
+ waveColorQuaternary: string;
2886
+ color: string;
2887
+ colorHover: string;
2888
+ colorPressed: string;
2889
+ colorFocus: string;
2890
+ colorDisabled: string;
2891
+ textColor: string;
2892
+ textTertiary: string;
2893
+ textColorTertiary: string;
2894
+ textColorHover: string;
2895
+ textColorPressed: string;
2896
+ textColorFocus: string;
2897
+ textColorDisabled: string;
2898
+ textColorText: string;
2899
+ textColorTextHover: string;
2900
+ textColorTextPressed: string;
2901
+ textColorTextFocus: string;
2902
+ textColorTextDisabled: string;
2903
+ textColorGhost: string;
2904
+ textColorGhostHover: string;
2905
+ textColorGhostPressed: string;
2906
+ textColorGhostFocus: string;
2907
+ textColorGhostDisabled: string;
2908
+ border: string;
2909
+ borderHover: string;
2910
+ borderPressed: string;
2911
+ borderFocus: string;
2912
+ borderDisabled: string;
2913
+ rippleColor: string;
2914
+ colorPrimary: string;
2915
+ colorHoverPrimary: string;
2916
+ colorPressedPrimary: string;
2917
+ colorFocusPrimary: string;
2918
+ colorDisabledPrimary: string;
2919
+ waveColorPrimary: string;
2920
+ textColorPrimary: string;
2921
+ textColorHoverPrimary: string;
2922
+ textColorPressedPrimary: string;
2923
+ textColorFocusPrimary: string;
2924
+ textColorDisabledPrimary: string;
2925
+ textColorTextPrimary: string;
2926
+ textColorTextHoverPrimary: string;
2927
+ textColorTextPressedPrimary: string;
2928
+ textColorTextFocusPrimary: string;
2929
+ textColorTextDisabledPrimary: string;
2930
+ textColorGhostPrimary: string;
2931
+ textColorGhostHoverPrimary: string;
2932
+ textColorGhostPressedPrimary: string;
2933
+ textColorGhostFocusPrimary: string;
2934
+ textColorGhostDisabledPrimary: string;
2935
+ borderPrimary: string;
2936
+ borderHoverPrimary: string;
2937
+ borderPressedPrimary: string;
2938
+ borderFocusPrimary: string;
2939
+ borderDisabledPrimary: string;
2940
+ rippleColorPrimary: string;
2941
+ colorInfo: string;
2942
+ colorHoverInfo: string;
2943
+ colorPressedInfo: string;
2944
+ colorFocusInfo: string;
2945
+ colorDisabledInfo: string;
2946
+ textColorInfo: string;
2947
+ textColorHoverInfo: string;
2948
+ textColorPressedInfo: string;
2949
+ textColorFocusInfo: string;
2950
+ textColorDisabledInfo: string;
2951
+ textColorTextInfo: string;
2952
+ textColorTextHoverInfo: string;
2953
+ textColorTextPressedInfo: string;
2954
+ textColorTextFocusInfo: string;
2955
+ textColorTextDisabledInfo: string;
2956
+ textColorGhostInfo: string;
2957
+ textColorGhostHoverInfo: string;
2958
+ textColorGhostPressedInfo: string;
2959
+ textColorGhostFocusInfo: string;
2960
+ textColorGhostDisabledInfo: string;
2961
+ borderInfo: string;
2962
+ borderHoverInfo: string;
2963
+ borderPressedInfo: string;
2964
+ borderFocusInfo: string;
2965
+ borderDisabledInfo: string;
2966
+ rippleColorInfo: string;
2967
+ colorSuccess: string;
2968
+ colorHoverSuccess: string;
2969
+ colorPressedSuccess: string;
2970
+ colorFocusSuccess: string;
2971
+ colorDisabledSuccess: string;
2972
+ textColorSuccess: string;
2973
+ textColorHoverSuccess: string;
2974
+ textColorPressedSuccess: string;
2975
+ textColorFocusSuccess: string;
2976
+ textColorDisabledSuccess: string;
2977
+ textColorTextSuccess: string;
2978
+ textColorTextHoverSuccess: string;
2979
+ textColorTextPressedSuccess: string;
2980
+ textColorTextFocusSuccess: string;
2981
+ textColorTextDisabledSuccess: string;
2982
+ textColorGhostSuccess: string;
2983
+ textColorGhostHoverSuccess: string;
2984
+ textColorGhostPressedSuccess: string;
2985
+ textColorGhostFocusSuccess: string;
2986
+ textColorGhostDisabledSuccess: string;
2987
+ borderSuccess: string;
2988
+ borderHoverSuccess: string;
2989
+ borderPressedSuccess: string;
2990
+ borderFocusSuccess: string;
2991
+ borderDisabledSuccess: string;
2992
+ rippleColorSuccess: string;
2993
+ colorWarning: string;
2994
+ colorHoverWarning: string;
2995
+ colorPressedWarning: string;
2996
+ colorFocusWarning: string;
2997
+ colorDisabledWarning: string;
2998
+ textColorWarning: string;
2999
+ textColorHoverWarning: string;
3000
+ textColorPressedWarning: string;
3001
+ textColorFocusWarning: string;
3002
+ textColorDisabledWarning: string;
3003
+ textColorTextWarning: string;
3004
+ textColorTextHoverWarning: string;
3005
+ textColorTextPressedWarning: string;
3006
+ textColorTextFocusWarning: string;
3007
+ textColorTextDisabledWarning: string;
3008
+ textColorGhostWarning: string;
3009
+ textColorGhostHoverWarning: string;
3010
+ textColorGhostPressedWarning: string;
3011
+ textColorGhostFocusWarning: string;
3012
+ textColorGhostDisabledWarning: string;
3013
+ borderWarning: string;
3014
+ borderHoverWarning: string;
3015
+ borderPressedWarning: string;
3016
+ borderFocusWarning: string;
3017
+ borderDisabledWarning: string;
3018
+ rippleColorWarning: string;
3019
+ colorError: string;
3020
+ colorHoverError: string;
3021
+ colorPressedError: string;
3022
+ colorFocusError: string;
3023
+ colorDisabledError: string;
3024
+ textColorError: string;
3025
+ textColorHoverError: string;
3026
+ textColorPressedError: string;
3027
+ textColorFocusError: string;
3028
+ textColorDisabledError: string;
3029
+ textColorTextError: string;
3030
+ textColorTextHoverError: string;
3031
+ textColorTextPressedError: string;
3032
+ textColorTextFocusError: string;
3033
+ textColorTextDisabledError: string;
3034
+ textColorGhostError: string;
3035
+ textColorGhostHoverError: string;
3036
+ textColorGhostPressedError: string;
3037
+ textColorGhostFocusError: string;
3038
+ textColorGhostDisabledError: string;
3039
+ borderError: string;
3040
+ borderHoverError: string;
3041
+ borderPressedError: string;
3042
+ borderFocusError: string;
3043
+ borderDisabledError: string;
3044
+ rippleColorError: string;
3045
+ waveOpacity: string;
3046
+ fontWeight: string;
3047
+ fontWeightStrong: string;
3048
+ paddingTiny: string;
3049
+ paddingSmall: string;
3050
+ paddingMedium: string;
3051
+ paddingLarge: string;
3052
+ paddingRoundTiny: string;
3053
+ paddingRoundSmall: string;
3054
+ paddingRoundMedium: string;
3055
+ paddingRoundLarge: string;
3056
+ iconMarginTiny: string;
3057
+ iconMarginSmall: string;
3058
+ iconMarginMedium: string;
3059
+ iconMarginLarge: string;
3060
+ iconSizeTiny: string;
3061
+ iconSizeSmall: string;
3062
+ iconSizeMedium: string;
3063
+ iconSizeLarge: string;
3064
+ rippleDuration: string;
3065
+ }, any>;
3066
+ Input: import("../../_mixins").Theme<"Input", {
3067
+ paddingTiny: string;
3068
+ paddingSmall: string;
3069
+ paddingMedium: string;
3070
+ paddingLarge: string;
3071
+ paddingHuge: string;
3072
+ clearSize: string;
3073
+ countTextColorDisabled: string;
3074
+ countTextColor: string;
3075
+ heightTiny: string;
3076
+ heightSmall: string;
3077
+ heightMedium: string;
3078
+ heightLarge: string;
3079
+ heightHuge: string;
3080
+ fontSizeTiny: string;
3081
+ fontSizeSmall: string;
3082
+ fontSizeMedium: string;
3083
+ fontSizeLarge: string;
3084
+ fontSizeHuge: string;
3085
+ lineHeight: string;
3086
+ lineHeightTextarea: string;
3087
+ borderRadius: string;
3088
+ iconSize: string;
3089
+ groupLabelTextColor: string;
3090
+ textColor: string;
3091
+ textColorDisabled: string;
3092
+ textDecorationColor: string;
3093
+ caretColor: string;
3094
+ placeholderColor: string;
3095
+ placeholderColorDisabled: string;
3096
+ color: string;
3097
+ colorDisabled: string;
3098
+ colorFocus: string;
3099
+ groupLabelBorder: string;
3100
+ border: string;
3101
+ borderHover: string;
3102
+ borderDisabled: string;
3103
+ borderFocus: string;
3104
+ boxShadowFocus: string;
3105
+ loadingColor: string;
3106
+ loadingColorWarning: string;
3107
+ borderWarning: string;
3108
+ borderHoverWarning: string;
3109
+ colorFocusWarning: string;
3110
+ borderFocusWarning: string;
3111
+ boxShadowFocusWarning: string;
3112
+ caretColorWarning: string;
3113
+ loadingColorError: string;
3114
+ borderError: string;
3115
+ borderHoverError: string;
3116
+ colorFocusError: string;
3117
+ borderFocusError: string;
3118
+ boxShadowFocusError: string;
3119
+ caretColorError: string;
3120
+ clearColor: string;
3121
+ clearColorHover: string;
3122
+ clearColorPressed: string;
3123
+ iconColor: string;
3124
+ iconColorDisabled: string;
3125
+ iconColorHover: string;
3126
+ iconColorPressed: string;
3127
+ suffixTextColor: string;
3128
+ selectionColor: string;
3129
+ }, any>;
3130
+ Select: import("../../_mixins").Theme<"InternalSelection", {
3131
+ paddingTiny: string;
3132
+ paddingSmall: string;
3133
+ paddingMedium: string;
3134
+ paddingLarge: string;
3135
+ paddingHuge: string;
3136
+ clearSizeTiny: string;
3137
+ clearSizeSmall: string;
3138
+ clearSizeMedium: string;
3139
+ clearSizeLarge: string;
3140
+ clearSizeHuge: string;
3141
+ arrowSizeTiny: string;
3142
+ arrowSizeSmall: string;
3143
+ arrowSizeMedium: string;
3144
+ arrowSizeLarge: string;
3145
+ arrowSizeHuge: string;
3146
+ fontSizeTiny: string;
3147
+ fontSizeSmall: string;
3148
+ fontSizeMedium: string;
3149
+ fontSizeLarge: string;
3150
+ fontSizeHuge: string;
3151
+ lineHeightTiny: string;
3152
+ lineHeightSmall: string;
3153
+ lineHeightMedium: string;
3154
+ lineHeightLarge: string;
3155
+ lineHeightHuge: string;
3156
+ heightTiny: string;
3157
+ heightSmall: string;
3158
+ heightMedium: string;
3159
+ heightLarge: string;
3160
+ heightHuge: string;
3161
+ borderRadiusTiny: string;
3162
+ borderRadiusSmall: string;
3163
+ borderRadiusMedium: string;
3164
+ borderRadiusLarge: string;
3165
+ borderRadiusHuge: string;
3166
+ textColor: string;
3167
+ textColorDisabled: string;
3168
+ placeholderColor: string;
3169
+ placeholderColorDisabled: string;
3170
+ color: string;
3171
+ colorFilled: string;
3172
+ colorDisabled: string;
3173
+ colorActive: string;
3174
+ border: string;
3175
+ borderFilled: string;
3176
+ borderHover: string;
3177
+ borderActive: string;
3178
+ borderFocus: string;
3179
+ borderDisabled: string;
3180
+ boxShadowHover: string;
3181
+ boxShadowActive: string;
3182
+ boxShadowFocus: string;
3183
+ caretColor: string;
3184
+ arrowColor: string;
3185
+ arrowColorHover: string;
3186
+ arrowColorDisabled: string;
3187
+ loadingColor: string;
3188
+ borderWarning: string;
3189
+ borderHoverWarning: string;
3190
+ borderActiveWarning: string;
3191
+ borderFocusWarning: string;
3192
+ boxShadowHoverWarning: string;
3193
+ boxShadowActiveWarning: string;
3194
+ boxShadowFocusWarning: string;
3195
+ colorActiveWarning: string;
3196
+ caretColorWarning: string;
3197
+ borderError: string;
3198
+ borderHoverError: string;
3199
+ borderActiveError: string;
3200
+ borderFocusError: string;
3201
+ boxShadowHoverError: string;
3202
+ boxShadowActiveError: string;
3203
+ boxShadowFocusError: string;
3204
+ colorActiveError: string;
3205
+ caretColorError: string;
3206
+ clearColor: string;
3207
+ clearColorHover: string;
3208
+ clearColorPressed: string;
3209
+ caretColorSecondary: string;
3210
+ filterCounterTextColor: string;
3211
+ filterCounterTextColorDisabled: string;
3212
+ arrowColorSecondary: string;
3213
+ clearColorSecondary: string;
3214
+ colorSecondary: string;
3215
+ textColorSecondary: string;
3216
+ borderSecondary: string;
3217
+ arrowColorDisabledSecondary: string;
3218
+ clearColorDisabledSecondary: string;
3219
+ colorDisabledSecondary: string;
3220
+ textColorDisabledSecondary: string;
3221
+ borderDisabledSecondary: string;
3222
+ arrowColorHoverSecondary: string;
3223
+ clearColorHoverSecondary: string;
3224
+ colorHoverSecondary: string;
3225
+ textColorHoverSecondary: string;
3226
+ borderHoverSecondary: string;
3227
+ arrowColorFocusSecondary: string;
3228
+ clearColorFocusSecondary: string;
3229
+ colorFocusSecondary: string;
3230
+ textColorFocusSecondary: string;
3231
+ borderFocusSecondary: string;
3232
+ arrowColorActiveSecondary: string;
3233
+ clearColorActiveSecondary: string;
3234
+ colorActiveSecondary: string;
3235
+ textColorActiveSecondary: string;
3236
+ borderActiveSecondary: string;
3237
+ }, {
3238
+ Popover: import("../../_mixins").Theme<"Popover", {
3239
+ space: string;
3240
+ spaceArrow: string;
3241
+ arrowOffset: string;
3242
+ arrowOffsetVertical: string;
3243
+ arrowHeight: string;
3244
+ padding: string;
3245
+ fontSize: string;
3246
+ borderRadius: string;
3247
+ color: string;
3248
+ dividerColor: string;
3249
+ textColor: string;
3250
+ boxShadow: string;
3251
+ }, any>;
3252
+ }>;
3253
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3254
+ height: string;
3255
+ width: string;
3256
+ borderRadius: string;
3257
+ color: string;
3258
+ colorHover: string;
3259
+ railInsetHorizontalBottom: string;
3260
+ railInsetHorizontalTop: string;
3261
+ railInsetVerticalRight: string;
3262
+ railInsetVerticalLeft: string;
3263
+ railColor: string;
3264
+ }, any>;
3265
+ };
3266
+ peerOverrides: {
3267
+ Button?: {
3268
+ peers?: {
3269
+ [x: string]: any;
3270
+ } | undefined;
3271
+ } | undefined;
3272
+ Input?: {
3273
+ peers?: {
3274
+ [x: string]: any;
3275
+ } | undefined;
3276
+ } | undefined;
3277
+ Select?: {
3278
+ peers?: {
3279
+ Popover?: import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Popover", {
3280
+ space: string;
3281
+ spaceArrow: string;
3282
+ arrowOffset: string;
3283
+ arrowOffsetVertical: string;
3284
+ arrowHeight: string;
3285
+ padding: string;
3286
+ fontSize: string;
3287
+ borderRadius: string;
3288
+ color: string;
3289
+ dividerColor: string;
3290
+ textColor: string;
3291
+ boxShadow: string;
3292
+ }, any>> | undefined;
3293
+ } | undefined;
3294
+ } | undefined;
3295
+ Scrollbar?: {
3296
+ peers?: {
3297
+ [x: string]: any;
3298
+ } | undefined;
3299
+ } | undefined;
3300
+ };
3301
+ }>;
3302
+ displayYear: import("vue").Ref<number>;
3303
+ displayMonth: import("vue").Ref<number>;
3304
+ showYearDropdown: import("vue").Ref<boolean>;
3305
+ currentRangeValue: import("vue").ComputedRef<RangeValue>;
3306
+ isSelecting: import("vue").Ref<boolean>;
3307
+ handleTriggerClick: () => void;
3308
+ handleInputFocus: (e: FocusEvent) => void;
3309
+ handleInputBlur: (e: FocusEvent) => void;
3310
+ handleClickOutside: (e: MouseEvent) => void;
3311
+ handleClear: () => void;
3312
+ handleSelect: (value: Value | RangeValue) => void;
3313
+ handleKeydown: (e: KeyboardEvent) => void;
3314
+ handleInputUpdateValue: (value: string | [string, string]) => void;
3315
+ handleSingleUpdateValue: (v: string) => void;
3316
+ handleRangeUpdateValue: (v: [string, string]) => void;
3317
+ handleDateClick: (ts: number) => void;
3318
+ handleDateMouseEnter: (ts: number) => void;
3319
+ handleMonthSelect: (year: number, month: number) => void;
3320
+ handleYearSelect: (year: number) => void;
3321
+ handleToggleYearDropdown: () => void;
3322
+ handleMonthScroll: (year: number) => void;
3323
+ mergedIsDateDisabledSingle: (ts: number) => boolean;
3324
+ mergedIsDateDisabledRange: (ts: number) => boolean;
3325
+ triggerDisplayValue: import("vue").ComputedRef<string>;
3326
+ hasDisplayValue: import("vue").ComputedRef<boolean>;
3327
+ singlePlaceholder: import("vue").ComputedRef<string>;
3328
+ startPlaceholder: import("vue").ComputedRef<string>;
3329
+ endPlaceholder: import("vue").ComputedRef<string>;
3330
+ singleInputValue: import("vue").Ref<string>;
3331
+ rangeStartInputValue: import("vue").Ref<string>;
3332
+ rangeEndInputValue: import("vue").Ref<string>;
3333
+ cssVars: import("vue").ComputedRef<{
3334
+ '--u-bezier': any;
3335
+ '--u-panel-color': any;
3336
+ '--u-panel-box-shadow': any;
3337
+ '--u-panel-border-radius': any;
3338
+ '--u-panel-text-color': any;
3339
+ '--u-divider-color': any;
3340
+ '--u-item-text-color': any;
3341
+ '--u-item-text-color-other-month': any;
3342
+ '--u-item-text-color-disabled': any;
3343
+ '--u-item-color-hover': any;
3344
+ '--u-item-color-active': any;
3345
+ '--u-item-text-color-active': any;
3346
+ '--u-item-color-included': any;
3347
+ '--u-item-border-radius': any;
3348
+ '--u-icon-color': any;
3349
+ '--u-icon-color-disabled': any;
3350
+ '--u-weekday-text-color': any;
3351
+ '--u-weekend-text-color': any;
3352
+ '--u-month-item-height': any;
3353
+ '--u-month-item-color-hover': any;
3354
+ '--u-month-item-color-active': any;
3355
+ '--u-month-item-text-color-active': any;
3356
+ '--u-year-trigger-color': any;
3357
+ '--u-year-trigger-color-hover': any;
3358
+ '--u-year-trigger-text-color': any;
3359
+ '--u-current-date-indicator-color': any;
3360
+ }> | undefined;
3361
+ themeClass: import("vue").Ref<string> | undefined;
3362
+ onRender: (() => void) | undefined;
3363
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
3364
+ readonly to: {
3365
+ type: PropType<HTMLElement | string | boolean>;
3366
+ default: undefined;
3367
+ };
3368
+ readonly type: {
3369
+ readonly type: PropType<DatePickerV2Type>;
3370
+ readonly default: "date";
3371
+ };
3372
+ readonly bordered: {
3373
+ readonly type: PropType<boolean | undefined>;
3374
+ readonly default: undefined;
3375
+ };
3376
+ readonly round: BooleanConstructor;
3377
+ readonly clearable: BooleanConstructor;
3378
+ readonly defaultValue: PropType<Value | RangeValue>;
3379
+ readonly disabled: {
3380
+ readonly type: PropType<boolean | undefined>;
3381
+ readonly default: undefined;
3382
+ };
3383
+ readonly placement: {
3384
+ readonly type: PropType<FollowerPlacement>;
3385
+ readonly default: "bottom-start";
3386
+ };
3387
+ readonly value: PropType<Value | RangeValue>;
3388
+ readonly size: PropType<InputSize>;
3389
+ readonly placeholder: StringConstructor;
3390
+ readonly startPlaceholder: StringConstructor;
3391
+ readonly endPlaceholder: StringConstructor;
3392
+ readonly separator: StringConstructor;
3393
+ readonly format: {
3394
+ readonly type: StringConstructor;
3395
+ readonly default: "DD.MM.YYYY";
3396
+ };
3397
+ readonly triggerPreset: {
3398
+ readonly type: PropType<TriggerPreset>;
3399
+ readonly default: "input";
3400
+ };
3401
+ readonly isDateDisabled: PropType<IsDateDisabled>;
3402
+ readonly show: {
3403
+ readonly type: PropType<boolean | undefined>;
3404
+ readonly default: undefined;
3405
+ };
3406
+ readonly status: PropType<FormValidationStatus>;
3407
+ readonly inputReadonly: BooleanConstructor;
3408
+ readonly 'onUpdate:show': PropType<MaybeArray<(show: boolean) => void>>;
3409
+ readonly onUpdateShow: PropType<MaybeArray<(show: boolean) => void>>;
3410
+ readonly 'onUpdate:value': PropType<MaybeArray<OnUpdateValue | OnUpdateRangeValue>>;
3411
+ readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue | OnUpdateRangeValue>>;
3412
+ readonly onFocus: PropType<(e: FocusEvent) => void>;
3413
+ readonly onBlur: PropType<(e: FocusEvent) => void>;
3414
+ readonly theme: PropType<import("../../_mixins").Theme<"DatePickerV2", {
3415
+ panelColor: string;
3416
+ panelBoxShadow: string;
3417
+ panelBorderRadius: string;
3418
+ panelTextColor: string;
3419
+ dividerColor: string;
3420
+ itemTextColor: string;
3421
+ itemTextColorOtherMonth: string;
3422
+ itemTextColorDisabled: string;
3423
+ itemColorHover: string;
3424
+ itemColorActive: string;
3425
+ itemColorIncluded: string;
3426
+ itemTextColorActive: string;
3427
+ itemBorderRadius: string;
3428
+ iconColor: string;
3429
+ iconColorDisabled: string;
3430
+ weekdayTextColor: string;
3431
+ weekendTextColor: string;
3432
+ monthItemHeight: string;
3433
+ monthItemColorHover: string;
3434
+ monthItemColorActive: string;
3435
+ monthItemTextColorActive: string;
3436
+ yearTriggerColor: string;
3437
+ yearTriggerColorHover: string;
3438
+ yearTriggerTextColor: string;
3439
+ currentDateIndicatorColor: string;
3440
+ }, {
3441
+ Button: import("../../_mixins").Theme<"Button", {
3442
+ heightTiny: string;
3443
+ heightSmall: string;
3444
+ heightMedium: string;
3445
+ heightLarge: string;
3446
+ borderRadiusTiny: string;
3447
+ borderRadiusSmall: string;
3448
+ borderRadiusMedium: string;
3449
+ borderRadiusLarge: string;
3450
+ fontSizeTiny: string;
3451
+ fontSizeSmall: string;
3452
+ fontSizeMedium: string;
3453
+ fontSizeLarge: string;
3454
+ opacityDisabled: string;
3455
+ colorOpacitySecondary: string;
3456
+ colorOpacitySecondaryHover: string;
3457
+ colorOpacitySecondaryPressed: string;
3458
+ colorOpacitySecondaryFocus: string;
3459
+ colorSecondary: string;
3460
+ colorSecondaryHover: string;
3461
+ colorSecondaryPressed: string;
3462
+ colorSecondaryFocus: string;
3463
+ colorSecondaryDisabled: string;
3464
+ textColorSecondaryDisabled: string;
3465
+ waveColorSecondary: string;
3466
+ colorTertiary: string;
3467
+ colorTertiaryHover: string;
3468
+ colorTertiaryPressed: string;
3469
+ colorTertiaryFocus: string;
3470
+ colorTertiaryDisalbed: string;
3471
+ waveColorTertiary: string;
3472
+ textColorTextTertiary: string;
3473
+ rippleColorTertiary: string;
3474
+ colorQuaternary: string;
3475
+ colorQuaternaryHover: string;
3476
+ colorQuaternaryPressed: string;
3477
+ colorQuaternaryFocus: string;
3478
+ rippleColorQuaternary: string;
3479
+ waveColorQuaternary: string;
3480
+ color: string;
3481
+ colorHover: string;
3482
+ colorPressed: string;
3483
+ colorFocus: string;
3484
+ colorDisabled: string;
3485
+ textColor: string;
3486
+ textTertiary: string;
3487
+ textColorTertiary: string;
3488
+ textColorHover: string;
3489
+ textColorPressed: string;
3490
+ textColorFocus: string;
3491
+ textColorDisabled: string;
3492
+ textColorText: string;
3493
+ textColorTextHover: string;
3494
+ textColorTextPressed: string;
3495
+ textColorTextFocus: string;
3496
+ textColorTextDisabled: string;
3497
+ textColorGhost: string;
3498
+ textColorGhostHover: string;
3499
+ textColorGhostPressed: string;
3500
+ textColorGhostFocus: string;
3501
+ textColorGhostDisabled: string;
3502
+ border: string;
3503
+ borderHover: string;
3504
+ borderPressed: string;
3505
+ borderFocus: string;
3506
+ borderDisabled: string;
3507
+ rippleColor: string;
3508
+ colorPrimary: string;
3509
+ colorHoverPrimary: string;
3510
+ colorPressedPrimary: string;
3511
+ colorFocusPrimary: string;
3512
+ colorDisabledPrimary: string;
3513
+ waveColorPrimary: string;
3514
+ textColorPrimary: string;
3515
+ textColorHoverPrimary: string;
3516
+ textColorPressedPrimary: string;
3517
+ textColorFocusPrimary: string;
3518
+ textColorDisabledPrimary: string;
3519
+ textColorTextPrimary: string;
3520
+ textColorTextHoverPrimary: string;
3521
+ textColorTextPressedPrimary: string;
3522
+ textColorTextFocusPrimary: string;
3523
+ textColorTextDisabledPrimary: string;
3524
+ textColorGhostPrimary: string;
3525
+ textColorGhostHoverPrimary: string;
3526
+ textColorGhostPressedPrimary: string;
3527
+ textColorGhostFocusPrimary: string;
3528
+ textColorGhostDisabledPrimary: string;
3529
+ borderPrimary: string;
3530
+ borderHoverPrimary: string;
3531
+ borderPressedPrimary: string;
3532
+ borderFocusPrimary: string;
3533
+ borderDisabledPrimary: string;
3534
+ rippleColorPrimary: string;
3535
+ colorInfo: string;
3536
+ colorHoverInfo: string;
3537
+ colorPressedInfo: string;
3538
+ colorFocusInfo: string;
3539
+ colorDisabledInfo: string;
3540
+ textColorInfo: string;
3541
+ textColorHoverInfo: string;
3542
+ textColorPressedInfo: string;
3543
+ textColorFocusInfo: string;
3544
+ textColorDisabledInfo: string;
3545
+ textColorTextInfo: string;
3546
+ textColorTextHoverInfo: string;
3547
+ textColorTextPressedInfo: string;
3548
+ textColorTextFocusInfo: string;
3549
+ textColorTextDisabledInfo: string;
3550
+ textColorGhostInfo: string;
3551
+ textColorGhostHoverInfo: string;
3552
+ textColorGhostPressedInfo: string;
3553
+ textColorGhostFocusInfo: string;
3554
+ textColorGhostDisabledInfo: string;
3555
+ borderInfo: string;
3556
+ borderHoverInfo: string;
3557
+ borderPressedInfo: string;
3558
+ borderFocusInfo: string;
3559
+ borderDisabledInfo: string;
3560
+ rippleColorInfo: string;
3561
+ colorSuccess: string;
3562
+ colorHoverSuccess: string;
3563
+ colorPressedSuccess: string;
3564
+ colorFocusSuccess: string;
3565
+ colorDisabledSuccess: string;
3566
+ textColorSuccess: string;
3567
+ textColorHoverSuccess: string;
3568
+ textColorPressedSuccess: string;
3569
+ textColorFocusSuccess: string;
3570
+ textColorDisabledSuccess: string;
3571
+ textColorTextSuccess: string;
3572
+ textColorTextHoverSuccess: string;
3573
+ textColorTextPressedSuccess: string;
3574
+ textColorTextFocusSuccess: string;
3575
+ textColorTextDisabledSuccess: string;
3576
+ textColorGhostSuccess: string;
3577
+ textColorGhostHoverSuccess: string;
3578
+ textColorGhostPressedSuccess: string;
3579
+ textColorGhostFocusSuccess: string;
3580
+ textColorGhostDisabledSuccess: string;
3581
+ borderSuccess: string;
3582
+ borderHoverSuccess: string;
3583
+ borderPressedSuccess: string;
3584
+ borderFocusSuccess: string;
3585
+ borderDisabledSuccess: string;
3586
+ rippleColorSuccess: string;
3587
+ colorWarning: string;
3588
+ colorHoverWarning: string;
3589
+ colorPressedWarning: string;
3590
+ colorFocusWarning: string;
3591
+ colorDisabledWarning: string;
3592
+ textColorWarning: string;
3593
+ textColorHoverWarning: string;
3594
+ textColorPressedWarning: string;
3595
+ textColorFocusWarning: string;
3596
+ textColorDisabledWarning: string;
3597
+ textColorTextWarning: string;
3598
+ textColorTextHoverWarning: string;
3599
+ textColorTextPressedWarning: string;
3600
+ textColorTextFocusWarning: string;
3601
+ textColorTextDisabledWarning: string;
3602
+ textColorGhostWarning: string;
3603
+ textColorGhostHoverWarning: string;
3604
+ textColorGhostPressedWarning: string;
3605
+ textColorGhostFocusWarning: string;
3606
+ textColorGhostDisabledWarning: string;
3607
+ borderWarning: string;
3608
+ borderHoverWarning: string;
3609
+ borderPressedWarning: string;
3610
+ borderFocusWarning: string;
3611
+ borderDisabledWarning: string;
3612
+ rippleColorWarning: string;
3613
+ colorError: string;
3614
+ colorHoverError: string;
3615
+ colorPressedError: string;
3616
+ colorFocusError: string;
3617
+ colorDisabledError: string;
3618
+ textColorError: string;
3619
+ textColorHoverError: string;
3620
+ textColorPressedError: string;
3621
+ textColorFocusError: string;
3622
+ textColorDisabledError: string;
3623
+ textColorTextError: string;
3624
+ textColorTextHoverError: string;
3625
+ textColorTextPressedError: string;
3626
+ textColorTextFocusError: string;
3627
+ textColorTextDisabledError: string;
3628
+ textColorGhostError: string;
3629
+ textColorGhostHoverError: string;
3630
+ textColorGhostPressedError: string;
3631
+ textColorGhostFocusError: string;
3632
+ textColorGhostDisabledError: string;
3633
+ borderError: string;
3634
+ borderHoverError: string;
3635
+ borderPressedError: string;
3636
+ borderFocusError: string;
3637
+ borderDisabledError: string;
3638
+ rippleColorError: string;
3639
+ waveOpacity: string;
3640
+ fontWeight: string;
3641
+ fontWeightStrong: string;
3642
+ paddingTiny: string;
3643
+ paddingSmall: string;
3644
+ paddingMedium: string;
3645
+ paddingLarge: string;
3646
+ paddingRoundTiny: string;
3647
+ paddingRoundSmall: string;
3648
+ paddingRoundMedium: string;
3649
+ paddingRoundLarge: string;
3650
+ iconMarginTiny: string;
3651
+ iconMarginSmall: string;
3652
+ iconMarginMedium: string;
3653
+ iconMarginLarge: string;
3654
+ iconSizeTiny: string;
3655
+ iconSizeSmall: string;
3656
+ iconSizeMedium: string;
3657
+ iconSizeLarge: string;
3658
+ rippleDuration: string;
3659
+ }, any>;
3660
+ Input: import("../../_mixins").Theme<"Input", {
3661
+ paddingTiny: string;
3662
+ paddingSmall: string;
3663
+ paddingMedium: string;
3664
+ paddingLarge: string;
3665
+ paddingHuge: string;
3666
+ clearSize: string;
3667
+ countTextColorDisabled: string;
3668
+ countTextColor: string;
3669
+ heightTiny: string;
3670
+ heightSmall: string;
3671
+ heightMedium: string;
3672
+ heightLarge: string;
3673
+ heightHuge: string;
3674
+ fontSizeTiny: string;
3675
+ fontSizeSmall: string;
3676
+ fontSizeMedium: string;
3677
+ fontSizeLarge: string;
3678
+ fontSizeHuge: string;
3679
+ lineHeight: string;
3680
+ lineHeightTextarea: string;
3681
+ borderRadius: string;
3682
+ iconSize: string;
3683
+ groupLabelTextColor: string;
3684
+ textColor: string;
3685
+ textColorDisabled: string;
3686
+ textDecorationColor: string;
3687
+ caretColor: string;
3688
+ placeholderColor: string;
3689
+ placeholderColorDisabled: string;
3690
+ color: string;
3691
+ colorDisabled: string;
3692
+ colorFocus: string;
3693
+ groupLabelBorder: string;
3694
+ border: string;
3695
+ borderHover: string;
3696
+ borderDisabled: string;
3697
+ borderFocus: string;
3698
+ boxShadowFocus: string;
3699
+ loadingColor: string;
3700
+ loadingColorWarning: string;
3701
+ borderWarning: string;
3702
+ borderHoverWarning: string;
3703
+ colorFocusWarning: string;
3704
+ borderFocusWarning: string;
3705
+ boxShadowFocusWarning: string;
3706
+ caretColorWarning: string;
3707
+ loadingColorError: string;
3708
+ borderError: string;
3709
+ borderHoverError: string;
3710
+ colorFocusError: string;
3711
+ borderFocusError: string;
3712
+ boxShadowFocusError: string;
3713
+ caretColorError: string;
3714
+ clearColor: string;
3715
+ clearColorHover: string;
3716
+ clearColorPressed: string;
3717
+ iconColor: string;
3718
+ iconColorDisabled: string;
3719
+ iconColorHover: string;
3720
+ iconColorPressed: string;
3721
+ suffixTextColor: string;
3722
+ selectionColor: string;
3723
+ }, any>;
3724
+ Select: import("../../_mixins").Theme<"InternalSelection", {
3725
+ paddingTiny: string;
3726
+ paddingSmall: string;
3727
+ paddingMedium: string;
3728
+ paddingLarge: string;
3729
+ paddingHuge: string;
3730
+ clearSizeTiny: string;
3731
+ clearSizeSmall: string;
3732
+ clearSizeMedium: string;
3733
+ clearSizeLarge: string;
3734
+ clearSizeHuge: string;
3735
+ arrowSizeTiny: string;
3736
+ arrowSizeSmall: string;
3737
+ arrowSizeMedium: string;
3738
+ arrowSizeLarge: string;
3739
+ arrowSizeHuge: string;
3740
+ fontSizeTiny: string;
3741
+ fontSizeSmall: string;
3742
+ fontSizeMedium: string;
3743
+ fontSizeLarge: string;
3744
+ fontSizeHuge: string;
3745
+ lineHeightTiny: string;
3746
+ lineHeightSmall: string;
3747
+ lineHeightMedium: string;
3748
+ lineHeightLarge: string;
3749
+ lineHeightHuge: string;
3750
+ heightTiny: string;
3751
+ heightSmall: string;
3752
+ heightMedium: string;
3753
+ heightLarge: string;
3754
+ heightHuge: string;
3755
+ borderRadiusTiny: string;
3756
+ borderRadiusSmall: string;
3757
+ borderRadiusMedium: string;
3758
+ borderRadiusLarge: string;
3759
+ borderRadiusHuge: string;
3760
+ textColor: string;
3761
+ textColorDisabled: string;
3762
+ placeholderColor: string;
3763
+ placeholderColorDisabled: string;
3764
+ color: string;
3765
+ colorFilled: string;
3766
+ colorDisabled: string;
3767
+ colorActive: string;
3768
+ border: string;
3769
+ borderFilled: string;
3770
+ borderHover: string;
3771
+ borderActive: string;
3772
+ borderFocus: string;
3773
+ borderDisabled: string;
3774
+ boxShadowHover: string;
3775
+ boxShadowActive: string;
3776
+ boxShadowFocus: string;
3777
+ caretColor: string;
3778
+ arrowColor: string;
3779
+ arrowColorHover: string;
3780
+ arrowColorDisabled: string;
3781
+ loadingColor: string;
3782
+ borderWarning: string;
3783
+ borderHoverWarning: string;
3784
+ borderActiveWarning: string;
3785
+ borderFocusWarning: string;
3786
+ boxShadowHoverWarning: string;
3787
+ boxShadowActiveWarning: string;
3788
+ boxShadowFocusWarning: string;
3789
+ colorActiveWarning: string;
3790
+ caretColorWarning: string;
3791
+ borderError: string;
3792
+ borderHoverError: string;
3793
+ borderActiveError: string;
3794
+ borderFocusError: string;
3795
+ boxShadowHoverError: string;
3796
+ boxShadowActiveError: string;
3797
+ boxShadowFocusError: string;
3798
+ colorActiveError: string;
3799
+ caretColorError: string;
3800
+ clearColor: string;
3801
+ clearColorHover: string;
3802
+ clearColorPressed: string;
3803
+ caretColorSecondary: string;
3804
+ filterCounterTextColor: string;
3805
+ filterCounterTextColorDisabled: string;
3806
+ arrowColorSecondary: string;
3807
+ clearColorSecondary: string;
3808
+ colorSecondary: string;
3809
+ textColorSecondary: string;
3810
+ borderSecondary: string;
3811
+ arrowColorDisabledSecondary: string;
3812
+ clearColorDisabledSecondary: string;
3813
+ colorDisabledSecondary: string;
3814
+ textColorDisabledSecondary: string;
3815
+ borderDisabledSecondary: string;
3816
+ arrowColorHoverSecondary: string;
3817
+ clearColorHoverSecondary: string;
3818
+ colorHoverSecondary: string;
3819
+ textColorHoverSecondary: string;
3820
+ borderHoverSecondary: string;
3821
+ arrowColorFocusSecondary: string;
3822
+ clearColorFocusSecondary: string;
3823
+ colorFocusSecondary: string;
3824
+ textColorFocusSecondary: string;
3825
+ borderFocusSecondary: string;
3826
+ arrowColorActiveSecondary: string;
3827
+ clearColorActiveSecondary: string;
3828
+ colorActiveSecondary: string;
3829
+ textColorActiveSecondary: string;
3830
+ borderActiveSecondary: string;
3831
+ }, {
3832
+ Popover: import("../../_mixins").Theme<"Popover", {
3833
+ space: string;
3834
+ spaceArrow: string;
3835
+ arrowOffset: string;
3836
+ arrowOffsetVertical: string;
3837
+ arrowHeight: string;
3838
+ padding: string;
3839
+ fontSize: string;
3840
+ borderRadius: string;
3841
+ color: string;
3842
+ dividerColor: string;
3843
+ textColor: string;
3844
+ boxShadow: string;
3845
+ }, any>;
3846
+ }>;
3847
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
3848
+ height: string;
3849
+ width: string;
3850
+ borderRadius: string;
3851
+ color: string;
3852
+ colorHover: string;
3853
+ railInsetHorizontalBottom: string;
3854
+ railInsetHorizontalTop: string;
3855
+ railInsetVerticalRight: string;
3856
+ railInsetVerticalLeft: string;
3857
+ railColor: string;
3858
+ }, any>;
3859
+ }>>;
3860
+ readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePickerV2", {
3861
+ panelColor: string;
3862
+ panelBoxShadow: string;
3863
+ panelBorderRadius: string;
3864
+ panelTextColor: string;
3865
+ dividerColor: string;
3866
+ itemTextColor: string;
3867
+ itemTextColorOtherMonth: string;
3868
+ itemTextColorDisabled: string;
3869
+ itemColorHover: string;
3870
+ itemColorActive: string;
3871
+ itemColorIncluded: string;
3872
+ itemTextColorActive: string;
3873
+ itemBorderRadius: string;
3874
+ iconColor: string;
3875
+ iconColorDisabled: string;
3876
+ weekdayTextColor: string;
3877
+ weekendTextColor: string;
3878
+ monthItemHeight: string;
3879
+ monthItemColorHover: string;
3880
+ monthItemColorActive: string;
3881
+ monthItemTextColorActive: string;
3882
+ yearTriggerColor: string;
3883
+ yearTriggerColorHover: string;
3884
+ yearTriggerTextColor: string;
3885
+ currentDateIndicatorColor: string;
3886
+ }, {
3887
+ Button: import("../../_mixins").Theme<"Button", {
3888
+ heightTiny: string;
3889
+ heightSmall: string;
3890
+ heightMedium: string;
3891
+ heightLarge: string;
3892
+ borderRadiusTiny: string;
3893
+ borderRadiusSmall: string;
3894
+ borderRadiusMedium: string;
3895
+ borderRadiusLarge: string;
3896
+ fontSizeTiny: string;
3897
+ fontSizeSmall: string;
3898
+ fontSizeMedium: string;
3899
+ fontSizeLarge: string;
3900
+ opacityDisabled: string;
3901
+ colorOpacitySecondary: string;
3902
+ colorOpacitySecondaryHover: string;
3903
+ colorOpacitySecondaryPressed: string;
3904
+ colorOpacitySecondaryFocus: string;
3905
+ colorSecondary: string;
3906
+ colorSecondaryHover: string;
3907
+ colorSecondaryPressed: string;
3908
+ colorSecondaryFocus: string;
3909
+ colorSecondaryDisabled: string;
3910
+ textColorSecondaryDisabled: string;
3911
+ waveColorSecondary: string;
3912
+ colorTertiary: string;
3913
+ colorTertiaryHover: string;
3914
+ colorTertiaryPressed: string;
3915
+ colorTertiaryFocus: string;
3916
+ colorTertiaryDisalbed: string;
3917
+ waveColorTertiary: string;
3918
+ textColorTextTertiary: string;
3919
+ rippleColorTertiary: string;
3920
+ colorQuaternary: string;
3921
+ colorQuaternaryHover: string;
3922
+ colorQuaternaryPressed: string;
3923
+ colorQuaternaryFocus: string;
3924
+ rippleColorQuaternary: string;
3925
+ waveColorQuaternary: string;
3926
+ color: string;
3927
+ colorHover: string;
3928
+ colorPressed: string;
3929
+ colorFocus: string;
3930
+ colorDisabled: string;
3931
+ textColor: string;
3932
+ textTertiary: string;
3933
+ textColorTertiary: string;
3934
+ textColorHover: string;
3935
+ textColorPressed: string;
3936
+ textColorFocus: string;
3937
+ textColorDisabled: string;
3938
+ textColorText: string;
3939
+ textColorTextHover: string;
3940
+ textColorTextPressed: string;
3941
+ textColorTextFocus: string;
3942
+ textColorTextDisabled: string;
3943
+ textColorGhost: string;
3944
+ textColorGhostHover: string;
3945
+ textColorGhostPressed: string;
3946
+ textColorGhostFocus: string;
3947
+ textColorGhostDisabled: string;
3948
+ border: string;
3949
+ borderHover: string;
3950
+ borderPressed: string;
3951
+ borderFocus: string;
3952
+ borderDisabled: string;
3953
+ rippleColor: string;
3954
+ colorPrimary: string;
3955
+ colorHoverPrimary: string;
3956
+ colorPressedPrimary: string;
3957
+ colorFocusPrimary: string;
3958
+ colorDisabledPrimary: string;
3959
+ waveColorPrimary: string;
3960
+ textColorPrimary: string;
3961
+ textColorHoverPrimary: string;
3962
+ textColorPressedPrimary: string;
3963
+ textColorFocusPrimary: string;
3964
+ textColorDisabledPrimary: string;
3965
+ textColorTextPrimary: string;
3966
+ textColorTextHoverPrimary: string;
3967
+ textColorTextPressedPrimary: string;
3968
+ textColorTextFocusPrimary: string;
3969
+ textColorTextDisabledPrimary: string;
3970
+ textColorGhostPrimary: string;
3971
+ textColorGhostHoverPrimary: string;
3972
+ textColorGhostPressedPrimary: string;
3973
+ textColorGhostFocusPrimary: string;
3974
+ textColorGhostDisabledPrimary: string;
3975
+ borderPrimary: string;
3976
+ borderHoverPrimary: string;
3977
+ borderPressedPrimary: string;
3978
+ borderFocusPrimary: string;
3979
+ borderDisabledPrimary: string;
3980
+ rippleColorPrimary: string;
3981
+ colorInfo: string;
3982
+ colorHoverInfo: string;
3983
+ colorPressedInfo: string;
3984
+ colorFocusInfo: string;
3985
+ colorDisabledInfo: string;
3986
+ textColorInfo: string;
3987
+ textColorHoverInfo: string;
3988
+ textColorPressedInfo: string;
3989
+ textColorFocusInfo: string;
3990
+ textColorDisabledInfo: string;
3991
+ textColorTextInfo: string;
3992
+ textColorTextHoverInfo: string;
3993
+ textColorTextPressedInfo: string;
3994
+ textColorTextFocusInfo: string;
3995
+ textColorTextDisabledInfo: string;
3996
+ textColorGhostInfo: string;
3997
+ textColorGhostHoverInfo: string;
3998
+ textColorGhostPressedInfo: string;
3999
+ textColorGhostFocusInfo: string;
4000
+ textColorGhostDisabledInfo: string;
4001
+ borderInfo: string;
4002
+ borderHoverInfo: string;
4003
+ borderPressedInfo: string;
4004
+ borderFocusInfo: string;
4005
+ borderDisabledInfo: string;
4006
+ rippleColorInfo: string;
4007
+ colorSuccess: string;
4008
+ colorHoverSuccess: string;
4009
+ colorPressedSuccess: string;
4010
+ colorFocusSuccess: string;
4011
+ colorDisabledSuccess: string;
4012
+ textColorSuccess: string;
4013
+ textColorHoverSuccess: string;
4014
+ textColorPressedSuccess: string;
4015
+ textColorFocusSuccess: string;
4016
+ textColorDisabledSuccess: string;
4017
+ textColorTextSuccess: string;
4018
+ textColorTextHoverSuccess: string;
4019
+ textColorTextPressedSuccess: string;
4020
+ textColorTextFocusSuccess: string;
4021
+ textColorTextDisabledSuccess: string;
4022
+ textColorGhostSuccess: string;
4023
+ textColorGhostHoverSuccess: string;
4024
+ textColorGhostPressedSuccess: string;
4025
+ textColorGhostFocusSuccess: string;
4026
+ textColorGhostDisabledSuccess: string;
4027
+ borderSuccess: string;
4028
+ borderHoverSuccess: string;
4029
+ borderPressedSuccess: string;
4030
+ borderFocusSuccess: string;
4031
+ borderDisabledSuccess: string;
4032
+ rippleColorSuccess: string;
4033
+ colorWarning: string;
4034
+ colorHoverWarning: string;
4035
+ colorPressedWarning: string;
4036
+ colorFocusWarning: string;
4037
+ colorDisabledWarning: string;
4038
+ textColorWarning: string;
4039
+ textColorHoverWarning: string;
4040
+ textColorPressedWarning: string;
4041
+ textColorFocusWarning: string;
4042
+ textColorDisabledWarning: string;
4043
+ textColorTextWarning: string;
4044
+ textColorTextHoverWarning: string;
4045
+ textColorTextPressedWarning: string;
4046
+ textColorTextFocusWarning: string;
4047
+ textColorTextDisabledWarning: string;
4048
+ textColorGhostWarning: string;
4049
+ textColorGhostHoverWarning: string;
4050
+ textColorGhostPressedWarning: string;
4051
+ textColorGhostFocusWarning: string;
4052
+ textColorGhostDisabledWarning: string;
4053
+ borderWarning: string;
4054
+ borderHoverWarning: string;
4055
+ borderPressedWarning: string;
4056
+ borderFocusWarning: string;
4057
+ borderDisabledWarning: string;
4058
+ rippleColorWarning: string;
4059
+ colorError: string;
4060
+ colorHoverError: string;
4061
+ colorPressedError: string;
4062
+ colorFocusError: string;
4063
+ colorDisabledError: string;
4064
+ textColorError: string;
4065
+ textColorHoverError: string;
4066
+ textColorPressedError: string;
4067
+ textColorFocusError: string;
4068
+ textColorDisabledError: string;
4069
+ textColorTextError: string;
4070
+ textColorTextHoverError: string;
4071
+ textColorTextPressedError: string;
4072
+ textColorTextFocusError: string;
4073
+ textColorTextDisabledError: string;
4074
+ textColorGhostError: string;
4075
+ textColorGhostHoverError: string;
4076
+ textColorGhostPressedError: string;
4077
+ textColorGhostFocusError: string;
4078
+ textColorGhostDisabledError: string;
4079
+ borderError: string;
4080
+ borderHoverError: string;
4081
+ borderPressedError: string;
4082
+ borderFocusError: string;
4083
+ borderDisabledError: string;
4084
+ rippleColorError: string;
4085
+ waveOpacity: string;
4086
+ fontWeight: string;
4087
+ fontWeightStrong: string;
4088
+ paddingTiny: string;
4089
+ paddingSmall: string;
4090
+ paddingMedium: string;
4091
+ paddingLarge: string;
4092
+ paddingRoundTiny: string;
4093
+ paddingRoundSmall: string;
4094
+ paddingRoundMedium: string;
4095
+ paddingRoundLarge: string;
4096
+ iconMarginTiny: string;
4097
+ iconMarginSmall: string;
4098
+ iconMarginMedium: string;
4099
+ iconMarginLarge: string;
4100
+ iconSizeTiny: string;
4101
+ iconSizeSmall: string;
4102
+ iconSizeMedium: string;
4103
+ iconSizeLarge: string;
4104
+ rippleDuration: string;
4105
+ }, any>;
4106
+ Input: import("../../_mixins").Theme<"Input", {
4107
+ paddingTiny: string;
4108
+ paddingSmall: string;
4109
+ paddingMedium: string;
4110
+ paddingLarge: string;
4111
+ paddingHuge: string;
4112
+ clearSize: string;
4113
+ countTextColorDisabled: string;
4114
+ countTextColor: string;
4115
+ heightTiny: string;
4116
+ heightSmall: string;
4117
+ heightMedium: string;
4118
+ heightLarge: string;
4119
+ heightHuge: string;
4120
+ fontSizeTiny: string;
4121
+ fontSizeSmall: string;
4122
+ fontSizeMedium: string;
4123
+ fontSizeLarge: string;
4124
+ fontSizeHuge: string;
4125
+ lineHeight: string;
4126
+ lineHeightTextarea: string;
4127
+ borderRadius: string;
4128
+ iconSize: string;
4129
+ groupLabelTextColor: string;
4130
+ textColor: string;
4131
+ textColorDisabled: string;
4132
+ textDecorationColor: string;
4133
+ caretColor: string;
4134
+ placeholderColor: string;
4135
+ placeholderColorDisabled: string;
4136
+ color: string;
4137
+ colorDisabled: string;
4138
+ colorFocus: string;
4139
+ groupLabelBorder: string;
4140
+ border: string;
4141
+ borderHover: string;
4142
+ borderDisabled: string;
4143
+ borderFocus: string;
4144
+ boxShadowFocus: string;
4145
+ loadingColor: string;
4146
+ loadingColorWarning: string;
4147
+ borderWarning: string;
4148
+ borderHoverWarning: string;
4149
+ colorFocusWarning: string;
4150
+ borderFocusWarning: string;
4151
+ boxShadowFocusWarning: string;
4152
+ caretColorWarning: string;
4153
+ loadingColorError: string;
4154
+ borderError: string;
4155
+ borderHoverError: string;
4156
+ colorFocusError: string;
4157
+ borderFocusError: string;
4158
+ boxShadowFocusError: string;
4159
+ caretColorError: string;
4160
+ clearColor: string;
4161
+ clearColorHover: string;
4162
+ clearColorPressed: string;
4163
+ iconColor: string;
4164
+ iconColorDisabled: string;
4165
+ iconColorHover: string;
4166
+ iconColorPressed: string;
4167
+ suffixTextColor: string;
4168
+ selectionColor: string;
4169
+ }, any>;
4170
+ Select: import("../../_mixins").Theme<"InternalSelection", {
4171
+ paddingTiny: string;
4172
+ paddingSmall: string;
4173
+ paddingMedium: string;
4174
+ paddingLarge: string;
4175
+ paddingHuge: string;
4176
+ clearSizeTiny: string;
4177
+ clearSizeSmall: string;
4178
+ clearSizeMedium: string;
4179
+ clearSizeLarge: string;
4180
+ clearSizeHuge: string;
4181
+ arrowSizeTiny: string;
4182
+ arrowSizeSmall: string;
4183
+ arrowSizeMedium: string;
4184
+ arrowSizeLarge: string;
4185
+ arrowSizeHuge: string;
4186
+ fontSizeTiny: string;
4187
+ fontSizeSmall: string;
4188
+ fontSizeMedium: string;
4189
+ fontSizeLarge: string;
4190
+ fontSizeHuge: string;
4191
+ lineHeightTiny: string;
4192
+ lineHeightSmall: string;
4193
+ lineHeightMedium: string;
4194
+ lineHeightLarge: string;
4195
+ lineHeightHuge: string;
4196
+ heightTiny: string;
4197
+ heightSmall: string;
4198
+ heightMedium: string;
4199
+ heightLarge: string;
4200
+ heightHuge: string;
4201
+ borderRadiusTiny: string;
4202
+ borderRadiusSmall: string;
4203
+ borderRadiusMedium: string;
4204
+ borderRadiusLarge: string;
4205
+ borderRadiusHuge: string;
4206
+ textColor: string;
4207
+ textColorDisabled: string;
4208
+ placeholderColor: string;
4209
+ placeholderColorDisabled: string;
4210
+ color: string;
4211
+ colorFilled: string;
4212
+ colorDisabled: string;
4213
+ colorActive: string;
4214
+ border: string;
4215
+ borderFilled: string;
4216
+ borderHover: string;
4217
+ borderActive: string;
4218
+ borderFocus: string;
4219
+ borderDisabled: string;
4220
+ boxShadowHover: string;
4221
+ boxShadowActive: string;
4222
+ boxShadowFocus: string;
4223
+ caretColor: string;
4224
+ arrowColor: string;
4225
+ arrowColorHover: string;
4226
+ arrowColorDisabled: string;
4227
+ loadingColor: string;
4228
+ borderWarning: string;
4229
+ borderHoverWarning: string;
4230
+ borderActiveWarning: string;
4231
+ borderFocusWarning: string;
4232
+ boxShadowHoverWarning: string;
4233
+ boxShadowActiveWarning: string;
4234
+ boxShadowFocusWarning: string;
4235
+ colorActiveWarning: string;
4236
+ caretColorWarning: string;
4237
+ borderError: string;
4238
+ borderHoverError: string;
4239
+ borderActiveError: string;
4240
+ borderFocusError: string;
4241
+ boxShadowHoverError: string;
4242
+ boxShadowActiveError: string;
4243
+ boxShadowFocusError: string;
4244
+ colorActiveError: string;
4245
+ caretColorError: string;
4246
+ clearColor: string;
4247
+ clearColorHover: string;
4248
+ clearColorPressed: string;
4249
+ caretColorSecondary: string;
4250
+ filterCounterTextColor: string;
4251
+ filterCounterTextColorDisabled: string;
4252
+ arrowColorSecondary: string;
4253
+ clearColorSecondary: string;
4254
+ colorSecondary: string;
4255
+ textColorSecondary: string;
4256
+ borderSecondary: string;
4257
+ arrowColorDisabledSecondary: string;
4258
+ clearColorDisabledSecondary: string;
4259
+ colorDisabledSecondary: string;
4260
+ textColorDisabledSecondary: string;
4261
+ borderDisabledSecondary: string;
4262
+ arrowColorHoverSecondary: string;
4263
+ clearColorHoverSecondary: string;
4264
+ colorHoverSecondary: string;
4265
+ textColorHoverSecondary: string;
4266
+ borderHoverSecondary: string;
4267
+ arrowColorFocusSecondary: string;
4268
+ clearColorFocusSecondary: string;
4269
+ colorFocusSecondary: string;
4270
+ textColorFocusSecondary: string;
4271
+ borderFocusSecondary: string;
4272
+ arrowColorActiveSecondary: string;
4273
+ clearColorActiveSecondary: string;
4274
+ colorActiveSecondary: string;
4275
+ textColorActiveSecondary: string;
4276
+ borderActiveSecondary: string;
4277
+ }, {
4278
+ Popover: import("../../_mixins").Theme<"Popover", {
4279
+ space: string;
4280
+ spaceArrow: string;
4281
+ arrowOffset: string;
4282
+ arrowOffsetVertical: string;
4283
+ arrowHeight: string;
4284
+ padding: string;
4285
+ fontSize: string;
4286
+ borderRadius: string;
4287
+ color: string;
4288
+ dividerColor: string;
4289
+ textColor: string;
4290
+ boxShadow: string;
4291
+ }, any>;
4292
+ }>;
4293
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4294
+ height: string;
4295
+ width: string;
4296
+ borderRadius: string;
4297
+ color: string;
4298
+ colorHover: string;
4299
+ railInsetHorizontalBottom: string;
4300
+ railInsetHorizontalTop: string;
4301
+ railInsetVerticalRight: string;
4302
+ railInsetVerticalLeft: string;
4303
+ railColor: string;
4304
+ }, any>;
4305
+ }>>>;
4306
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"DatePickerV2", {
4307
+ panelColor: string;
4308
+ panelBoxShadow: string;
4309
+ panelBorderRadius: string;
4310
+ panelTextColor: string;
4311
+ dividerColor: string;
4312
+ itemTextColor: string;
4313
+ itemTextColorOtherMonth: string;
4314
+ itemTextColorDisabled: string;
4315
+ itemColorHover: string;
4316
+ itemColorActive: string;
4317
+ itemColorIncluded: string;
4318
+ itemTextColorActive: string;
4319
+ itemBorderRadius: string;
4320
+ iconColor: string;
4321
+ iconColorDisabled: string;
4322
+ weekdayTextColor: string;
4323
+ weekendTextColor: string;
4324
+ monthItemHeight: string;
4325
+ monthItemColorHover: string;
4326
+ monthItemColorActive: string;
4327
+ monthItemTextColorActive: string;
4328
+ yearTriggerColor: string;
4329
+ yearTriggerColorHover: string;
4330
+ yearTriggerTextColor: string;
4331
+ currentDateIndicatorColor: string;
4332
+ }, {
4333
+ Button: import("../../_mixins").Theme<"Button", {
4334
+ heightTiny: string;
4335
+ heightSmall: string;
4336
+ heightMedium: string;
4337
+ heightLarge: string;
4338
+ borderRadiusTiny: string;
4339
+ borderRadiusSmall: string;
4340
+ borderRadiusMedium: string;
4341
+ borderRadiusLarge: string;
4342
+ fontSizeTiny: string;
4343
+ fontSizeSmall: string;
4344
+ fontSizeMedium: string;
4345
+ fontSizeLarge: string;
4346
+ opacityDisabled: string;
4347
+ colorOpacitySecondary: string;
4348
+ colorOpacitySecondaryHover: string;
4349
+ colorOpacitySecondaryPressed: string;
4350
+ colorOpacitySecondaryFocus: string;
4351
+ colorSecondary: string;
4352
+ colorSecondaryHover: string;
4353
+ colorSecondaryPressed: string;
4354
+ colorSecondaryFocus: string;
4355
+ colorSecondaryDisabled: string;
4356
+ textColorSecondaryDisabled: string;
4357
+ waveColorSecondary: string;
4358
+ colorTertiary: string;
4359
+ colorTertiaryHover: string;
4360
+ colorTertiaryPressed: string;
4361
+ colorTertiaryFocus: string;
4362
+ colorTertiaryDisalbed: string;
4363
+ waveColorTertiary: string;
4364
+ textColorTextTertiary: string;
4365
+ rippleColorTertiary: string;
4366
+ colorQuaternary: string;
4367
+ colorQuaternaryHover: string;
4368
+ colorQuaternaryPressed: string;
4369
+ colorQuaternaryFocus: string;
4370
+ rippleColorQuaternary: string;
4371
+ waveColorQuaternary: string;
4372
+ color: string;
4373
+ colorHover: string;
4374
+ colorPressed: string;
4375
+ colorFocus: string;
4376
+ colorDisabled: string;
4377
+ textColor: string;
4378
+ textTertiary: string;
4379
+ textColorTertiary: string;
4380
+ textColorHover: string;
4381
+ textColorPressed: string;
4382
+ textColorFocus: string;
4383
+ textColorDisabled: string;
4384
+ textColorText: string;
4385
+ textColorTextHover: string;
4386
+ textColorTextPressed: string;
4387
+ textColorTextFocus: string;
4388
+ textColorTextDisabled: string;
4389
+ textColorGhost: string;
4390
+ textColorGhostHover: string;
4391
+ textColorGhostPressed: string;
4392
+ textColorGhostFocus: string;
4393
+ textColorGhostDisabled: string;
4394
+ border: string;
4395
+ borderHover: string;
4396
+ borderPressed: string;
4397
+ borderFocus: string;
4398
+ borderDisabled: string;
4399
+ rippleColor: string;
4400
+ colorPrimary: string;
4401
+ colorHoverPrimary: string;
4402
+ colorPressedPrimary: string;
4403
+ colorFocusPrimary: string;
4404
+ colorDisabledPrimary: string;
4405
+ waveColorPrimary: string;
4406
+ textColorPrimary: string;
4407
+ textColorHoverPrimary: string;
4408
+ textColorPressedPrimary: string;
4409
+ textColorFocusPrimary: string;
4410
+ textColorDisabledPrimary: string;
4411
+ textColorTextPrimary: string;
4412
+ textColorTextHoverPrimary: string;
4413
+ textColorTextPressedPrimary: string;
4414
+ textColorTextFocusPrimary: string;
4415
+ textColorTextDisabledPrimary: string;
4416
+ textColorGhostPrimary: string;
4417
+ textColorGhostHoverPrimary: string;
4418
+ textColorGhostPressedPrimary: string;
4419
+ textColorGhostFocusPrimary: string;
4420
+ textColorGhostDisabledPrimary: string;
4421
+ borderPrimary: string;
4422
+ borderHoverPrimary: string;
4423
+ borderPressedPrimary: string;
4424
+ borderFocusPrimary: string;
4425
+ borderDisabledPrimary: string;
4426
+ rippleColorPrimary: string;
4427
+ colorInfo: string;
4428
+ colorHoverInfo: string;
4429
+ colorPressedInfo: string;
4430
+ colorFocusInfo: string;
4431
+ colorDisabledInfo: string;
4432
+ textColorInfo: string;
4433
+ textColorHoverInfo: string;
4434
+ textColorPressedInfo: string;
4435
+ textColorFocusInfo: string;
4436
+ textColorDisabledInfo: string;
4437
+ textColorTextInfo: string;
4438
+ textColorTextHoverInfo: string;
4439
+ textColorTextPressedInfo: string;
4440
+ textColorTextFocusInfo: string;
4441
+ textColorTextDisabledInfo: string;
4442
+ textColorGhostInfo: string;
4443
+ textColorGhostHoverInfo: string;
4444
+ textColorGhostPressedInfo: string;
4445
+ textColorGhostFocusInfo: string;
4446
+ textColorGhostDisabledInfo: string;
4447
+ borderInfo: string;
4448
+ borderHoverInfo: string;
4449
+ borderPressedInfo: string;
4450
+ borderFocusInfo: string;
4451
+ borderDisabledInfo: string;
4452
+ rippleColorInfo: string;
4453
+ colorSuccess: string;
4454
+ colorHoverSuccess: string;
4455
+ colorPressedSuccess: string;
4456
+ colorFocusSuccess: string;
4457
+ colorDisabledSuccess: string;
4458
+ textColorSuccess: string;
4459
+ textColorHoverSuccess: string;
4460
+ textColorPressedSuccess: string;
4461
+ textColorFocusSuccess: string;
4462
+ textColorDisabledSuccess: string;
4463
+ textColorTextSuccess: string;
4464
+ textColorTextHoverSuccess: string;
4465
+ textColorTextPressedSuccess: string;
4466
+ textColorTextFocusSuccess: string;
4467
+ textColorTextDisabledSuccess: string;
4468
+ textColorGhostSuccess: string;
4469
+ textColorGhostHoverSuccess: string;
4470
+ textColorGhostPressedSuccess: string;
4471
+ textColorGhostFocusSuccess: string;
4472
+ textColorGhostDisabledSuccess: string;
4473
+ borderSuccess: string;
4474
+ borderHoverSuccess: string;
4475
+ borderPressedSuccess: string;
4476
+ borderFocusSuccess: string;
4477
+ borderDisabledSuccess: string;
4478
+ rippleColorSuccess: string;
4479
+ colorWarning: string;
4480
+ colorHoverWarning: string;
4481
+ colorPressedWarning: string;
4482
+ colorFocusWarning: string;
4483
+ colorDisabledWarning: string;
4484
+ textColorWarning: string;
4485
+ textColorHoverWarning: string;
4486
+ textColorPressedWarning: string;
4487
+ textColorFocusWarning: string;
4488
+ textColorDisabledWarning: string;
4489
+ textColorTextWarning: string;
4490
+ textColorTextHoverWarning: string;
4491
+ textColorTextPressedWarning: string;
4492
+ textColorTextFocusWarning: string;
4493
+ textColorTextDisabledWarning: string;
4494
+ textColorGhostWarning: string;
4495
+ textColorGhostHoverWarning: string;
4496
+ textColorGhostPressedWarning: string;
4497
+ textColorGhostFocusWarning: string;
4498
+ textColorGhostDisabledWarning: string;
4499
+ borderWarning: string;
4500
+ borderHoverWarning: string;
4501
+ borderPressedWarning: string;
4502
+ borderFocusWarning: string;
4503
+ borderDisabledWarning: string;
4504
+ rippleColorWarning: string;
4505
+ colorError: string;
4506
+ colorHoverError: string;
4507
+ colorPressedError: string;
4508
+ colorFocusError: string;
4509
+ colorDisabledError: string;
4510
+ textColorError: string;
4511
+ textColorHoverError: string;
4512
+ textColorPressedError: string;
4513
+ textColorFocusError: string;
4514
+ textColorDisabledError: string;
4515
+ textColorTextError: string;
4516
+ textColorTextHoverError: string;
4517
+ textColorTextPressedError: string;
4518
+ textColorTextFocusError: string;
4519
+ textColorTextDisabledError: string;
4520
+ textColorGhostError: string;
4521
+ textColorGhostHoverError: string;
4522
+ textColorGhostPressedError: string;
4523
+ textColorGhostFocusError: string;
4524
+ textColorGhostDisabledError: string;
4525
+ borderError: string;
4526
+ borderHoverError: string;
4527
+ borderPressedError: string;
4528
+ borderFocusError: string;
4529
+ borderDisabledError: string;
4530
+ rippleColorError: string;
4531
+ waveOpacity: string;
4532
+ fontWeight: string;
4533
+ fontWeightStrong: string;
4534
+ paddingTiny: string;
4535
+ paddingSmall: string;
4536
+ paddingMedium: string;
4537
+ paddingLarge: string;
4538
+ paddingRoundTiny: string;
4539
+ paddingRoundSmall: string;
4540
+ paddingRoundMedium: string;
4541
+ paddingRoundLarge: string;
4542
+ iconMarginTiny: string;
4543
+ iconMarginSmall: string;
4544
+ iconMarginMedium: string;
4545
+ iconMarginLarge: string;
4546
+ iconSizeTiny: string;
4547
+ iconSizeSmall: string;
4548
+ iconSizeMedium: string;
4549
+ iconSizeLarge: string;
4550
+ rippleDuration: string;
4551
+ }, any>;
4552
+ Input: import("../../_mixins").Theme<"Input", {
4553
+ paddingTiny: string;
4554
+ paddingSmall: string;
4555
+ paddingMedium: string;
4556
+ paddingLarge: string;
4557
+ paddingHuge: string;
4558
+ clearSize: string;
4559
+ countTextColorDisabled: string;
4560
+ countTextColor: string;
4561
+ heightTiny: string;
4562
+ heightSmall: string;
4563
+ heightMedium: string;
4564
+ heightLarge: string;
4565
+ heightHuge: string;
4566
+ fontSizeTiny: string;
4567
+ fontSizeSmall: string;
4568
+ fontSizeMedium: string;
4569
+ fontSizeLarge: string;
4570
+ fontSizeHuge: string;
4571
+ lineHeight: string;
4572
+ lineHeightTextarea: string;
4573
+ borderRadius: string;
4574
+ iconSize: string;
4575
+ groupLabelTextColor: string;
4576
+ textColor: string;
4577
+ textColorDisabled: string;
4578
+ textDecorationColor: string;
4579
+ caretColor: string;
4580
+ placeholderColor: string;
4581
+ placeholderColorDisabled: string;
4582
+ color: string;
4583
+ colorDisabled: string;
4584
+ colorFocus: string;
4585
+ groupLabelBorder: string;
4586
+ border: string;
4587
+ borderHover: string;
4588
+ borderDisabled: string;
4589
+ borderFocus: string;
4590
+ boxShadowFocus: string;
4591
+ loadingColor: string;
4592
+ loadingColorWarning: string;
4593
+ borderWarning: string;
4594
+ borderHoverWarning: string;
4595
+ colorFocusWarning: string;
4596
+ borderFocusWarning: string;
4597
+ boxShadowFocusWarning: string;
4598
+ caretColorWarning: string;
4599
+ loadingColorError: string;
4600
+ borderError: string;
4601
+ borderHoverError: string;
4602
+ colorFocusError: string;
4603
+ borderFocusError: string;
4604
+ boxShadowFocusError: string;
4605
+ caretColorError: string;
4606
+ clearColor: string;
4607
+ clearColorHover: string;
4608
+ clearColorPressed: string;
4609
+ iconColor: string;
4610
+ iconColorDisabled: string;
4611
+ iconColorHover: string;
4612
+ iconColorPressed: string;
4613
+ suffixTextColor: string;
4614
+ selectionColor: string;
4615
+ }, any>;
4616
+ Select: import("../../_mixins").Theme<"InternalSelection", {
4617
+ paddingTiny: string;
4618
+ paddingSmall: string;
4619
+ paddingMedium: string;
4620
+ paddingLarge: string;
4621
+ paddingHuge: string;
4622
+ clearSizeTiny: string;
4623
+ clearSizeSmall: string;
4624
+ clearSizeMedium: string;
4625
+ clearSizeLarge: string;
4626
+ clearSizeHuge: string;
4627
+ arrowSizeTiny: string;
4628
+ arrowSizeSmall: string;
4629
+ arrowSizeMedium: string;
4630
+ arrowSizeLarge: string;
4631
+ arrowSizeHuge: string;
4632
+ fontSizeTiny: string;
4633
+ fontSizeSmall: string;
4634
+ fontSizeMedium: string;
4635
+ fontSizeLarge: string;
4636
+ fontSizeHuge: string;
4637
+ lineHeightTiny: string;
4638
+ lineHeightSmall: string;
4639
+ lineHeightMedium: string;
4640
+ lineHeightLarge: string;
4641
+ lineHeightHuge: string;
4642
+ heightTiny: string;
4643
+ heightSmall: string;
4644
+ heightMedium: string;
4645
+ heightLarge: string;
4646
+ heightHuge: string;
4647
+ borderRadiusTiny: string;
4648
+ borderRadiusSmall: string;
4649
+ borderRadiusMedium: string;
4650
+ borderRadiusLarge: string;
4651
+ borderRadiusHuge: string;
4652
+ textColor: string;
4653
+ textColorDisabled: string;
4654
+ placeholderColor: string;
4655
+ placeholderColorDisabled: string;
4656
+ color: string;
4657
+ colorFilled: string;
4658
+ colorDisabled: string;
4659
+ colorActive: string;
4660
+ border: string;
4661
+ borderFilled: string;
4662
+ borderHover: string;
4663
+ borderActive: string;
4664
+ borderFocus: string;
4665
+ borderDisabled: string;
4666
+ boxShadowHover: string;
4667
+ boxShadowActive: string;
4668
+ boxShadowFocus: string;
4669
+ caretColor: string;
4670
+ arrowColor: string;
4671
+ arrowColorHover: string;
4672
+ arrowColorDisabled: string;
4673
+ loadingColor: string;
4674
+ borderWarning: string;
4675
+ borderHoverWarning: string;
4676
+ borderActiveWarning: string;
4677
+ borderFocusWarning: string;
4678
+ boxShadowHoverWarning: string;
4679
+ boxShadowActiveWarning: string;
4680
+ boxShadowFocusWarning: string;
4681
+ colorActiveWarning: string;
4682
+ caretColorWarning: string;
4683
+ borderError: string;
4684
+ borderHoverError: string;
4685
+ borderActiveError: string;
4686
+ borderFocusError: string;
4687
+ boxShadowHoverError: string;
4688
+ boxShadowActiveError: string;
4689
+ boxShadowFocusError: string;
4690
+ colorActiveError: string;
4691
+ caretColorError: string;
4692
+ clearColor: string;
4693
+ clearColorHover: string;
4694
+ clearColorPressed: string;
4695
+ caretColorSecondary: string;
4696
+ filterCounterTextColor: string;
4697
+ filterCounterTextColorDisabled: string;
4698
+ arrowColorSecondary: string;
4699
+ clearColorSecondary: string;
4700
+ colorSecondary: string;
4701
+ textColorSecondary: string;
4702
+ borderSecondary: string;
4703
+ arrowColorDisabledSecondary: string;
4704
+ clearColorDisabledSecondary: string;
4705
+ colorDisabledSecondary: string;
4706
+ textColorDisabledSecondary: string;
4707
+ borderDisabledSecondary: string;
4708
+ arrowColorHoverSecondary: string;
4709
+ clearColorHoverSecondary: string;
4710
+ colorHoverSecondary: string;
4711
+ textColorHoverSecondary: string;
4712
+ borderHoverSecondary: string;
4713
+ arrowColorFocusSecondary: string;
4714
+ clearColorFocusSecondary: string;
4715
+ colorFocusSecondary: string;
4716
+ textColorFocusSecondary: string;
4717
+ borderFocusSecondary: string;
4718
+ arrowColorActiveSecondary: string;
4719
+ clearColorActiveSecondary: string;
4720
+ colorActiveSecondary: string;
4721
+ textColorActiveSecondary: string;
4722
+ borderActiveSecondary: string;
4723
+ }, {
4724
+ Popover: import("../../_mixins").Theme<"Popover", {
4725
+ space: string;
4726
+ spaceArrow: string;
4727
+ arrowOffset: string;
4728
+ arrowOffsetVertical: string;
4729
+ arrowHeight: string;
4730
+ padding: string;
4731
+ fontSize: string;
4732
+ borderRadius: string;
4733
+ color: string;
4734
+ dividerColor: string;
4735
+ textColor: string;
4736
+ boxShadow: string;
4737
+ }, any>;
4738
+ }>;
4739
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
4740
+ height: string;
4741
+ width: string;
4742
+ borderRadius: string;
4743
+ color: string;
4744
+ colorHover: string;
4745
+ railInsetHorizontalBottom: string;
4746
+ railInsetHorizontalTop: string;
4747
+ railInsetVerticalRight: string;
4748
+ railInsetVerticalLeft: string;
4749
+ railColor: string;
4750
+ }, any>;
4751
+ }>>>;
4752
+ }>>, {
4753
+ readonly type: DatePickerV2Type;
4754
+ readonly disabled: boolean | undefined;
4755
+ readonly bordered: boolean | undefined;
4756
+ readonly to: string | boolean | HTMLElement;
4757
+ readonly clearable: boolean;
4758
+ readonly placement: FollowerPlacement;
4759
+ readonly round: boolean;
4760
+ readonly show: boolean | undefined;
4761
+ readonly format: string;
4762
+ readonly inputReadonly: boolean;
4763
+ readonly triggerPreset: TriggerPreset;
4764
+ }, {}>;
4765
+ export default _default;