@uzum-tech/ui 2.1.3 → 2.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (111) hide show
  1. package/dist/index.js +1236 -530
  2. package/dist/index.mjs +1232 -531
  3. package/dist/index.prod.js +2 -2
  4. package/dist/index.prod.mjs +2 -2
  5. package/es/_internal/icon/index.d.ts +1 -1
  6. package/es/_internal/icon/index.mjs +1 -1
  7. package/es/_internal/icon/src/UIcon.d.ts +11 -1
  8. package/es/_internal/icon/src/UIcon.mjs +20 -8
  9. package/es/_internal/icon/src/interface.d.ts +11 -4
  10. package/es/_internal/icon/src/interface.mjs +4 -0
  11. package/es/_internal/icon/src/render-icon.d.ts +1 -0
  12. package/es/_internal/icon/src/render-icon.mjs +5 -0
  13. package/es/_internal/icons/SearchOutline.d.ts +2 -0
  14. package/es/_internal/icons/SearchOutline.mjs +18 -0
  15. package/es/_internal/icons/index.d.ts +1 -0
  16. package/es/_internal/icons/index.mjs +1 -0
  17. package/es/_mixins/use-form-item.mjs +5 -0
  18. package/es/_utils/dom/copy-to-clipboard.d.ts +1 -0
  19. package/es/_utils/dom/copy-to-clipboard.mjs +8 -0
  20. package/es/_utils/dom/index.d.ts +1 -0
  21. package/es/_utils/dom/index.mjs +1 -0
  22. package/es/components.d.ts +1169 -76
  23. package/es/components.mjs +4 -1
  24. package/es/config-provider/src/internal-interface.d.ts +4 -0
  25. package/es/data-table/src/use-table-data.d.ts +1 -1
  26. package/es/date-picker/src/DatePicker.mjs +7 -4
  27. package/es/icon/index.d.ts +1 -1
  28. package/es/icon/index.mjs +1 -1
  29. package/es/icon/src/Icon.d.ts +1 -1
  30. package/es/icon/src/Icon.mjs +1 -1
  31. package/es/icon-pack/index.d.ts +5 -0
  32. package/es/icon-pack/index.mjs +3 -0
  33. package/es/icon-pack/src/IconPack.d.ts +1047 -0
  34. package/es/icon-pack/src/IconPack.mjs +300 -0
  35. package/es/icon-pack/src/interface.d.ts +465 -0
  36. package/es/icon-pack/src/interface.mjs +75 -0
  37. package/es/icon-pack/src/styles/index.cssr.d.ts +2 -0
  38. package/es/icon-pack/src/styles/index.cssr.mjs +131 -0
  39. package/es/icon-pack/styles/dark.d.ts +123 -0
  40. package/es/icon-pack/styles/dark.mjs +20 -0
  41. package/es/icon-pack/styles/index.d.ts +3 -0
  42. package/es/icon-pack/styles/index.mjs +2 -0
  43. package/es/icon-pack/styles/light.d.ts +143 -0
  44. package/es/icon-pack/styles/light.mjs +64 -0
  45. package/es/icon-wrapper/src/IconWrapper.d.ts +1 -1
  46. package/es/input/src/Input.mjs +3 -1
  47. package/es/pagination/index.d.ts +3 -3
  48. package/es/pagination/index.mjs +2 -1
  49. package/es/pagination/src/Pagination.d.ts +74 -1379
  50. package/es/pagination/src/Pagination.mjs +28 -63
  51. package/es/pagination/src/interface.d.ts +1345 -1
  52. package/es/pagination/src/interface.mjs +68 -1
  53. package/es/themes/dark.mjs +2 -0
  54. package/es/themes/light.mjs +2 -0
  55. package/es/version.d.ts +1 -1
  56. package/es/version.mjs +1 -1
  57. package/lib/_internal/icon/index.d.ts +1 -1
  58. package/lib/_internal/icon/index.js +2 -1
  59. package/lib/_internal/icon/src/UIcon.d.ts +11 -1
  60. package/lib/_internal/icon/src/UIcon.js +17 -6
  61. package/lib/_internal/icon/src/interface.d.ts +11 -4
  62. package/lib/_internal/icon/src/interface.js +1 -1
  63. package/lib/_internal/icon/src/render-icon.d.ts +1 -0
  64. package/lib/_internal/icon/src/render-icon.js +4 -0
  65. package/lib/_internal/icons/SearchOutline.d.ts +2 -0
  66. package/lib/_internal/icons/SearchOutline.js +10 -0
  67. package/lib/_internal/icons/index.d.ts +1 -0
  68. package/lib/_internal/icons/index.js +3 -1
  69. package/lib/_mixins/use-form-item.js +5 -0
  70. package/lib/_utils/dom/copy-to-clipboard.d.ts +1 -0
  71. package/lib/_utils/dom/copy-to-clipboard.js +11 -0
  72. package/lib/_utils/dom/index.d.ts +1 -0
  73. package/lib/_utils/dom/index.js +3 -1
  74. package/lib/components.d.ts +1169 -76
  75. package/lib/components.js +12 -5
  76. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  77. package/lib/data-table/src/use-table-data.d.ts +1 -1
  78. package/lib/date-picker/src/DatePicker.js +5 -4
  79. package/lib/icon/index.d.ts +1 -1
  80. package/lib/icon/index.js +2 -1
  81. package/lib/icon/src/Icon.d.ts +1 -1
  82. package/lib/icon/src/Icon.js +2 -1
  83. package/lib/icon-pack/index.d.ts +5 -0
  84. package/lib/icon-pack/index.js +13 -0
  85. package/lib/icon-pack/src/IconPack.d.ts +1047 -0
  86. package/lib/icon-pack/src/IconPack.js +240 -0
  87. package/lib/icon-pack/src/interface.d.ts +465 -0
  88. package/lib/icon-pack/src/interface.js +49 -0
  89. package/lib/icon-pack/src/styles/index.cssr.d.ts +2 -0
  90. package/lib/icon-pack/src/styles/index.cssr.js +136 -0
  91. package/lib/icon-pack/styles/dark.d.ts +123 -0
  92. package/lib/icon-pack/styles/dark.js +22 -0
  93. package/lib/icon-pack/styles/index.d.ts +3 -0
  94. package/lib/icon-pack/styles/index.js +10 -0
  95. package/lib/icon-pack/styles/light.d.ts +143 -0
  96. package/lib/icon-pack/styles/light.js +46 -0
  97. package/lib/icon-wrapper/src/IconWrapper.d.ts +1 -1
  98. package/lib/input/src/Input.js +3 -1
  99. package/lib/pagination/index.d.ts +3 -3
  100. package/lib/pagination/index.js +2 -1
  101. package/lib/pagination/src/Pagination.d.ts +74 -1379
  102. package/lib/pagination/src/Pagination.js +27 -40
  103. package/lib/pagination/src/interface.d.ts +1345 -1
  104. package/lib/pagination/src/interface.js +37 -0
  105. package/lib/themes/dark.js +110 -108
  106. package/lib/themes/light.js +110 -108
  107. package/lib/version.d.ts +1 -1
  108. package/lib/version.js +1 -1
  109. package/package.json +1 -1
  110. package/volar.d.ts +1 -0
  111. package/web-types.json +263 -1
@@ -1,6 +1,19 @@
1
- import type { VNodeChild } from 'vue';
1
+ import type { PropType, VNode, VNodeChild } from 'vue';
2
+ import type { ExtractPublicPropTypes, MaybeArray } from '../../_utils';
3
+ import type { SelectProps } from '../../select';
2
4
  import type { SelectBaseOption } from '../../select/src/interface';
5
+ export interface PaginationSlots {
6
+ default?: () => VNode[];
7
+ goto?: () => VNode[];
8
+ label?: (props: PaginationLabelInfo) => VNode[];
9
+ next?: (props: PaginationInfo) => VNode;
10
+ prev?: (props: PaginationInfo) => VNode;
11
+ prefix?: (props: PaginationInfo) => VNode;
12
+ suffix?: (props: PaginationInfo) => VNode;
13
+ }
3
14
  export type Size = 'small' | 'medium' | 'large';
15
+ export type PaginationVariant = 'default' | 'cursor';
16
+ export type PaginationDisplayOrder = 'size-picker' | 'pages' | 'quick-jumper';
4
17
  export type PaginationInfo = Parameters<RenderPrefix>[0];
5
18
  export type RenderPrefix = (info: {
6
19
  startIndex: number;
@@ -25,3 +38,1334 @@ export type PaginationRenderLabel = (info: {
25
38
  active: boolean;
26
39
  }) => VNodeChild;
27
40
  export type PaginationLabelInfo = Parameters<PaginationRenderLabel>[0];
41
+ export type PaginationProps = ExtractPublicPropTypes<typeof paginationProps>;
42
+ export declare const paginationProps: {
43
+ readonly simple: BooleanConstructor;
44
+ readonly variant: {
45
+ readonly type: PropType<PaginationVariant>;
46
+ readonly default: "default";
47
+ };
48
+ readonly hasPrev: {
49
+ readonly type: BooleanConstructor;
50
+ readonly default: undefined;
51
+ };
52
+ readonly hasNext: {
53
+ readonly type: BooleanConstructor;
54
+ readonly default: undefined;
55
+ };
56
+ readonly page: NumberConstructor;
57
+ readonly defaultPage: {
58
+ readonly type: NumberConstructor;
59
+ readonly default: 1;
60
+ };
61
+ readonly itemCount: NumberConstructor;
62
+ readonly pageCount: NumberConstructor;
63
+ readonly defaultPageCount: {
64
+ readonly type: NumberConstructor;
65
+ readonly default: 1;
66
+ };
67
+ readonly showSizePicker: BooleanConstructor;
68
+ readonly sizePickerLabel: StringConstructor;
69
+ readonly pageSize: NumberConstructor;
70
+ readonly defaultPageSize: NumberConstructor;
71
+ readonly pageSizes: {
72
+ readonly type: PropType<Array<number | PaginationSizeOption>>;
73
+ readonly default: () => number[];
74
+ };
75
+ readonly showQuickJumper: BooleanConstructor;
76
+ readonly size: {
77
+ readonly type: PropType<Size>;
78
+ readonly default: "medium";
79
+ };
80
+ readonly disabled: BooleanConstructor;
81
+ readonly pageSlot: {
82
+ readonly type: NumberConstructor;
83
+ readonly default: 9;
84
+ };
85
+ readonly selectProps: PropType<SelectProps>;
86
+ readonly prev: PropType<RenderPrev>;
87
+ readonly next: PropType<RenderNext>;
88
+ readonly goto: PropType<RenderGoto>;
89
+ readonly prefix: PropType<RenderPrefix>;
90
+ readonly suffix: PropType<RenderSuffix>;
91
+ readonly label: PropType<PaginationRenderLabel>;
92
+ readonly displayOrder: {
93
+ readonly type: PropType<PaginationDisplayOrder[]>;
94
+ readonly default: readonly ["size-picker", "pages", "quick-jumper"];
95
+ };
96
+ readonly to: {
97
+ type: PropType<HTMLElement | string | boolean>;
98
+ default: undefined;
99
+ };
100
+ readonly 'onUpdate:page': PropType<MaybeArray<(page: number) => void>>;
101
+ readonly onUpdatePage: PropType<MaybeArray<(page: number) => void>>;
102
+ readonly 'onUpdate:pageSize': PropType<MaybeArray<(pageSize: number) => void>>;
103
+ readonly onUpdatePageSize: PropType<MaybeArray<(pageSize: number) => void>>;
104
+ /** @deprecated */
105
+ readonly onPageSizeChange: PropType<MaybeArray<(pageSize: number) => void>>;
106
+ /** @deprecated */
107
+ readonly onChange: PropType<MaybeArray<(page: number) => void>>;
108
+ readonly theme: PropType<import("../../_mixins").Theme<"Pagination", {
109
+ itemPaddingSmall: string;
110
+ itemMarginSmall: string;
111
+ itemMarginSmallRtl: string;
112
+ itemPaddingMedium: string;
113
+ itemMarginMedium: string;
114
+ itemMarginMediumRtl: string;
115
+ itemPaddingLarge: string;
116
+ itemMarginLarge: string;
117
+ itemMarginLargeRtl: string;
118
+ buttonIconSizeSmall: string;
119
+ buttonIconSizeMedium: string;
120
+ buttonIconSizeLarge: string;
121
+ inputWidthSmall: string;
122
+ selectWidthSmall: string;
123
+ inputMarginSmall: string;
124
+ inputMarginSmallRtl: string;
125
+ selectMarginSmall: string;
126
+ prefixMarginSmall: string;
127
+ suffixMarginSmall: string;
128
+ inputWidthMedium: string;
129
+ selectWidthMedium: string;
130
+ inputMarginMedium: string;
131
+ inputMarginMediumRtl: string;
132
+ selectMarginMedium: string;
133
+ prefixMarginMedium: string;
134
+ suffixMarginMedium: string;
135
+ inputWidthLarge: string;
136
+ selectWidthLarge: string;
137
+ inputMarginLarge: string;
138
+ inputMarginLargeRtl: string;
139
+ selectMarginLarge: string;
140
+ prefixMarginLarge: string;
141
+ suffixMarginLarge: string;
142
+ buttonColor: string;
143
+ buttonColorHover: string;
144
+ buttonColorPressed: string;
145
+ buttonBorder: string;
146
+ buttonBorderHover: string;
147
+ buttonBorderPressed: string;
148
+ buttonIconColor: string;
149
+ buttonIconColorHover: string;
150
+ buttonIconColorPressed: string;
151
+ itemTextColor: string;
152
+ itemTextColorHover: string;
153
+ itemTextColorPressed: string;
154
+ itemTextColorActive: string;
155
+ itemTextColorDisabled: string;
156
+ itemColor: string;
157
+ itemColorHover: string;
158
+ itemColorPressed: string;
159
+ itemColorActive: string;
160
+ itemColorActiveHover: string;
161
+ itemColorDisabled: string;
162
+ itemBorder: string;
163
+ itemBorderHover: string;
164
+ itemBorderPressed: string;
165
+ itemBorderActive: string;
166
+ itemBorderDisabled: string;
167
+ itemBorderRadius: string;
168
+ itemSizeSmall: string;
169
+ itemSizeMedium: string;
170
+ itemSizeLarge: string;
171
+ itemFontSizeSmall: string;
172
+ itemFontSizeMedium: string;
173
+ itemFontSizeLarge: string;
174
+ jumperFontSizeSmall: string;
175
+ jumperFontSizeMedium: string;
176
+ jumperFontSizeLarge: string;
177
+ jumperTextColor: string;
178
+ jumperTextColorDisabled: string;
179
+ paginationSizePickerBackground: string;
180
+ paginationSizePickerBorder: string;
181
+ }, {
182
+ Select: import("../../_mixins").Theme<"Select", {
183
+ menuBoxShadow: string;
184
+ }, {
185
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
186
+ paddingTiny: string;
187
+ paddingSmall: string;
188
+ paddingMedium: string;
189
+ paddingLarge: string;
190
+ paddingHuge: string;
191
+ clearSizeTiny: string;
192
+ clearSizeSmall: string;
193
+ clearSizeMedium: string;
194
+ clearSizeLarge: string;
195
+ clearSizeHuge: string;
196
+ arrowSizeTiny: string;
197
+ arrowSizeSmall: string;
198
+ arrowSizeMedium: string;
199
+ arrowSizeLarge: string;
200
+ arrowSizeHuge: string;
201
+ fontSizeTiny: string;
202
+ fontSizeSmall: string;
203
+ fontSizeMedium: string;
204
+ fontSizeLarge: string;
205
+ fontSizeHuge: string;
206
+ lineHeightTiny: string;
207
+ lineHeightSmall: string;
208
+ lineHeightMedium: string;
209
+ lineHeightLarge: string;
210
+ lineHeightHuge: string;
211
+ heightTiny: string;
212
+ heightSmall: string;
213
+ heightMedium: string;
214
+ heightLarge: string;
215
+ heightHuge: string;
216
+ borderRadiusTiny: string;
217
+ borderRadiusSmall: string;
218
+ borderRadiusMedium: string;
219
+ borderRadiusLarge: string;
220
+ borderRadiusHuge: string;
221
+ textColor: string;
222
+ textColorDisabled: string;
223
+ placeholderColor: string;
224
+ placeholderColorDisabled: string;
225
+ color: string;
226
+ colorFilled: string;
227
+ colorDisabled: string;
228
+ colorActive: string;
229
+ border: string;
230
+ borderFilled: string;
231
+ borderHover: string;
232
+ borderActive: string;
233
+ borderFocus: string;
234
+ borderDisabled: string;
235
+ boxShadowHover: string;
236
+ boxShadowActive: string;
237
+ boxShadowFocus: string;
238
+ caretColor: string;
239
+ arrowColor: string;
240
+ arrowColorHover: string;
241
+ arrowColorDisabled: string;
242
+ loadingColor: string;
243
+ borderWarning: string;
244
+ borderHoverWarning: string;
245
+ borderActiveWarning: string;
246
+ borderFocusWarning: string;
247
+ boxShadowHoverWarning: string;
248
+ boxShadowActiveWarning: string;
249
+ boxShadowFocusWarning: string;
250
+ colorActiveWarning: string;
251
+ caretColorWarning: string;
252
+ borderError: string;
253
+ borderHoverError: string;
254
+ borderActiveError: string;
255
+ borderFocusError: string;
256
+ boxShadowHoverError: string;
257
+ boxShadowActiveError: string;
258
+ boxShadowFocusError: string;
259
+ colorActiveError: string;
260
+ caretColorError: string;
261
+ clearColor: string;
262
+ clearColorHover: string;
263
+ clearColorPressed: string;
264
+ caretColorSecondary: string;
265
+ filterCounterTextColor: string;
266
+ filterCounterTextColorDisabled: string;
267
+ arrowColorSecondary: string;
268
+ clearColorSecondary: string;
269
+ colorSecondary: string;
270
+ textColorSecondary: string;
271
+ borderSecondary: string;
272
+ arrowColorDisabledSecondary: string;
273
+ clearColorDisabledSecondary: string;
274
+ colorDisabledSecondary: string;
275
+ textColorDisabledSecondary: string;
276
+ borderDisabledSecondary: string;
277
+ arrowColorHoverSecondary: string;
278
+ clearColorHoverSecondary: string;
279
+ colorHoverSecondary: string;
280
+ textColorHoverSecondary: string;
281
+ borderHoverSecondary: string;
282
+ arrowColorFocusSecondary: string;
283
+ clearColorFocusSecondary: string;
284
+ colorFocusSecondary: string;
285
+ textColorFocusSecondary: string;
286
+ borderFocusSecondary: string;
287
+ arrowColorActiveSecondary: string;
288
+ clearColorActiveSecondary: string;
289
+ colorActiveSecondary: string;
290
+ textColorActiveSecondary: string;
291
+ borderActiveSecondary: string;
292
+ }, {
293
+ Popover: import("../../_mixins").Theme<"Popover", {
294
+ space: string;
295
+ spaceArrow: string;
296
+ arrowOffset: string;
297
+ arrowOffsetVertical: string;
298
+ arrowHeight: string;
299
+ padding: string;
300
+ fontSize: string;
301
+ borderRadius: string;
302
+ color: string;
303
+ dividerColor: string;
304
+ textColor: string;
305
+ boxShadow: string;
306
+ }, any>;
307
+ }>;
308
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
309
+ height: string;
310
+ paddingSmall: string;
311
+ paddingMedium: string;
312
+ paddingLarge: string;
313
+ optionPaddingSmall: string;
314
+ optionPaddingMedium: string;
315
+ optionPaddingLarge: string;
316
+ loadingSize: string;
317
+ optionFontSizeSmall: string;
318
+ optionFontSizeMedium: string;
319
+ optionFontSizeLarge: string;
320
+ optionHeightSmall: string;
321
+ optionHeightMedium: string;
322
+ optionHeightLarge: string;
323
+ optionBorderRadius: string;
324
+ borderRadius: string;
325
+ color: string;
326
+ groupHeaderTextColor: string;
327
+ actionDividerColor: string;
328
+ optionTextColor: string;
329
+ optionTextColorPressed: string;
330
+ optionTextColorDisabled: string;
331
+ optionTextColorActive: string;
332
+ optionOpacityDisabled: string;
333
+ optionCheckColor: string;
334
+ optionColorPending: string;
335
+ optionColorActive: string;
336
+ optionGroupHeaderBorderColor: string;
337
+ optionColorActivePending: string;
338
+ actionTextColor: string;
339
+ loadingColor: string;
340
+ }, {
341
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
342
+ height: string;
343
+ width: string;
344
+ borderRadius: string;
345
+ color: string;
346
+ colorHover: string;
347
+ railInsetHorizontalBottom: string;
348
+ railInsetHorizontalTop: string;
349
+ railInsetVerticalRight: string;
350
+ railInsetVerticalLeft: string;
351
+ railColor: string;
352
+ }, any>;
353
+ Empty: import("../../_mixins").Theme<"Empty", {
354
+ iconSizeSmall: string;
355
+ iconSizeMedium: string;
356
+ iconSizeLarge: string;
357
+ iconSizeHuge: string;
358
+ titleFontSizeSmall: string;
359
+ titleFontSizeMedium: string;
360
+ titleFontSizeLarge: string;
361
+ titleFontSizeHuge: string;
362
+ descriptionFontSizeSmall: string;
363
+ descriptionFontSizeMedium: string;
364
+ descriptionFontSizeLarge: string;
365
+ descriptionFontSizeHuge: string;
366
+ titleColor: string;
367
+ descriptionColor: string;
368
+ iconColor: string;
369
+ iconBgColor: string;
370
+ extraTextColor: string;
371
+ }, any>;
372
+ }>;
373
+ }>;
374
+ Input: import("../../_mixins").Theme<"Input", {
375
+ paddingTiny: string;
376
+ paddingSmall: string;
377
+ paddingMedium: string;
378
+ paddingLarge: string;
379
+ paddingHuge: string;
380
+ clearSize: string;
381
+ countTextColorDisabled: string;
382
+ countTextColor: string;
383
+ heightTiny: string;
384
+ heightSmall: string;
385
+ heightMedium: string;
386
+ heightLarge: string;
387
+ heightHuge: string;
388
+ fontSizeTiny: string;
389
+ fontSizeSmall: string;
390
+ fontSizeMedium: string;
391
+ fontSizeLarge: string;
392
+ fontSizeHuge: string;
393
+ lineHeight: string;
394
+ lineHeightTextarea: string;
395
+ borderRadius: string;
396
+ iconSize: string;
397
+ groupLabelTextColor: string;
398
+ textColor: string;
399
+ textColorDisabled: string;
400
+ textDecorationColor: string;
401
+ caretColor: string;
402
+ placeholderColor: string;
403
+ placeholderColorDisabled: string;
404
+ color: string;
405
+ colorDisabled: string;
406
+ colorFocus: string;
407
+ groupLabelBorder: string;
408
+ border: string;
409
+ borderHover: string;
410
+ borderDisabled: string;
411
+ borderFocus: string;
412
+ boxShadowFocus: string;
413
+ loadingColor: string;
414
+ loadingColorSuccess: string;
415
+ borderSuccess: string;
416
+ borderHoverSuccess: string;
417
+ colorFocusSuccess: string;
418
+ borderFocusSuccess: string;
419
+ boxShadowFocusSuccess: string;
420
+ caretColorSuccess: string;
421
+ loadingColorWarning: string;
422
+ borderWarning: string;
423
+ borderHoverWarning: string;
424
+ colorFocusWarning: string;
425
+ borderFocusWarning: string;
426
+ boxShadowFocusWarning: string;
427
+ caretColorWarning: string;
428
+ loadingColorError: string;
429
+ borderError: string;
430
+ borderHoverError: string;
431
+ colorFocusError: string;
432
+ borderFocusError: string;
433
+ boxShadowFocusError: string;
434
+ caretColorError: string;
435
+ clearColor: string;
436
+ clearColorHover: string;
437
+ clearColorPressed: string;
438
+ iconColor: string;
439
+ iconColorDisabled: string;
440
+ iconColorHover: string;
441
+ iconColorPressed: string;
442
+ suffixTextColor: string;
443
+ selectionColor: string;
444
+ }, any>;
445
+ Popselect: import("../../_mixins").Theme<"Popselect", {
446
+ menuBoxShadow: string;
447
+ }, {
448
+ Popover: import("../../_mixins").Theme<"Popover", {
449
+ space: string;
450
+ spaceArrow: string;
451
+ arrowOffset: string;
452
+ arrowOffsetVertical: string;
453
+ arrowHeight: string;
454
+ padding: string;
455
+ fontSize: string;
456
+ borderRadius: string;
457
+ color: string;
458
+ dividerColor: string;
459
+ textColor: string;
460
+ boxShadow: string;
461
+ }, any>;
462
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
463
+ height: string;
464
+ paddingSmall: string;
465
+ paddingMedium: string;
466
+ paddingLarge: string;
467
+ optionPaddingSmall: string;
468
+ optionPaddingMedium: string;
469
+ optionPaddingLarge: string;
470
+ loadingSize: string;
471
+ optionFontSizeSmall: string;
472
+ optionFontSizeMedium: string;
473
+ optionFontSizeLarge: string;
474
+ optionHeightSmall: string;
475
+ optionHeightMedium: string;
476
+ optionHeightLarge: string;
477
+ optionBorderRadius: string;
478
+ borderRadius: string;
479
+ color: string;
480
+ groupHeaderTextColor: string;
481
+ actionDividerColor: string;
482
+ optionTextColor: string;
483
+ optionTextColorPressed: string;
484
+ optionTextColorDisabled: string;
485
+ optionTextColorActive: string;
486
+ optionOpacityDisabled: string;
487
+ optionCheckColor: string;
488
+ optionColorPending: string;
489
+ optionColorActive: string;
490
+ optionGroupHeaderBorderColor: string;
491
+ optionColorActivePending: string;
492
+ actionTextColor: string;
493
+ loadingColor: string;
494
+ }, {
495
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
496
+ height: string;
497
+ width: string;
498
+ borderRadius: string;
499
+ color: string;
500
+ colorHover: string;
501
+ railInsetHorizontalBottom: string;
502
+ railInsetHorizontalTop: string;
503
+ railInsetVerticalRight: string;
504
+ railInsetVerticalLeft: string;
505
+ railColor: string;
506
+ }, any>;
507
+ Empty: import("../../_mixins").Theme<"Empty", {
508
+ iconSizeSmall: string;
509
+ iconSizeMedium: string;
510
+ iconSizeLarge: string;
511
+ iconSizeHuge: string;
512
+ titleFontSizeSmall: string;
513
+ titleFontSizeMedium: string;
514
+ titleFontSizeLarge: string;
515
+ titleFontSizeHuge: string;
516
+ descriptionFontSizeSmall: string;
517
+ descriptionFontSizeMedium: string;
518
+ descriptionFontSizeLarge: string;
519
+ descriptionFontSizeHuge: string;
520
+ titleColor: string;
521
+ descriptionColor: string;
522
+ iconColor: string;
523
+ iconBgColor: string;
524
+ extraTextColor: string;
525
+ }, any>;
526
+ }>;
527
+ }>;
528
+ }>>;
529
+ readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
530
+ itemPaddingSmall: string;
531
+ itemMarginSmall: string;
532
+ itemMarginSmallRtl: string;
533
+ itemPaddingMedium: string;
534
+ itemMarginMedium: string;
535
+ itemMarginMediumRtl: string;
536
+ itemPaddingLarge: string;
537
+ itemMarginLarge: string;
538
+ itemMarginLargeRtl: string;
539
+ buttonIconSizeSmall: string;
540
+ buttonIconSizeMedium: string;
541
+ buttonIconSizeLarge: string;
542
+ inputWidthSmall: string;
543
+ selectWidthSmall: string;
544
+ inputMarginSmall: string;
545
+ inputMarginSmallRtl: string;
546
+ selectMarginSmall: string;
547
+ prefixMarginSmall: string;
548
+ suffixMarginSmall: string;
549
+ inputWidthMedium: string;
550
+ selectWidthMedium: string;
551
+ inputMarginMedium: string;
552
+ inputMarginMediumRtl: string;
553
+ selectMarginMedium: string;
554
+ prefixMarginMedium: string;
555
+ suffixMarginMedium: string;
556
+ inputWidthLarge: string;
557
+ selectWidthLarge: string;
558
+ inputMarginLarge: string;
559
+ inputMarginLargeRtl: string;
560
+ selectMarginLarge: string;
561
+ prefixMarginLarge: string;
562
+ suffixMarginLarge: string;
563
+ buttonColor: string;
564
+ buttonColorHover: string;
565
+ buttonColorPressed: string;
566
+ buttonBorder: string;
567
+ buttonBorderHover: string;
568
+ buttonBorderPressed: string;
569
+ buttonIconColor: string;
570
+ buttonIconColorHover: string;
571
+ buttonIconColorPressed: string;
572
+ itemTextColor: string;
573
+ itemTextColorHover: string;
574
+ itemTextColorPressed: string;
575
+ itemTextColorActive: string;
576
+ itemTextColorDisabled: string;
577
+ itemColor: string;
578
+ itemColorHover: string;
579
+ itemColorPressed: string;
580
+ itemColorActive: string;
581
+ itemColorActiveHover: string;
582
+ itemColorDisabled: string;
583
+ itemBorder: string;
584
+ itemBorderHover: string;
585
+ itemBorderPressed: string;
586
+ itemBorderActive: string;
587
+ itemBorderDisabled: string;
588
+ itemBorderRadius: string;
589
+ itemSizeSmall: string;
590
+ itemSizeMedium: string;
591
+ itemSizeLarge: string;
592
+ itemFontSizeSmall: string;
593
+ itemFontSizeMedium: string;
594
+ itemFontSizeLarge: string;
595
+ jumperFontSizeSmall: string;
596
+ jumperFontSizeMedium: string;
597
+ jumperFontSizeLarge: string;
598
+ jumperTextColor: string;
599
+ jumperTextColorDisabled: string;
600
+ paginationSizePickerBackground: string;
601
+ paginationSizePickerBorder: string;
602
+ }, {
603
+ Select: import("../../_mixins").Theme<"Select", {
604
+ menuBoxShadow: string;
605
+ }, {
606
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
607
+ paddingTiny: string;
608
+ paddingSmall: string;
609
+ paddingMedium: string;
610
+ paddingLarge: string;
611
+ paddingHuge: string;
612
+ clearSizeTiny: string;
613
+ clearSizeSmall: string;
614
+ clearSizeMedium: string;
615
+ clearSizeLarge: string;
616
+ clearSizeHuge: string;
617
+ arrowSizeTiny: string;
618
+ arrowSizeSmall: string;
619
+ arrowSizeMedium: string;
620
+ arrowSizeLarge: string;
621
+ arrowSizeHuge: string;
622
+ fontSizeTiny: string;
623
+ fontSizeSmall: string;
624
+ fontSizeMedium: string;
625
+ fontSizeLarge: string;
626
+ fontSizeHuge: string;
627
+ lineHeightTiny: string;
628
+ lineHeightSmall: string;
629
+ lineHeightMedium: string;
630
+ lineHeightLarge: string;
631
+ lineHeightHuge: string;
632
+ heightTiny: string;
633
+ heightSmall: string;
634
+ heightMedium: string;
635
+ heightLarge: string;
636
+ heightHuge: string;
637
+ borderRadiusTiny: string;
638
+ borderRadiusSmall: string;
639
+ borderRadiusMedium: string;
640
+ borderRadiusLarge: string;
641
+ borderRadiusHuge: string;
642
+ textColor: string;
643
+ textColorDisabled: string;
644
+ placeholderColor: string;
645
+ placeholderColorDisabled: string;
646
+ color: string;
647
+ colorFilled: string;
648
+ colorDisabled: string;
649
+ colorActive: string;
650
+ border: string;
651
+ borderFilled: string;
652
+ borderHover: string;
653
+ borderActive: string;
654
+ borderFocus: string;
655
+ borderDisabled: string;
656
+ boxShadowHover: string;
657
+ boxShadowActive: string;
658
+ boxShadowFocus: string;
659
+ caretColor: string;
660
+ arrowColor: string;
661
+ arrowColorHover: string;
662
+ arrowColorDisabled: string;
663
+ loadingColor: string;
664
+ borderWarning: string;
665
+ borderHoverWarning: string;
666
+ borderActiveWarning: string;
667
+ borderFocusWarning: string;
668
+ boxShadowHoverWarning: string;
669
+ boxShadowActiveWarning: string;
670
+ boxShadowFocusWarning: string;
671
+ colorActiveWarning: string;
672
+ caretColorWarning: string;
673
+ borderError: string;
674
+ borderHoverError: string;
675
+ borderActiveError: string;
676
+ borderFocusError: string;
677
+ boxShadowHoverError: string;
678
+ boxShadowActiveError: string;
679
+ boxShadowFocusError: string;
680
+ colorActiveError: string;
681
+ caretColorError: string;
682
+ clearColor: string;
683
+ clearColorHover: string;
684
+ clearColorPressed: string;
685
+ caretColorSecondary: string;
686
+ filterCounterTextColor: string;
687
+ filterCounterTextColorDisabled: string;
688
+ arrowColorSecondary: string;
689
+ clearColorSecondary: string;
690
+ colorSecondary: string;
691
+ textColorSecondary: string;
692
+ borderSecondary: string;
693
+ arrowColorDisabledSecondary: string;
694
+ clearColorDisabledSecondary: string;
695
+ colorDisabledSecondary: string;
696
+ textColorDisabledSecondary: string;
697
+ borderDisabledSecondary: string;
698
+ arrowColorHoverSecondary: string;
699
+ clearColorHoverSecondary: string;
700
+ colorHoverSecondary: string;
701
+ textColorHoverSecondary: string;
702
+ borderHoverSecondary: string;
703
+ arrowColorFocusSecondary: string;
704
+ clearColorFocusSecondary: string;
705
+ colorFocusSecondary: string;
706
+ textColorFocusSecondary: string;
707
+ borderFocusSecondary: string;
708
+ arrowColorActiveSecondary: string;
709
+ clearColorActiveSecondary: string;
710
+ colorActiveSecondary: string;
711
+ textColorActiveSecondary: string;
712
+ borderActiveSecondary: string;
713
+ }, {
714
+ Popover: import("../../_mixins").Theme<"Popover", {
715
+ space: string;
716
+ spaceArrow: string;
717
+ arrowOffset: string;
718
+ arrowOffsetVertical: string;
719
+ arrowHeight: string;
720
+ padding: string;
721
+ fontSize: string;
722
+ borderRadius: string;
723
+ color: string;
724
+ dividerColor: string;
725
+ textColor: string;
726
+ boxShadow: string;
727
+ }, any>;
728
+ }>;
729
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
730
+ height: string;
731
+ paddingSmall: string;
732
+ paddingMedium: string;
733
+ paddingLarge: string;
734
+ optionPaddingSmall: string;
735
+ optionPaddingMedium: string;
736
+ optionPaddingLarge: string;
737
+ loadingSize: string;
738
+ optionFontSizeSmall: string;
739
+ optionFontSizeMedium: string;
740
+ optionFontSizeLarge: string;
741
+ optionHeightSmall: string;
742
+ optionHeightMedium: string;
743
+ optionHeightLarge: string;
744
+ optionBorderRadius: string;
745
+ borderRadius: string;
746
+ color: string;
747
+ groupHeaderTextColor: string;
748
+ actionDividerColor: string;
749
+ optionTextColor: string;
750
+ optionTextColorPressed: string;
751
+ optionTextColorDisabled: string;
752
+ optionTextColorActive: string;
753
+ optionOpacityDisabled: string;
754
+ optionCheckColor: string;
755
+ optionColorPending: string;
756
+ optionColorActive: string;
757
+ optionGroupHeaderBorderColor: string;
758
+ optionColorActivePending: string;
759
+ actionTextColor: string;
760
+ loadingColor: string;
761
+ }, {
762
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
763
+ height: string;
764
+ width: string;
765
+ borderRadius: string;
766
+ color: string;
767
+ colorHover: string;
768
+ railInsetHorizontalBottom: string;
769
+ railInsetHorizontalTop: string;
770
+ railInsetVerticalRight: string;
771
+ railInsetVerticalLeft: string;
772
+ railColor: string;
773
+ }, any>;
774
+ Empty: import("../../_mixins").Theme<"Empty", {
775
+ iconSizeSmall: string;
776
+ iconSizeMedium: string;
777
+ iconSizeLarge: string;
778
+ iconSizeHuge: string;
779
+ titleFontSizeSmall: string;
780
+ titleFontSizeMedium: string;
781
+ titleFontSizeLarge: string;
782
+ titleFontSizeHuge: string;
783
+ descriptionFontSizeSmall: string;
784
+ descriptionFontSizeMedium: string;
785
+ descriptionFontSizeLarge: string;
786
+ descriptionFontSizeHuge: string;
787
+ titleColor: string;
788
+ descriptionColor: string;
789
+ iconColor: string;
790
+ iconBgColor: string;
791
+ extraTextColor: string;
792
+ }, any>;
793
+ }>;
794
+ }>;
795
+ Input: import("../../_mixins").Theme<"Input", {
796
+ paddingTiny: string;
797
+ paddingSmall: string;
798
+ paddingMedium: string;
799
+ paddingLarge: string;
800
+ paddingHuge: string;
801
+ clearSize: string;
802
+ countTextColorDisabled: string;
803
+ countTextColor: string;
804
+ heightTiny: string;
805
+ heightSmall: string;
806
+ heightMedium: string;
807
+ heightLarge: string;
808
+ heightHuge: string;
809
+ fontSizeTiny: string;
810
+ fontSizeSmall: string;
811
+ fontSizeMedium: string;
812
+ fontSizeLarge: string;
813
+ fontSizeHuge: string;
814
+ lineHeight: string;
815
+ lineHeightTextarea: string;
816
+ borderRadius: string;
817
+ iconSize: string;
818
+ groupLabelTextColor: string;
819
+ textColor: string;
820
+ textColorDisabled: string;
821
+ textDecorationColor: string;
822
+ caretColor: string;
823
+ placeholderColor: string;
824
+ placeholderColorDisabled: string;
825
+ color: string;
826
+ colorDisabled: string;
827
+ colorFocus: string;
828
+ groupLabelBorder: string;
829
+ border: string;
830
+ borderHover: string;
831
+ borderDisabled: string;
832
+ borderFocus: string;
833
+ boxShadowFocus: string;
834
+ loadingColor: string;
835
+ loadingColorSuccess: string;
836
+ borderSuccess: string;
837
+ borderHoverSuccess: string;
838
+ colorFocusSuccess: string;
839
+ borderFocusSuccess: string;
840
+ boxShadowFocusSuccess: string;
841
+ caretColorSuccess: string;
842
+ loadingColorWarning: string;
843
+ borderWarning: string;
844
+ borderHoverWarning: string;
845
+ colorFocusWarning: string;
846
+ borderFocusWarning: string;
847
+ boxShadowFocusWarning: string;
848
+ caretColorWarning: string;
849
+ loadingColorError: string;
850
+ borderError: string;
851
+ borderHoverError: string;
852
+ colorFocusError: string;
853
+ borderFocusError: string;
854
+ boxShadowFocusError: string;
855
+ caretColorError: string;
856
+ clearColor: string;
857
+ clearColorHover: string;
858
+ clearColorPressed: string;
859
+ iconColor: string;
860
+ iconColorDisabled: string;
861
+ iconColorHover: string;
862
+ iconColorPressed: string;
863
+ suffixTextColor: string;
864
+ selectionColor: string;
865
+ }, any>;
866
+ Popselect: import("../../_mixins").Theme<"Popselect", {
867
+ menuBoxShadow: string;
868
+ }, {
869
+ Popover: import("../../_mixins").Theme<"Popover", {
870
+ space: string;
871
+ spaceArrow: string;
872
+ arrowOffset: string;
873
+ arrowOffsetVertical: string;
874
+ arrowHeight: string;
875
+ padding: string;
876
+ fontSize: string;
877
+ borderRadius: string;
878
+ color: string;
879
+ dividerColor: string;
880
+ textColor: string;
881
+ boxShadow: string;
882
+ }, any>;
883
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
884
+ height: string;
885
+ paddingSmall: string;
886
+ paddingMedium: string;
887
+ paddingLarge: string;
888
+ optionPaddingSmall: string;
889
+ optionPaddingMedium: string;
890
+ optionPaddingLarge: string;
891
+ loadingSize: string;
892
+ optionFontSizeSmall: string;
893
+ optionFontSizeMedium: string;
894
+ optionFontSizeLarge: string;
895
+ optionHeightSmall: string;
896
+ optionHeightMedium: string;
897
+ optionHeightLarge: string;
898
+ optionBorderRadius: string;
899
+ borderRadius: string;
900
+ color: string;
901
+ groupHeaderTextColor: string;
902
+ actionDividerColor: string;
903
+ optionTextColor: string;
904
+ optionTextColorPressed: string;
905
+ optionTextColorDisabled: string;
906
+ optionTextColorActive: string;
907
+ optionOpacityDisabled: string;
908
+ optionCheckColor: string;
909
+ optionColorPending: string;
910
+ optionColorActive: string;
911
+ optionGroupHeaderBorderColor: string;
912
+ optionColorActivePending: string;
913
+ actionTextColor: string;
914
+ loadingColor: string;
915
+ }, {
916
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
917
+ height: string;
918
+ width: string;
919
+ borderRadius: string;
920
+ color: string;
921
+ colorHover: string;
922
+ railInsetHorizontalBottom: string;
923
+ railInsetHorizontalTop: string;
924
+ railInsetVerticalRight: string;
925
+ railInsetVerticalLeft: string;
926
+ railColor: string;
927
+ }, any>;
928
+ Empty: import("../../_mixins").Theme<"Empty", {
929
+ iconSizeSmall: string;
930
+ iconSizeMedium: string;
931
+ iconSizeLarge: string;
932
+ iconSizeHuge: string;
933
+ titleFontSizeSmall: string;
934
+ titleFontSizeMedium: string;
935
+ titleFontSizeLarge: string;
936
+ titleFontSizeHuge: string;
937
+ descriptionFontSizeSmall: string;
938
+ descriptionFontSizeMedium: string;
939
+ descriptionFontSizeLarge: string;
940
+ descriptionFontSizeHuge: string;
941
+ titleColor: string;
942
+ descriptionColor: string;
943
+ iconColor: string;
944
+ iconBgColor: string;
945
+ extraTextColor: string;
946
+ }, any>;
947
+ }>;
948
+ }>;
949
+ }>>>;
950
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Pagination", {
951
+ itemPaddingSmall: string;
952
+ itemMarginSmall: string;
953
+ itemMarginSmallRtl: string;
954
+ itemPaddingMedium: string;
955
+ itemMarginMedium: string;
956
+ itemMarginMediumRtl: string;
957
+ itemPaddingLarge: string;
958
+ itemMarginLarge: string;
959
+ itemMarginLargeRtl: string;
960
+ buttonIconSizeSmall: string;
961
+ buttonIconSizeMedium: string;
962
+ buttonIconSizeLarge: string;
963
+ inputWidthSmall: string;
964
+ selectWidthSmall: string;
965
+ inputMarginSmall: string;
966
+ inputMarginSmallRtl: string;
967
+ selectMarginSmall: string;
968
+ prefixMarginSmall: string;
969
+ suffixMarginSmall: string;
970
+ inputWidthMedium: string;
971
+ selectWidthMedium: string;
972
+ inputMarginMedium: string;
973
+ inputMarginMediumRtl: string;
974
+ selectMarginMedium: string;
975
+ prefixMarginMedium: string;
976
+ suffixMarginMedium: string;
977
+ inputWidthLarge: string;
978
+ selectWidthLarge: string;
979
+ inputMarginLarge: string;
980
+ inputMarginLargeRtl: string;
981
+ selectMarginLarge: string;
982
+ prefixMarginLarge: string;
983
+ suffixMarginLarge: string;
984
+ buttonColor: string;
985
+ buttonColorHover: string;
986
+ buttonColorPressed: string;
987
+ buttonBorder: string;
988
+ buttonBorderHover: string;
989
+ buttonBorderPressed: string;
990
+ buttonIconColor: string;
991
+ buttonIconColorHover: string;
992
+ buttonIconColorPressed: string;
993
+ itemTextColor: string;
994
+ itemTextColorHover: string;
995
+ itemTextColorPressed: string;
996
+ itemTextColorActive: string;
997
+ itemTextColorDisabled: string;
998
+ itemColor: string;
999
+ itemColorHover: string;
1000
+ itemColorPressed: string;
1001
+ itemColorActive: string;
1002
+ itemColorActiveHover: string;
1003
+ itemColorDisabled: string;
1004
+ itemBorder: string;
1005
+ itemBorderHover: string;
1006
+ itemBorderPressed: string;
1007
+ itemBorderActive: string;
1008
+ itemBorderDisabled: string;
1009
+ itemBorderRadius: string;
1010
+ itemSizeSmall: string;
1011
+ itemSizeMedium: string;
1012
+ itemSizeLarge: string;
1013
+ itemFontSizeSmall: string;
1014
+ itemFontSizeMedium: string;
1015
+ itemFontSizeLarge: string;
1016
+ jumperFontSizeSmall: string;
1017
+ jumperFontSizeMedium: string;
1018
+ jumperFontSizeLarge: string;
1019
+ jumperTextColor: string;
1020
+ jumperTextColorDisabled: string;
1021
+ paginationSizePickerBackground: string;
1022
+ paginationSizePickerBorder: string;
1023
+ }, {
1024
+ Select: import("../../_mixins").Theme<"Select", {
1025
+ menuBoxShadow: string;
1026
+ }, {
1027
+ InternalSelection: import("../../_mixins").Theme<"InternalSelection", {
1028
+ paddingTiny: string;
1029
+ paddingSmall: string;
1030
+ paddingMedium: string;
1031
+ paddingLarge: string;
1032
+ paddingHuge: string;
1033
+ clearSizeTiny: string;
1034
+ clearSizeSmall: string;
1035
+ clearSizeMedium: string;
1036
+ clearSizeLarge: string;
1037
+ clearSizeHuge: string;
1038
+ arrowSizeTiny: string;
1039
+ arrowSizeSmall: string;
1040
+ arrowSizeMedium: string;
1041
+ arrowSizeLarge: string;
1042
+ arrowSizeHuge: string;
1043
+ fontSizeTiny: string;
1044
+ fontSizeSmall: string;
1045
+ fontSizeMedium: string;
1046
+ fontSizeLarge: string;
1047
+ fontSizeHuge: string;
1048
+ lineHeightTiny: string;
1049
+ lineHeightSmall: string;
1050
+ lineHeightMedium: string;
1051
+ lineHeightLarge: string;
1052
+ lineHeightHuge: string;
1053
+ heightTiny: string;
1054
+ heightSmall: string;
1055
+ heightMedium: string;
1056
+ heightLarge: string;
1057
+ heightHuge: string;
1058
+ borderRadiusTiny: string;
1059
+ borderRadiusSmall: string;
1060
+ borderRadiusMedium: string;
1061
+ borderRadiusLarge: string;
1062
+ borderRadiusHuge: string;
1063
+ textColor: string;
1064
+ textColorDisabled: string;
1065
+ placeholderColor: string;
1066
+ placeholderColorDisabled: string;
1067
+ color: string;
1068
+ colorFilled: string;
1069
+ colorDisabled: string;
1070
+ colorActive: string;
1071
+ border: string;
1072
+ borderFilled: string;
1073
+ borderHover: string;
1074
+ borderActive: string;
1075
+ borderFocus: string;
1076
+ borderDisabled: string;
1077
+ boxShadowHover: string;
1078
+ boxShadowActive: string;
1079
+ boxShadowFocus: string;
1080
+ caretColor: string;
1081
+ arrowColor: string;
1082
+ arrowColorHover: string;
1083
+ arrowColorDisabled: string;
1084
+ loadingColor: string;
1085
+ borderWarning: string;
1086
+ borderHoverWarning: string;
1087
+ borderActiveWarning: string;
1088
+ borderFocusWarning: string;
1089
+ boxShadowHoverWarning: string;
1090
+ boxShadowActiveWarning: string;
1091
+ boxShadowFocusWarning: string;
1092
+ colorActiveWarning: string;
1093
+ caretColorWarning: string;
1094
+ borderError: string;
1095
+ borderHoverError: string;
1096
+ borderActiveError: string;
1097
+ borderFocusError: string;
1098
+ boxShadowHoverError: string;
1099
+ boxShadowActiveError: string;
1100
+ boxShadowFocusError: string;
1101
+ colorActiveError: string;
1102
+ caretColorError: string;
1103
+ clearColor: string;
1104
+ clearColorHover: string;
1105
+ clearColorPressed: string;
1106
+ caretColorSecondary: string;
1107
+ filterCounterTextColor: string;
1108
+ filterCounterTextColorDisabled: string;
1109
+ arrowColorSecondary: string;
1110
+ clearColorSecondary: string;
1111
+ colorSecondary: string;
1112
+ textColorSecondary: string;
1113
+ borderSecondary: string;
1114
+ arrowColorDisabledSecondary: string;
1115
+ clearColorDisabledSecondary: string;
1116
+ colorDisabledSecondary: string;
1117
+ textColorDisabledSecondary: string;
1118
+ borderDisabledSecondary: string;
1119
+ arrowColorHoverSecondary: string;
1120
+ clearColorHoverSecondary: string;
1121
+ colorHoverSecondary: string;
1122
+ textColorHoverSecondary: string;
1123
+ borderHoverSecondary: string;
1124
+ arrowColorFocusSecondary: string;
1125
+ clearColorFocusSecondary: string;
1126
+ colorFocusSecondary: string;
1127
+ textColorFocusSecondary: string;
1128
+ borderFocusSecondary: string;
1129
+ arrowColorActiveSecondary: string;
1130
+ clearColorActiveSecondary: string;
1131
+ colorActiveSecondary: string;
1132
+ textColorActiveSecondary: string;
1133
+ borderActiveSecondary: string;
1134
+ }, {
1135
+ Popover: import("../../_mixins").Theme<"Popover", {
1136
+ space: string;
1137
+ spaceArrow: string;
1138
+ arrowOffset: string;
1139
+ arrowOffsetVertical: string;
1140
+ arrowHeight: string;
1141
+ padding: string;
1142
+ fontSize: string;
1143
+ borderRadius: string;
1144
+ color: string;
1145
+ dividerColor: string;
1146
+ textColor: string;
1147
+ boxShadow: string;
1148
+ }, any>;
1149
+ }>;
1150
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1151
+ height: string;
1152
+ paddingSmall: string;
1153
+ paddingMedium: string;
1154
+ paddingLarge: string;
1155
+ optionPaddingSmall: string;
1156
+ optionPaddingMedium: string;
1157
+ optionPaddingLarge: string;
1158
+ loadingSize: string;
1159
+ optionFontSizeSmall: string;
1160
+ optionFontSizeMedium: string;
1161
+ optionFontSizeLarge: string;
1162
+ optionHeightSmall: string;
1163
+ optionHeightMedium: string;
1164
+ optionHeightLarge: string;
1165
+ optionBorderRadius: string;
1166
+ borderRadius: string;
1167
+ color: string;
1168
+ groupHeaderTextColor: string;
1169
+ actionDividerColor: string;
1170
+ optionTextColor: string;
1171
+ optionTextColorPressed: string;
1172
+ optionTextColorDisabled: string;
1173
+ optionTextColorActive: string;
1174
+ optionOpacityDisabled: string;
1175
+ optionCheckColor: string;
1176
+ optionColorPending: string;
1177
+ optionColorActive: string;
1178
+ optionGroupHeaderBorderColor: string;
1179
+ optionColorActivePending: string;
1180
+ actionTextColor: string;
1181
+ loadingColor: string;
1182
+ }, {
1183
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1184
+ height: string;
1185
+ width: string;
1186
+ borderRadius: string;
1187
+ color: string;
1188
+ colorHover: string;
1189
+ railInsetHorizontalBottom: string;
1190
+ railInsetHorizontalTop: string;
1191
+ railInsetVerticalRight: string;
1192
+ railInsetVerticalLeft: string;
1193
+ railColor: string;
1194
+ }, any>;
1195
+ Empty: import("../../_mixins").Theme<"Empty", {
1196
+ iconSizeSmall: string;
1197
+ iconSizeMedium: string;
1198
+ iconSizeLarge: string;
1199
+ iconSizeHuge: string;
1200
+ titleFontSizeSmall: string;
1201
+ titleFontSizeMedium: string;
1202
+ titleFontSizeLarge: string;
1203
+ titleFontSizeHuge: string;
1204
+ descriptionFontSizeSmall: string;
1205
+ descriptionFontSizeMedium: string;
1206
+ descriptionFontSizeLarge: string;
1207
+ descriptionFontSizeHuge: string;
1208
+ titleColor: string;
1209
+ descriptionColor: string;
1210
+ iconColor: string;
1211
+ iconBgColor: string;
1212
+ extraTextColor: string;
1213
+ }, any>;
1214
+ }>;
1215
+ }>;
1216
+ Input: import("../../_mixins").Theme<"Input", {
1217
+ paddingTiny: string;
1218
+ paddingSmall: string;
1219
+ paddingMedium: string;
1220
+ paddingLarge: string;
1221
+ paddingHuge: string;
1222
+ clearSize: string;
1223
+ countTextColorDisabled: string;
1224
+ countTextColor: string;
1225
+ heightTiny: string;
1226
+ heightSmall: string;
1227
+ heightMedium: string;
1228
+ heightLarge: string;
1229
+ heightHuge: string;
1230
+ fontSizeTiny: string;
1231
+ fontSizeSmall: string;
1232
+ fontSizeMedium: string;
1233
+ fontSizeLarge: string;
1234
+ fontSizeHuge: string;
1235
+ lineHeight: string;
1236
+ lineHeightTextarea: string;
1237
+ borderRadius: string;
1238
+ iconSize: string;
1239
+ groupLabelTextColor: string;
1240
+ textColor: string;
1241
+ textColorDisabled: string;
1242
+ textDecorationColor: string;
1243
+ caretColor: string;
1244
+ placeholderColor: string;
1245
+ placeholderColorDisabled: string;
1246
+ color: string;
1247
+ colorDisabled: string;
1248
+ colorFocus: string;
1249
+ groupLabelBorder: string;
1250
+ border: string;
1251
+ borderHover: string;
1252
+ borderDisabled: string;
1253
+ borderFocus: string;
1254
+ boxShadowFocus: string;
1255
+ loadingColor: string;
1256
+ loadingColorSuccess: string;
1257
+ borderSuccess: string;
1258
+ borderHoverSuccess: string;
1259
+ colorFocusSuccess: string;
1260
+ borderFocusSuccess: string;
1261
+ boxShadowFocusSuccess: string;
1262
+ caretColorSuccess: string;
1263
+ loadingColorWarning: string;
1264
+ borderWarning: string;
1265
+ borderHoverWarning: string;
1266
+ colorFocusWarning: string;
1267
+ borderFocusWarning: string;
1268
+ boxShadowFocusWarning: string;
1269
+ caretColorWarning: string;
1270
+ loadingColorError: string;
1271
+ borderError: string;
1272
+ borderHoverError: string;
1273
+ colorFocusError: string;
1274
+ borderFocusError: string;
1275
+ boxShadowFocusError: string;
1276
+ caretColorError: string;
1277
+ clearColor: string;
1278
+ clearColorHover: string;
1279
+ clearColorPressed: string;
1280
+ iconColor: string;
1281
+ iconColorDisabled: string;
1282
+ iconColorHover: string;
1283
+ iconColorPressed: string;
1284
+ suffixTextColor: string;
1285
+ selectionColor: string;
1286
+ }, any>;
1287
+ Popselect: import("../../_mixins").Theme<"Popselect", {
1288
+ menuBoxShadow: string;
1289
+ }, {
1290
+ Popover: import("../../_mixins").Theme<"Popover", {
1291
+ space: string;
1292
+ spaceArrow: string;
1293
+ arrowOffset: string;
1294
+ arrowOffsetVertical: string;
1295
+ arrowHeight: string;
1296
+ padding: string;
1297
+ fontSize: string;
1298
+ borderRadius: string;
1299
+ color: string;
1300
+ dividerColor: string;
1301
+ textColor: string;
1302
+ boxShadow: string;
1303
+ }, any>;
1304
+ InternalSelectMenu: import("../../_mixins").Theme<"InternalSelectMenu", {
1305
+ height: string;
1306
+ paddingSmall: string;
1307
+ paddingMedium: string;
1308
+ paddingLarge: string;
1309
+ optionPaddingSmall: string;
1310
+ optionPaddingMedium: string;
1311
+ optionPaddingLarge: string;
1312
+ loadingSize: string;
1313
+ optionFontSizeSmall: string;
1314
+ optionFontSizeMedium: string;
1315
+ optionFontSizeLarge: string;
1316
+ optionHeightSmall: string;
1317
+ optionHeightMedium: string;
1318
+ optionHeightLarge: string;
1319
+ optionBorderRadius: string;
1320
+ borderRadius: string;
1321
+ color: string;
1322
+ groupHeaderTextColor: string;
1323
+ actionDividerColor: string;
1324
+ optionTextColor: string;
1325
+ optionTextColorPressed: string;
1326
+ optionTextColorDisabled: string;
1327
+ optionTextColorActive: string;
1328
+ optionOpacityDisabled: string;
1329
+ optionCheckColor: string;
1330
+ optionColorPending: string;
1331
+ optionColorActive: string;
1332
+ optionGroupHeaderBorderColor: string;
1333
+ optionColorActivePending: string;
1334
+ actionTextColor: string;
1335
+ loadingColor: string;
1336
+ }, {
1337
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
1338
+ height: string;
1339
+ width: string;
1340
+ borderRadius: string;
1341
+ color: string;
1342
+ colorHover: string;
1343
+ railInsetHorizontalBottom: string;
1344
+ railInsetHorizontalTop: string;
1345
+ railInsetVerticalRight: string;
1346
+ railInsetVerticalLeft: string;
1347
+ railColor: string;
1348
+ }, any>;
1349
+ Empty: import("../../_mixins").Theme<"Empty", {
1350
+ iconSizeSmall: string;
1351
+ iconSizeMedium: string;
1352
+ iconSizeLarge: string;
1353
+ iconSizeHuge: string;
1354
+ titleFontSizeSmall: string;
1355
+ titleFontSizeMedium: string;
1356
+ titleFontSizeLarge: string;
1357
+ titleFontSizeHuge: string;
1358
+ descriptionFontSizeSmall: string;
1359
+ descriptionFontSizeMedium: string;
1360
+ descriptionFontSizeLarge: string;
1361
+ descriptionFontSizeHuge: string;
1362
+ titleColor: string;
1363
+ descriptionColor: string;
1364
+ iconColor: string;
1365
+ iconBgColor: string;
1366
+ extraTextColor: string;
1367
+ }, any>;
1368
+ }>;
1369
+ }>;
1370
+ }>>>;
1371
+ };