@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,447 @@
1
+ declare const datePickerV2Dark: import("../../_mixins").Theme<"DatePickerV2", {
2
+ panelColor: string;
3
+ panelBoxShadow: string;
4
+ panelBorderRadius: string;
5
+ panelTextColor: string;
6
+ dividerColor: string;
7
+ itemTextColor: string;
8
+ itemTextColorOtherMonth: string;
9
+ itemTextColorDisabled: string;
10
+ itemColorHover: string;
11
+ itemColorActive: string;
12
+ itemColorIncluded: string;
13
+ itemTextColorActive: string;
14
+ itemBorderRadius: string;
15
+ iconColor: string;
16
+ iconColorDisabled: string;
17
+ weekdayTextColor: string;
18
+ weekendTextColor: string;
19
+ monthItemHeight: string;
20
+ monthItemColorHover: string;
21
+ monthItemColorActive: string;
22
+ monthItemTextColorActive: string;
23
+ yearTriggerColor: string;
24
+ yearTriggerColorHover: string;
25
+ yearTriggerTextColor: string;
26
+ currentDateIndicatorColor: string;
27
+ }, {
28
+ Button: import("../../_mixins").Theme<"Button", {
29
+ heightTiny: string;
30
+ heightSmall: string;
31
+ heightMedium: string;
32
+ heightLarge: string;
33
+ borderRadiusTiny: string;
34
+ borderRadiusSmall: string;
35
+ borderRadiusMedium: string;
36
+ borderRadiusLarge: string;
37
+ fontSizeTiny: string;
38
+ fontSizeSmall: string;
39
+ fontSizeMedium: string;
40
+ fontSizeLarge: string;
41
+ opacityDisabled: string;
42
+ colorOpacitySecondary: string;
43
+ colorOpacitySecondaryHover: string;
44
+ colorOpacitySecondaryPressed: string;
45
+ colorOpacitySecondaryFocus: string;
46
+ colorSecondary: string;
47
+ colorSecondaryHover: string;
48
+ colorSecondaryPressed: string;
49
+ colorSecondaryFocus: string;
50
+ colorSecondaryDisabled: string;
51
+ textColorSecondaryDisabled: string;
52
+ waveColorSecondary: string;
53
+ colorTertiary: string;
54
+ colorTertiaryHover: string;
55
+ colorTertiaryPressed: string;
56
+ colorTertiaryFocus: string;
57
+ colorTertiaryDisalbed: string;
58
+ waveColorTertiary: string;
59
+ textColorTextTertiary: string;
60
+ rippleColorTertiary: string;
61
+ colorQuaternary: string;
62
+ colorQuaternaryHover: string;
63
+ colorQuaternaryPressed: string;
64
+ colorQuaternaryFocus: string;
65
+ rippleColorQuaternary: string;
66
+ waveColorQuaternary: string;
67
+ color: string;
68
+ colorHover: string;
69
+ colorPressed: string;
70
+ colorFocus: string;
71
+ colorDisabled: string;
72
+ textColor: string;
73
+ textTertiary: string;
74
+ textColorTertiary: string;
75
+ textColorHover: string;
76
+ textColorPressed: string;
77
+ textColorFocus: string;
78
+ textColorDisabled: string;
79
+ textColorText: string;
80
+ textColorTextHover: string;
81
+ textColorTextPressed: string;
82
+ textColorTextFocus: string;
83
+ textColorTextDisabled: string;
84
+ textColorGhost: string;
85
+ textColorGhostHover: string;
86
+ textColorGhostPressed: string;
87
+ textColorGhostFocus: string;
88
+ textColorGhostDisabled: string;
89
+ border: string;
90
+ borderHover: string;
91
+ borderPressed: string;
92
+ borderFocus: string;
93
+ borderDisabled: string;
94
+ rippleColor: string;
95
+ colorPrimary: string;
96
+ colorHoverPrimary: string;
97
+ colorPressedPrimary: string;
98
+ colorFocusPrimary: string;
99
+ colorDisabledPrimary: string;
100
+ waveColorPrimary: string;
101
+ textColorPrimary: string;
102
+ textColorHoverPrimary: string;
103
+ textColorPressedPrimary: string;
104
+ textColorFocusPrimary: string;
105
+ textColorDisabledPrimary: string;
106
+ textColorTextPrimary: string;
107
+ textColorTextHoverPrimary: string;
108
+ textColorTextPressedPrimary: string;
109
+ textColorTextFocusPrimary: string;
110
+ textColorTextDisabledPrimary: string;
111
+ textColorGhostPrimary: string;
112
+ textColorGhostHoverPrimary: string;
113
+ textColorGhostPressedPrimary: string;
114
+ textColorGhostFocusPrimary: string;
115
+ textColorGhostDisabledPrimary: string;
116
+ borderPrimary: string;
117
+ borderHoverPrimary: string;
118
+ borderPressedPrimary: string;
119
+ borderFocusPrimary: string;
120
+ borderDisabledPrimary: string;
121
+ rippleColorPrimary: string;
122
+ colorInfo: string;
123
+ colorHoverInfo: string;
124
+ colorPressedInfo: string;
125
+ colorFocusInfo: string;
126
+ colorDisabledInfo: string;
127
+ textColorInfo: string;
128
+ textColorHoverInfo: string;
129
+ textColorPressedInfo: string;
130
+ textColorFocusInfo: string;
131
+ textColorDisabledInfo: string;
132
+ textColorTextInfo: string;
133
+ textColorTextHoverInfo: string;
134
+ textColorTextPressedInfo: string;
135
+ textColorTextFocusInfo: string;
136
+ textColorTextDisabledInfo: string;
137
+ textColorGhostInfo: string;
138
+ textColorGhostHoverInfo: string;
139
+ textColorGhostPressedInfo: string;
140
+ textColorGhostFocusInfo: string;
141
+ textColorGhostDisabledInfo: string;
142
+ borderInfo: string;
143
+ borderHoverInfo: string;
144
+ borderPressedInfo: string;
145
+ borderFocusInfo: string;
146
+ borderDisabledInfo: string;
147
+ rippleColorInfo: string;
148
+ colorSuccess: string;
149
+ colorHoverSuccess: string;
150
+ colorPressedSuccess: string;
151
+ colorFocusSuccess: string;
152
+ colorDisabledSuccess: string;
153
+ textColorSuccess: string;
154
+ textColorHoverSuccess: string;
155
+ textColorPressedSuccess: string;
156
+ textColorFocusSuccess: string;
157
+ textColorDisabledSuccess: string;
158
+ textColorTextSuccess: string;
159
+ textColorTextHoverSuccess: string;
160
+ textColorTextPressedSuccess: string;
161
+ textColorTextFocusSuccess: string;
162
+ textColorTextDisabledSuccess: string;
163
+ textColorGhostSuccess: string;
164
+ textColorGhostHoverSuccess: string;
165
+ textColorGhostPressedSuccess: string;
166
+ textColorGhostFocusSuccess: string;
167
+ textColorGhostDisabledSuccess: string;
168
+ borderSuccess: string;
169
+ borderHoverSuccess: string;
170
+ borderPressedSuccess: string;
171
+ borderFocusSuccess: string;
172
+ borderDisabledSuccess: string;
173
+ rippleColorSuccess: string;
174
+ colorWarning: string;
175
+ colorHoverWarning: string;
176
+ colorPressedWarning: string;
177
+ colorFocusWarning: string;
178
+ colorDisabledWarning: string;
179
+ textColorWarning: string;
180
+ textColorHoverWarning: string;
181
+ textColorPressedWarning: string;
182
+ textColorFocusWarning: string;
183
+ textColorDisabledWarning: string;
184
+ textColorTextWarning: string;
185
+ textColorTextHoverWarning: string;
186
+ textColorTextPressedWarning: string;
187
+ textColorTextFocusWarning: string;
188
+ textColorTextDisabledWarning: string;
189
+ textColorGhostWarning: string;
190
+ textColorGhostHoverWarning: string;
191
+ textColorGhostPressedWarning: string;
192
+ textColorGhostFocusWarning: string;
193
+ textColorGhostDisabledWarning: string;
194
+ borderWarning: string;
195
+ borderHoverWarning: string;
196
+ borderPressedWarning: string;
197
+ borderFocusWarning: string;
198
+ borderDisabledWarning: string;
199
+ rippleColorWarning: string;
200
+ colorError: string;
201
+ colorHoverError: string;
202
+ colorPressedError: string;
203
+ colorFocusError: string;
204
+ colorDisabledError: string;
205
+ textColorError: string;
206
+ textColorHoverError: string;
207
+ textColorPressedError: string;
208
+ textColorFocusError: string;
209
+ textColorDisabledError: string;
210
+ textColorTextError: string;
211
+ textColorTextHoverError: string;
212
+ textColorTextPressedError: string;
213
+ textColorTextFocusError: string;
214
+ textColorTextDisabledError: string;
215
+ textColorGhostError: string;
216
+ textColorGhostHoverError: string;
217
+ textColorGhostPressedError: string;
218
+ textColorGhostFocusError: string;
219
+ textColorGhostDisabledError: string;
220
+ borderError: string;
221
+ borderHoverError: string;
222
+ borderPressedError: string;
223
+ borderFocusError: string;
224
+ borderDisabledError: string;
225
+ rippleColorError: string;
226
+ waveOpacity: string;
227
+ fontWeight: string;
228
+ fontWeightStrong: string;
229
+ paddingTiny: string;
230
+ paddingSmall: string;
231
+ paddingMedium: string;
232
+ paddingLarge: string;
233
+ paddingRoundTiny: string;
234
+ paddingRoundSmall: string;
235
+ paddingRoundMedium: string;
236
+ paddingRoundLarge: string;
237
+ iconMarginTiny: string;
238
+ iconMarginSmall: string;
239
+ iconMarginMedium: string;
240
+ iconMarginLarge: string;
241
+ iconSizeTiny: string;
242
+ iconSizeSmall: string;
243
+ iconSizeMedium: string;
244
+ iconSizeLarge: string;
245
+ rippleDuration: string;
246
+ }, any>;
247
+ Input: import("../../_mixins").Theme<"Input", {
248
+ paddingTiny: string;
249
+ paddingSmall: string;
250
+ paddingMedium: string;
251
+ paddingLarge: string;
252
+ paddingHuge: string;
253
+ clearSize: string;
254
+ countTextColorDisabled: string;
255
+ countTextColor: string;
256
+ heightTiny: string;
257
+ heightSmall: string;
258
+ heightMedium: string;
259
+ heightLarge: string;
260
+ heightHuge: string;
261
+ fontSizeTiny: string;
262
+ fontSizeSmall: string;
263
+ fontSizeMedium: string;
264
+ fontSizeLarge: string;
265
+ fontSizeHuge: string;
266
+ lineHeight: string;
267
+ lineHeightTextarea: string;
268
+ borderRadius: string;
269
+ iconSize: string;
270
+ groupLabelTextColor: string;
271
+ textColor: string;
272
+ textColorDisabled: string;
273
+ textDecorationColor: string;
274
+ caretColor: string;
275
+ placeholderColor: string;
276
+ placeholderColorDisabled: string;
277
+ color: string;
278
+ colorDisabled: string;
279
+ colorFocus: string;
280
+ groupLabelBorder: string;
281
+ border: string;
282
+ borderHover: string;
283
+ borderDisabled: string;
284
+ borderFocus: string;
285
+ boxShadowFocus: string;
286
+ loadingColor: string;
287
+ loadingColorWarning: string;
288
+ borderWarning: string;
289
+ borderHoverWarning: string;
290
+ colorFocusWarning: string;
291
+ borderFocusWarning: string;
292
+ boxShadowFocusWarning: string;
293
+ caretColorWarning: string;
294
+ loadingColorError: string;
295
+ borderError: string;
296
+ borderHoverError: string;
297
+ colorFocusError: string;
298
+ borderFocusError: string;
299
+ boxShadowFocusError: string;
300
+ caretColorError: string;
301
+ clearColor: string;
302
+ clearColorHover: string;
303
+ clearColorPressed: string;
304
+ iconColor: string;
305
+ iconColorDisabled: string;
306
+ iconColorHover: string;
307
+ iconColorPressed: string;
308
+ suffixTextColor: string;
309
+ selectionColor: string;
310
+ }, any>;
311
+ Select: import("../../_mixins").Theme<"InternalSelection", {
312
+ paddingTiny: string;
313
+ paddingSmall: string;
314
+ paddingMedium: string;
315
+ paddingLarge: string;
316
+ paddingHuge: string;
317
+ clearSizeTiny: string;
318
+ clearSizeSmall: string;
319
+ clearSizeMedium: string;
320
+ clearSizeLarge: string;
321
+ clearSizeHuge: string;
322
+ arrowSizeTiny: string;
323
+ arrowSizeSmall: string;
324
+ arrowSizeMedium: string;
325
+ arrowSizeLarge: string;
326
+ arrowSizeHuge: string;
327
+ fontSizeTiny: string;
328
+ fontSizeSmall: string;
329
+ fontSizeMedium: string;
330
+ fontSizeLarge: string;
331
+ fontSizeHuge: string;
332
+ lineHeightTiny: string;
333
+ lineHeightSmall: string;
334
+ lineHeightMedium: string;
335
+ lineHeightLarge: string;
336
+ lineHeightHuge: string;
337
+ heightTiny: string;
338
+ heightSmall: string;
339
+ heightMedium: string;
340
+ heightLarge: string;
341
+ heightHuge: string;
342
+ borderRadiusTiny: string;
343
+ borderRadiusSmall: string;
344
+ borderRadiusMedium: string;
345
+ borderRadiusLarge: string;
346
+ borderRadiusHuge: string;
347
+ textColor: string;
348
+ textColorDisabled: string;
349
+ placeholderColor: string;
350
+ placeholderColorDisabled: string;
351
+ color: string;
352
+ colorFilled: string;
353
+ colorDisabled: string;
354
+ colorActive: string;
355
+ border: string;
356
+ borderFilled: string;
357
+ borderHover: string;
358
+ borderActive: string;
359
+ borderFocus: string;
360
+ borderDisabled: string;
361
+ boxShadowHover: string;
362
+ boxShadowActive: string;
363
+ boxShadowFocus: string;
364
+ caretColor: string;
365
+ arrowColor: string;
366
+ arrowColorHover: string;
367
+ arrowColorDisabled: string;
368
+ loadingColor: string;
369
+ borderWarning: string;
370
+ borderHoverWarning: string;
371
+ borderActiveWarning: string;
372
+ borderFocusWarning: string;
373
+ boxShadowHoverWarning: string;
374
+ boxShadowActiveWarning: string;
375
+ boxShadowFocusWarning: string;
376
+ colorActiveWarning: string;
377
+ caretColorWarning: string;
378
+ borderError: string;
379
+ borderHoverError: string;
380
+ borderActiveError: string;
381
+ borderFocusError: string;
382
+ boxShadowHoverError: string;
383
+ boxShadowActiveError: string;
384
+ boxShadowFocusError: string;
385
+ colorActiveError: string;
386
+ caretColorError: string;
387
+ clearColor: string;
388
+ clearColorHover: string;
389
+ clearColorPressed: string;
390
+ caretColorSecondary: string;
391
+ filterCounterTextColor: string;
392
+ filterCounterTextColorDisabled: string;
393
+ arrowColorSecondary: string;
394
+ clearColorSecondary: string;
395
+ colorSecondary: string;
396
+ textColorSecondary: string;
397
+ borderSecondary: string;
398
+ arrowColorDisabledSecondary: string;
399
+ clearColorDisabledSecondary: string;
400
+ colorDisabledSecondary: string;
401
+ textColorDisabledSecondary: string;
402
+ borderDisabledSecondary: string;
403
+ arrowColorHoverSecondary: string;
404
+ clearColorHoverSecondary: string;
405
+ colorHoverSecondary: string;
406
+ textColorHoverSecondary: string;
407
+ borderHoverSecondary: string;
408
+ arrowColorFocusSecondary: string;
409
+ clearColorFocusSecondary: string;
410
+ colorFocusSecondary: string;
411
+ textColorFocusSecondary: string;
412
+ borderFocusSecondary: string;
413
+ arrowColorActiveSecondary: string;
414
+ clearColorActiveSecondary: string;
415
+ colorActiveSecondary: string;
416
+ textColorActiveSecondary: string;
417
+ borderActiveSecondary: string;
418
+ }, {
419
+ Popover: import("../../_mixins").Theme<"Popover", {
420
+ space: string;
421
+ spaceArrow: string;
422
+ arrowOffset: string;
423
+ arrowOffsetVertical: string;
424
+ arrowHeight: string;
425
+ padding: string;
426
+ fontSize: string;
427
+ borderRadius: string;
428
+ color: string;
429
+ dividerColor: string;
430
+ textColor: string;
431
+ boxShadow: string;
432
+ }, any>;
433
+ }>;
434
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
435
+ height: string;
436
+ width: string;
437
+ borderRadius: string;
438
+ color: string;
439
+ colorHover: string;
440
+ railInsetHorizontalBottom: string;
441
+ railInsetHorizontalTop: string;
442
+ railInsetVerticalRight: string;
443
+ railInsetVerticalLeft: string;
444
+ railColor: string;
445
+ }, any>;
446
+ }>;
447
+ export default datePickerV2Dark;
@@ -0,0 +1,19 @@
1
+ import { inputDark } from '../../input/styles';
2
+ import { buttonDark } from '../../button/styles';
3
+ import { internalSelectionDark } from '../../_internal/selection/styles';
4
+ import { commonDark } from '../../_styles/common';
5
+ import { scrollbarDark } from '../../_internal/scrollbar/styles';
6
+ import { createTheme } from '../../_mixins';
7
+ import { self } from './light';
8
+ const datePickerV2Dark = createTheme({
9
+ name: 'DatePickerV2',
10
+ common: commonDark,
11
+ peers: {
12
+ Button: buttonDark,
13
+ Input: inputDark,
14
+ Select: internalSelectionDark,
15
+ Scrollbar: scrollbarDark
16
+ },
17
+ self
18
+ });
19
+ export default datePickerV2Dark;
@@ -0,0 +1,3 @@
1
+ export { default as datePickerV2Light } from './light';
2
+ export { default as datePickerV2Dark } from './dark';
3
+ export type { DatePickerV2Theme, DatePickerV2ThemeVars } from './light';
@@ -0,0 +1,2 @@
1
+ export { default as datePickerV2Light } from './light';
2
+ export { default as datePickerV2Dark } from './dark';