@uzum-tech/ui 2.1.4 → 2.2.1

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