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