@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
@@ -0,0 +1,1047 @@
1
+ import type { AnyIconPack } from '@uzum-tech/icons';
2
+ import type { IconPackGroupData, IconPackIcon, IconPackValue } from './interface';
3
+ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ readonly pack: import("vue").PropType<AnyIconPack | string>;
5
+ readonly value: import("vue").PropType<IconPackValue>;
6
+ readonly defaultValue: {
7
+ readonly type: import("vue").PropType<IconPackValue>;
8
+ readonly default: null;
9
+ };
10
+ readonly disabled: {
11
+ readonly type: BooleanConstructor;
12
+ readonly default: undefined;
13
+ };
14
+ readonly title: StringConstructor;
15
+ readonly description: StringConstructor;
16
+ readonly searchable: {
17
+ readonly type: BooleanConstructor;
18
+ readonly default: true;
19
+ };
20
+ readonly searchValue: StringConstructor;
21
+ readonly defaultSearchValue: {
22
+ readonly type: StringConstructor;
23
+ readonly default: "";
24
+ };
25
+ readonly searchPlaceholder: StringConstructor;
26
+ readonly searchDebounce: {
27
+ readonly type: NumberConstructor;
28
+ readonly default: 200;
29
+ };
30
+ readonly grouped: {
31
+ readonly type: BooleanConstructor;
32
+ readonly default: true;
33
+ };
34
+ readonly columns: {
35
+ readonly type: import("vue").PropType<number | "auto">;
36
+ readonly default: "auto";
37
+ };
38
+ readonly minColumnWidth: {
39
+ readonly type: import("vue").PropType<number | string>;
40
+ readonly default: 150;
41
+ };
42
+ readonly iconSize: {
43
+ readonly type: import("vue").PropType<number | string>;
44
+ readonly default: 40;
45
+ };
46
+ readonly height: import("vue").PropType<number | string>;
47
+ readonly maxBodyHeight: {
48
+ readonly type: import("vue").PropType<number | string>;
49
+ readonly default: 496;
50
+ };
51
+ readonly contentPadding: {
52
+ readonly type: import("vue").PropType<number | string>;
53
+ readonly default: 24;
54
+ };
55
+ readonly async: {
56
+ readonly type: BooleanConstructor;
57
+ readonly default: undefined;
58
+ };
59
+ readonly copyable: {
60
+ readonly type: BooleanConstructor;
61
+ readonly default: true;
62
+ };
63
+ readonly formatCopy: import("vue").PropType<import("./interface").IconPackFormatCopy>;
64
+ readonly formatGroupLabel: import("vue").PropType<import("./interface").IconPackFormatGroupLabel>;
65
+ readonly formatIconLabel: import("vue").PropType<import("./interface").IconPackFormatIconLabel>;
66
+ readonly showGroupCounter: {
67
+ readonly type: BooleanConstructor;
68
+ readonly default: true;
69
+ };
70
+ readonly emptyText: StringConstructor;
71
+ readonly emptyProps: import("vue").PropType<Partial<import("../../empty").EmptyProps>>;
72
+ readonly searchInputProps: import("vue").PropType<Partial<import("../../input").InputProps>>;
73
+ readonly scrollbarProps: import("vue").PropType<Partial<import("../../scrollbar").ScrollbarProps>>;
74
+ readonly theme: import("vue").PropType<import("../../_mixins").Theme<"IconPack", {
75
+ containerColor: string;
76
+ borderRadius: string;
77
+ titleTextColor: string;
78
+ descriptionTextColor: string;
79
+ groupTitleTextColor: string;
80
+ groupCounterTextColor: string;
81
+ cardColor: string;
82
+ cardColorHover: string;
83
+ cardColorPressed: string;
84
+ cardColorSelected: string;
85
+ cardBorderRadius: string;
86
+ cardIconColor: string;
87
+ cardIconColorSelected: string;
88
+ cardLabelTextColor: string;
89
+ cardLabelTextColorSelected: string;
90
+ dividerColor: string;
91
+ }, {
92
+ Input: import("../../_mixins").Theme<"Input", {
93
+ paddingTiny: string;
94
+ paddingSmall: string;
95
+ paddingMedium: string;
96
+ paddingLarge: string;
97
+ paddingHuge: string;
98
+ clearSize: string;
99
+ countTextColorDisabled: string;
100
+ countTextColor: string;
101
+ heightTiny: string;
102
+ heightSmall: string;
103
+ heightMedium: string;
104
+ heightLarge: string;
105
+ heightHuge: string;
106
+ fontSizeTiny: string;
107
+ fontSizeSmall: string;
108
+ fontSizeMedium: string;
109
+ fontSizeLarge: string;
110
+ fontSizeHuge: string;
111
+ lineHeight: string;
112
+ lineHeightTextarea: string;
113
+ borderRadius: string;
114
+ iconSize: string;
115
+ groupLabelTextColor: string;
116
+ textColor: string;
117
+ textColorDisabled: string;
118
+ textDecorationColor: string;
119
+ caretColor: string;
120
+ placeholderColor: string;
121
+ placeholderColorDisabled: string;
122
+ color: string;
123
+ colorDisabled: string;
124
+ colorFocus: string;
125
+ groupLabelBorder: string;
126
+ border: string;
127
+ borderHover: string;
128
+ borderDisabled: string;
129
+ borderFocus: string;
130
+ boxShadowFocus: string;
131
+ loadingColor: string;
132
+ loadingColorSuccess: string;
133
+ borderSuccess: string;
134
+ borderHoverSuccess: string;
135
+ colorFocusSuccess: string;
136
+ borderFocusSuccess: string;
137
+ boxShadowFocusSuccess: string;
138
+ caretColorSuccess: string;
139
+ loadingColorWarning: string;
140
+ borderWarning: string;
141
+ borderHoverWarning: string;
142
+ colorFocusWarning: string;
143
+ borderFocusWarning: string;
144
+ boxShadowFocusWarning: string;
145
+ caretColorWarning: string;
146
+ loadingColorError: string;
147
+ borderError: string;
148
+ borderHoverError: string;
149
+ colorFocusError: string;
150
+ borderFocusError: string;
151
+ boxShadowFocusError: string;
152
+ caretColorError: string;
153
+ clearColor: string;
154
+ clearColorHover: string;
155
+ clearColorPressed: string;
156
+ iconColor: string;
157
+ iconColorDisabled: string;
158
+ iconColorHover: string;
159
+ iconColorPressed: string;
160
+ suffixTextColor: string;
161
+ selectionColor: string;
162
+ }, any>;
163
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
164
+ height: string;
165
+ width: string;
166
+ borderRadius: string;
167
+ color: string;
168
+ colorHover: string;
169
+ railInsetHorizontalBottom: string;
170
+ railInsetHorizontalTop: string;
171
+ railInsetVerticalRight: string;
172
+ railInsetVerticalLeft: string;
173
+ railColor: string;
174
+ }, any>;
175
+ Empty: import("../../_mixins").Theme<"Empty", {
176
+ iconSizeSmall: string;
177
+ iconSizeMedium: string;
178
+ iconSizeLarge: string;
179
+ iconSizeHuge: string;
180
+ titleFontSizeSmall: string;
181
+ titleFontSizeMedium: string;
182
+ titleFontSizeLarge: string;
183
+ titleFontSizeHuge: string;
184
+ descriptionFontSizeSmall: string;
185
+ descriptionFontSizeMedium: string;
186
+ descriptionFontSizeLarge: string;
187
+ descriptionFontSizeHuge: string;
188
+ titleColor: string;
189
+ descriptionColor: string;
190
+ iconColor: string;
191
+ iconBgColor: string;
192
+ extraTextColor: string;
193
+ }, any>;
194
+ }>>;
195
+ readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"IconPack", {
196
+ containerColor: string;
197
+ borderRadius: string;
198
+ titleTextColor: string;
199
+ descriptionTextColor: string;
200
+ groupTitleTextColor: string;
201
+ groupCounterTextColor: string;
202
+ cardColor: string;
203
+ cardColorHover: string;
204
+ cardColorPressed: string;
205
+ cardColorSelected: string;
206
+ cardBorderRadius: string;
207
+ cardIconColor: string;
208
+ cardIconColorSelected: string;
209
+ cardLabelTextColor: string;
210
+ cardLabelTextColorSelected: string;
211
+ dividerColor: string;
212
+ }, {
213
+ Input: import("../../_mixins").Theme<"Input", {
214
+ paddingTiny: string;
215
+ paddingSmall: string;
216
+ paddingMedium: string;
217
+ paddingLarge: string;
218
+ paddingHuge: string;
219
+ clearSize: string;
220
+ countTextColorDisabled: string;
221
+ countTextColor: string;
222
+ heightTiny: string;
223
+ heightSmall: string;
224
+ heightMedium: string;
225
+ heightLarge: string;
226
+ heightHuge: string;
227
+ fontSizeTiny: string;
228
+ fontSizeSmall: string;
229
+ fontSizeMedium: string;
230
+ fontSizeLarge: string;
231
+ fontSizeHuge: string;
232
+ lineHeight: string;
233
+ lineHeightTextarea: string;
234
+ borderRadius: string;
235
+ iconSize: string;
236
+ groupLabelTextColor: string;
237
+ textColor: string;
238
+ textColorDisabled: string;
239
+ textDecorationColor: string;
240
+ caretColor: string;
241
+ placeholderColor: string;
242
+ placeholderColorDisabled: string;
243
+ color: string;
244
+ colorDisabled: string;
245
+ colorFocus: string;
246
+ groupLabelBorder: string;
247
+ border: string;
248
+ borderHover: string;
249
+ borderDisabled: string;
250
+ borderFocus: string;
251
+ boxShadowFocus: string;
252
+ loadingColor: string;
253
+ loadingColorSuccess: string;
254
+ borderSuccess: string;
255
+ borderHoverSuccess: string;
256
+ colorFocusSuccess: string;
257
+ borderFocusSuccess: string;
258
+ boxShadowFocusSuccess: string;
259
+ caretColorSuccess: string;
260
+ loadingColorWarning: string;
261
+ borderWarning: string;
262
+ borderHoverWarning: string;
263
+ colorFocusWarning: string;
264
+ borderFocusWarning: string;
265
+ boxShadowFocusWarning: string;
266
+ caretColorWarning: string;
267
+ loadingColorError: string;
268
+ borderError: string;
269
+ borderHoverError: string;
270
+ colorFocusError: string;
271
+ borderFocusError: string;
272
+ boxShadowFocusError: string;
273
+ caretColorError: string;
274
+ clearColor: string;
275
+ clearColorHover: string;
276
+ clearColorPressed: string;
277
+ iconColor: string;
278
+ iconColorDisabled: string;
279
+ iconColorHover: string;
280
+ iconColorPressed: string;
281
+ suffixTextColor: string;
282
+ selectionColor: string;
283
+ }, any>;
284
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
285
+ height: string;
286
+ width: string;
287
+ borderRadius: string;
288
+ color: string;
289
+ colorHover: string;
290
+ railInsetHorizontalBottom: string;
291
+ railInsetHorizontalTop: string;
292
+ railInsetVerticalRight: string;
293
+ railInsetVerticalLeft: string;
294
+ railColor: string;
295
+ }, any>;
296
+ Empty: import("../../_mixins").Theme<"Empty", {
297
+ iconSizeSmall: string;
298
+ iconSizeMedium: string;
299
+ iconSizeLarge: string;
300
+ iconSizeHuge: string;
301
+ titleFontSizeSmall: string;
302
+ titleFontSizeMedium: string;
303
+ titleFontSizeLarge: string;
304
+ titleFontSizeHuge: string;
305
+ descriptionFontSizeSmall: string;
306
+ descriptionFontSizeMedium: string;
307
+ descriptionFontSizeLarge: string;
308
+ descriptionFontSizeHuge: string;
309
+ titleColor: string;
310
+ descriptionColor: string;
311
+ iconColor: string;
312
+ iconBgColor: string;
313
+ extraTextColor: string;
314
+ }, any>;
315
+ }>>>;
316
+ readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"IconPack", {
317
+ containerColor: string;
318
+ borderRadius: string;
319
+ titleTextColor: string;
320
+ descriptionTextColor: string;
321
+ groupTitleTextColor: string;
322
+ groupCounterTextColor: string;
323
+ cardColor: string;
324
+ cardColorHover: string;
325
+ cardColorPressed: string;
326
+ cardColorSelected: string;
327
+ cardBorderRadius: string;
328
+ cardIconColor: string;
329
+ cardIconColorSelected: string;
330
+ cardLabelTextColor: string;
331
+ cardLabelTextColorSelected: string;
332
+ dividerColor: string;
333
+ }, {
334
+ Input: import("../../_mixins").Theme<"Input", {
335
+ paddingTiny: string;
336
+ paddingSmall: string;
337
+ paddingMedium: string;
338
+ paddingLarge: string;
339
+ paddingHuge: string;
340
+ clearSize: string;
341
+ countTextColorDisabled: string;
342
+ countTextColor: string;
343
+ heightTiny: string;
344
+ heightSmall: string;
345
+ heightMedium: string;
346
+ heightLarge: string;
347
+ heightHuge: string;
348
+ fontSizeTiny: string;
349
+ fontSizeSmall: string;
350
+ fontSizeMedium: string;
351
+ fontSizeLarge: string;
352
+ fontSizeHuge: string;
353
+ lineHeight: string;
354
+ lineHeightTextarea: string;
355
+ borderRadius: string;
356
+ iconSize: string;
357
+ groupLabelTextColor: string;
358
+ textColor: string;
359
+ textColorDisabled: string;
360
+ textDecorationColor: string;
361
+ caretColor: string;
362
+ placeholderColor: string;
363
+ placeholderColorDisabled: string;
364
+ color: string;
365
+ colorDisabled: string;
366
+ colorFocus: string;
367
+ groupLabelBorder: string;
368
+ border: string;
369
+ borderHover: string;
370
+ borderDisabled: string;
371
+ borderFocus: string;
372
+ boxShadowFocus: string;
373
+ loadingColor: string;
374
+ loadingColorSuccess: string;
375
+ borderSuccess: string;
376
+ borderHoverSuccess: string;
377
+ colorFocusSuccess: string;
378
+ borderFocusSuccess: string;
379
+ boxShadowFocusSuccess: string;
380
+ caretColorSuccess: string;
381
+ loadingColorWarning: string;
382
+ borderWarning: string;
383
+ borderHoverWarning: string;
384
+ colorFocusWarning: string;
385
+ borderFocusWarning: string;
386
+ boxShadowFocusWarning: string;
387
+ caretColorWarning: string;
388
+ loadingColorError: string;
389
+ borderError: string;
390
+ borderHoverError: string;
391
+ colorFocusError: string;
392
+ borderFocusError: string;
393
+ boxShadowFocusError: string;
394
+ caretColorError: string;
395
+ clearColor: string;
396
+ clearColorHover: string;
397
+ clearColorPressed: string;
398
+ iconColor: string;
399
+ iconColorDisabled: string;
400
+ iconColorHover: string;
401
+ iconColorPressed: string;
402
+ suffixTextColor: string;
403
+ selectionColor: string;
404
+ }, any>;
405
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
406
+ height: string;
407
+ width: string;
408
+ borderRadius: string;
409
+ color: string;
410
+ colorHover: string;
411
+ railInsetHorizontalBottom: string;
412
+ railInsetHorizontalTop: string;
413
+ railInsetVerticalRight: string;
414
+ railInsetVerticalLeft: string;
415
+ railColor: string;
416
+ }, any>;
417
+ Empty: import("../../_mixins").Theme<"Empty", {
418
+ iconSizeSmall: string;
419
+ iconSizeMedium: string;
420
+ iconSizeLarge: string;
421
+ iconSizeHuge: string;
422
+ titleFontSizeSmall: string;
423
+ titleFontSizeMedium: string;
424
+ titleFontSizeLarge: string;
425
+ titleFontSizeHuge: string;
426
+ descriptionFontSizeSmall: string;
427
+ descriptionFontSizeMedium: string;
428
+ descriptionFontSizeLarge: string;
429
+ descriptionFontSizeHuge: string;
430
+ titleColor: string;
431
+ descriptionColor: string;
432
+ iconColor: string;
433
+ iconBgColor: string;
434
+ extraTextColor: string;
435
+ }, any>;
436
+ }>>>;
437
+ }>, {
438
+ mergedClsPrefix: import("vue").Ref<string, string>;
439
+ mergedTheme: import("vue").ComputedRef<{
440
+ common: import("../..").ThemeCommonVars;
441
+ self: {
442
+ containerColor: string;
443
+ borderRadius: string;
444
+ titleTextColor: string;
445
+ descriptionTextColor: string;
446
+ groupTitleTextColor: string;
447
+ groupCounterTextColor: string;
448
+ cardColor: string;
449
+ cardColorHover: string;
450
+ cardColorPressed: string;
451
+ cardColorSelected: string;
452
+ cardBorderRadius: string;
453
+ cardIconColor: string;
454
+ cardIconColorSelected: string;
455
+ cardLabelTextColor: string;
456
+ cardLabelTextColorSelected: string;
457
+ dividerColor: string;
458
+ };
459
+ peers: {
460
+ Input: import("../../_mixins").Theme<"Input", {
461
+ paddingTiny: string;
462
+ paddingSmall: string;
463
+ paddingMedium: string;
464
+ paddingLarge: string;
465
+ paddingHuge: string;
466
+ clearSize: string;
467
+ countTextColorDisabled: string;
468
+ countTextColor: string;
469
+ heightTiny: string;
470
+ heightSmall: string;
471
+ heightMedium: string;
472
+ heightLarge: string;
473
+ heightHuge: string;
474
+ fontSizeTiny: string;
475
+ fontSizeSmall: string;
476
+ fontSizeMedium: string;
477
+ fontSizeLarge: string;
478
+ fontSizeHuge: string;
479
+ lineHeight: string;
480
+ lineHeightTextarea: string;
481
+ borderRadius: string;
482
+ iconSize: string;
483
+ groupLabelTextColor: string;
484
+ textColor: string;
485
+ textColorDisabled: string;
486
+ textDecorationColor: string;
487
+ caretColor: string;
488
+ placeholderColor: string;
489
+ placeholderColorDisabled: string;
490
+ color: string;
491
+ colorDisabled: string;
492
+ colorFocus: string;
493
+ groupLabelBorder: string;
494
+ border: string;
495
+ borderHover: string;
496
+ borderDisabled: string;
497
+ borderFocus: string;
498
+ boxShadowFocus: string;
499
+ loadingColor: string;
500
+ loadingColorSuccess: string;
501
+ borderSuccess: string;
502
+ borderHoverSuccess: string;
503
+ colorFocusSuccess: string;
504
+ borderFocusSuccess: string;
505
+ boxShadowFocusSuccess: string;
506
+ caretColorSuccess: string;
507
+ loadingColorWarning: string;
508
+ borderWarning: string;
509
+ borderHoverWarning: string;
510
+ colorFocusWarning: string;
511
+ borderFocusWarning: string;
512
+ boxShadowFocusWarning: string;
513
+ caretColorWarning: string;
514
+ loadingColorError: string;
515
+ borderError: string;
516
+ borderHoverError: string;
517
+ colorFocusError: string;
518
+ borderFocusError: string;
519
+ boxShadowFocusError: string;
520
+ caretColorError: string;
521
+ clearColor: string;
522
+ clearColorHover: string;
523
+ clearColorPressed: string;
524
+ iconColor: string;
525
+ iconColorDisabled: string;
526
+ iconColorHover: string;
527
+ iconColorPressed: string;
528
+ suffixTextColor: string;
529
+ selectionColor: string;
530
+ }, any>;
531
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
532
+ height: string;
533
+ width: string;
534
+ borderRadius: string;
535
+ color: string;
536
+ colorHover: string;
537
+ railInsetHorizontalBottom: string;
538
+ railInsetHorizontalTop: string;
539
+ railInsetVerticalRight: string;
540
+ railInsetVerticalLeft: string;
541
+ railColor: string;
542
+ }, any>;
543
+ Empty: import("../../_mixins").Theme<"Empty", {
544
+ iconSizeSmall: string;
545
+ iconSizeMedium: string;
546
+ iconSizeLarge: string;
547
+ iconSizeHuge: string;
548
+ titleFontSizeSmall: string;
549
+ titleFontSizeMedium: string;
550
+ titleFontSizeLarge: string;
551
+ titleFontSizeHuge: string;
552
+ descriptionFontSizeSmall: string;
553
+ descriptionFontSizeMedium: string;
554
+ descriptionFontSizeLarge: string;
555
+ descriptionFontSizeHuge: string;
556
+ titleColor: string;
557
+ descriptionColor: string;
558
+ iconColor: string;
559
+ iconBgColor: string;
560
+ extraTextColor: string;
561
+ }, any>;
562
+ };
563
+ peerOverrides: {
564
+ Input?: {
565
+ peers?: {
566
+ [x: string]: any;
567
+ } | undefined;
568
+ } | undefined;
569
+ Scrollbar?: {
570
+ peers?: {
571
+ [x: string]: any;
572
+ } | undefined;
573
+ } | undefined;
574
+ Empty?: {
575
+ peers?: {
576
+ [x: string]: any;
577
+ } | undefined;
578
+ } | undefined;
579
+ };
580
+ }>;
581
+ cssVars: import("vue").ComputedRef<Record<string, string>>;
582
+ themeClass: import("vue").Ref<string, string>;
583
+ onRender: () => void;
584
+ mergedValue: import("vue").ComputedRef<IconPackValue>;
585
+ mergedSearch: import("vue").ComputedRef<string>;
586
+ mergedDisabled: import("vue").ComputedRef<boolean>;
587
+ groups: import("vue").ComputedRef<IconPackGroupData[]>;
588
+ isEmpty: import("vue").ComputedRef<boolean>;
589
+ handleSearch: (value: string) => void;
590
+ handleSelect: (icon: IconPackIcon) => void;
591
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("copy" | "select" | "search" | "update:value" | "update:searchValue")[], "copy" | "select" | "search" | "update:value" | "update:searchValue", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
592
+ readonly pack: import("vue").PropType<AnyIconPack | string>;
593
+ readonly value: import("vue").PropType<IconPackValue>;
594
+ readonly defaultValue: {
595
+ readonly type: import("vue").PropType<IconPackValue>;
596
+ readonly default: null;
597
+ };
598
+ readonly disabled: {
599
+ readonly type: BooleanConstructor;
600
+ readonly default: undefined;
601
+ };
602
+ readonly title: StringConstructor;
603
+ readonly description: StringConstructor;
604
+ readonly searchable: {
605
+ readonly type: BooleanConstructor;
606
+ readonly default: true;
607
+ };
608
+ readonly searchValue: StringConstructor;
609
+ readonly defaultSearchValue: {
610
+ readonly type: StringConstructor;
611
+ readonly default: "";
612
+ };
613
+ readonly searchPlaceholder: StringConstructor;
614
+ readonly searchDebounce: {
615
+ readonly type: NumberConstructor;
616
+ readonly default: 200;
617
+ };
618
+ readonly grouped: {
619
+ readonly type: BooleanConstructor;
620
+ readonly default: true;
621
+ };
622
+ readonly columns: {
623
+ readonly type: import("vue").PropType<number | "auto">;
624
+ readonly default: "auto";
625
+ };
626
+ readonly minColumnWidth: {
627
+ readonly type: import("vue").PropType<number | string>;
628
+ readonly default: 150;
629
+ };
630
+ readonly iconSize: {
631
+ readonly type: import("vue").PropType<number | string>;
632
+ readonly default: 40;
633
+ };
634
+ readonly height: import("vue").PropType<number | string>;
635
+ readonly maxBodyHeight: {
636
+ readonly type: import("vue").PropType<number | string>;
637
+ readonly default: 496;
638
+ };
639
+ readonly contentPadding: {
640
+ readonly type: import("vue").PropType<number | string>;
641
+ readonly default: 24;
642
+ };
643
+ readonly async: {
644
+ readonly type: BooleanConstructor;
645
+ readonly default: undefined;
646
+ };
647
+ readonly copyable: {
648
+ readonly type: BooleanConstructor;
649
+ readonly default: true;
650
+ };
651
+ readonly formatCopy: import("vue").PropType<import("./interface").IconPackFormatCopy>;
652
+ readonly formatGroupLabel: import("vue").PropType<import("./interface").IconPackFormatGroupLabel>;
653
+ readonly formatIconLabel: import("vue").PropType<import("./interface").IconPackFormatIconLabel>;
654
+ readonly showGroupCounter: {
655
+ readonly type: BooleanConstructor;
656
+ readonly default: true;
657
+ };
658
+ readonly emptyText: StringConstructor;
659
+ readonly emptyProps: import("vue").PropType<Partial<import("../../empty").EmptyProps>>;
660
+ readonly searchInputProps: import("vue").PropType<Partial<import("../../input").InputProps>>;
661
+ readonly scrollbarProps: import("vue").PropType<Partial<import("../../scrollbar").ScrollbarProps>>;
662
+ readonly theme: import("vue").PropType<import("../../_mixins").Theme<"IconPack", {
663
+ containerColor: string;
664
+ borderRadius: string;
665
+ titleTextColor: string;
666
+ descriptionTextColor: string;
667
+ groupTitleTextColor: string;
668
+ groupCounterTextColor: string;
669
+ cardColor: string;
670
+ cardColorHover: string;
671
+ cardColorPressed: string;
672
+ cardColorSelected: string;
673
+ cardBorderRadius: string;
674
+ cardIconColor: string;
675
+ cardIconColorSelected: string;
676
+ cardLabelTextColor: string;
677
+ cardLabelTextColorSelected: string;
678
+ dividerColor: string;
679
+ }, {
680
+ Input: import("../../_mixins").Theme<"Input", {
681
+ paddingTiny: string;
682
+ paddingSmall: string;
683
+ paddingMedium: string;
684
+ paddingLarge: string;
685
+ paddingHuge: string;
686
+ clearSize: string;
687
+ countTextColorDisabled: string;
688
+ countTextColor: string;
689
+ heightTiny: string;
690
+ heightSmall: string;
691
+ heightMedium: string;
692
+ heightLarge: string;
693
+ heightHuge: string;
694
+ fontSizeTiny: string;
695
+ fontSizeSmall: string;
696
+ fontSizeMedium: string;
697
+ fontSizeLarge: string;
698
+ fontSizeHuge: string;
699
+ lineHeight: string;
700
+ lineHeightTextarea: string;
701
+ borderRadius: string;
702
+ iconSize: string;
703
+ groupLabelTextColor: string;
704
+ textColor: string;
705
+ textColorDisabled: string;
706
+ textDecorationColor: string;
707
+ caretColor: string;
708
+ placeholderColor: string;
709
+ placeholderColorDisabled: string;
710
+ color: string;
711
+ colorDisabled: string;
712
+ colorFocus: string;
713
+ groupLabelBorder: string;
714
+ border: string;
715
+ borderHover: string;
716
+ borderDisabled: string;
717
+ borderFocus: string;
718
+ boxShadowFocus: string;
719
+ loadingColor: string;
720
+ loadingColorSuccess: string;
721
+ borderSuccess: string;
722
+ borderHoverSuccess: string;
723
+ colorFocusSuccess: string;
724
+ borderFocusSuccess: string;
725
+ boxShadowFocusSuccess: string;
726
+ caretColorSuccess: string;
727
+ loadingColorWarning: string;
728
+ borderWarning: string;
729
+ borderHoverWarning: string;
730
+ colorFocusWarning: string;
731
+ borderFocusWarning: string;
732
+ boxShadowFocusWarning: string;
733
+ caretColorWarning: string;
734
+ loadingColorError: string;
735
+ borderError: string;
736
+ borderHoverError: string;
737
+ colorFocusError: string;
738
+ borderFocusError: string;
739
+ boxShadowFocusError: string;
740
+ caretColorError: string;
741
+ clearColor: string;
742
+ clearColorHover: string;
743
+ clearColorPressed: string;
744
+ iconColor: string;
745
+ iconColorDisabled: string;
746
+ iconColorHover: string;
747
+ iconColorPressed: string;
748
+ suffixTextColor: string;
749
+ selectionColor: string;
750
+ }, any>;
751
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
752
+ height: string;
753
+ width: string;
754
+ borderRadius: string;
755
+ color: string;
756
+ colorHover: string;
757
+ railInsetHorizontalBottom: string;
758
+ railInsetHorizontalTop: string;
759
+ railInsetVerticalRight: string;
760
+ railInsetVerticalLeft: string;
761
+ railColor: string;
762
+ }, any>;
763
+ Empty: import("../../_mixins").Theme<"Empty", {
764
+ iconSizeSmall: string;
765
+ iconSizeMedium: string;
766
+ iconSizeLarge: string;
767
+ iconSizeHuge: string;
768
+ titleFontSizeSmall: string;
769
+ titleFontSizeMedium: string;
770
+ titleFontSizeLarge: string;
771
+ titleFontSizeHuge: string;
772
+ descriptionFontSizeSmall: string;
773
+ descriptionFontSizeMedium: string;
774
+ descriptionFontSizeLarge: string;
775
+ descriptionFontSizeHuge: string;
776
+ titleColor: string;
777
+ descriptionColor: string;
778
+ iconColor: string;
779
+ iconBgColor: string;
780
+ extraTextColor: string;
781
+ }, any>;
782
+ }>>;
783
+ readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"IconPack", {
784
+ containerColor: string;
785
+ borderRadius: string;
786
+ titleTextColor: string;
787
+ descriptionTextColor: string;
788
+ groupTitleTextColor: string;
789
+ groupCounterTextColor: string;
790
+ cardColor: string;
791
+ cardColorHover: string;
792
+ cardColorPressed: string;
793
+ cardColorSelected: string;
794
+ cardBorderRadius: string;
795
+ cardIconColor: string;
796
+ cardIconColorSelected: string;
797
+ cardLabelTextColor: string;
798
+ cardLabelTextColorSelected: string;
799
+ dividerColor: string;
800
+ }, {
801
+ Input: import("../../_mixins").Theme<"Input", {
802
+ paddingTiny: string;
803
+ paddingSmall: string;
804
+ paddingMedium: string;
805
+ paddingLarge: string;
806
+ paddingHuge: string;
807
+ clearSize: string;
808
+ countTextColorDisabled: string;
809
+ countTextColor: string;
810
+ heightTiny: string;
811
+ heightSmall: string;
812
+ heightMedium: string;
813
+ heightLarge: string;
814
+ heightHuge: string;
815
+ fontSizeTiny: string;
816
+ fontSizeSmall: string;
817
+ fontSizeMedium: string;
818
+ fontSizeLarge: string;
819
+ fontSizeHuge: string;
820
+ lineHeight: string;
821
+ lineHeightTextarea: string;
822
+ borderRadius: string;
823
+ iconSize: string;
824
+ groupLabelTextColor: string;
825
+ textColor: string;
826
+ textColorDisabled: string;
827
+ textDecorationColor: string;
828
+ caretColor: string;
829
+ placeholderColor: string;
830
+ placeholderColorDisabled: string;
831
+ color: string;
832
+ colorDisabled: string;
833
+ colorFocus: string;
834
+ groupLabelBorder: string;
835
+ border: string;
836
+ borderHover: string;
837
+ borderDisabled: string;
838
+ borderFocus: string;
839
+ boxShadowFocus: string;
840
+ loadingColor: string;
841
+ loadingColorSuccess: string;
842
+ borderSuccess: string;
843
+ borderHoverSuccess: string;
844
+ colorFocusSuccess: string;
845
+ borderFocusSuccess: string;
846
+ boxShadowFocusSuccess: string;
847
+ caretColorSuccess: string;
848
+ loadingColorWarning: string;
849
+ borderWarning: string;
850
+ borderHoverWarning: string;
851
+ colorFocusWarning: string;
852
+ borderFocusWarning: string;
853
+ boxShadowFocusWarning: string;
854
+ caretColorWarning: string;
855
+ loadingColorError: string;
856
+ borderError: string;
857
+ borderHoverError: string;
858
+ colorFocusError: string;
859
+ borderFocusError: string;
860
+ boxShadowFocusError: string;
861
+ caretColorError: string;
862
+ clearColor: string;
863
+ clearColorHover: string;
864
+ clearColorPressed: string;
865
+ iconColor: string;
866
+ iconColorDisabled: string;
867
+ iconColorHover: string;
868
+ iconColorPressed: string;
869
+ suffixTextColor: string;
870
+ selectionColor: string;
871
+ }, any>;
872
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
873
+ height: string;
874
+ width: string;
875
+ borderRadius: string;
876
+ color: string;
877
+ colorHover: string;
878
+ railInsetHorizontalBottom: string;
879
+ railInsetHorizontalTop: string;
880
+ railInsetVerticalRight: string;
881
+ railInsetVerticalLeft: string;
882
+ railColor: string;
883
+ }, any>;
884
+ Empty: import("../../_mixins").Theme<"Empty", {
885
+ iconSizeSmall: string;
886
+ iconSizeMedium: string;
887
+ iconSizeLarge: string;
888
+ iconSizeHuge: string;
889
+ titleFontSizeSmall: string;
890
+ titleFontSizeMedium: string;
891
+ titleFontSizeLarge: string;
892
+ titleFontSizeHuge: string;
893
+ descriptionFontSizeSmall: string;
894
+ descriptionFontSizeMedium: string;
895
+ descriptionFontSizeLarge: string;
896
+ descriptionFontSizeHuge: string;
897
+ titleColor: string;
898
+ descriptionColor: string;
899
+ iconColor: string;
900
+ iconBgColor: string;
901
+ extraTextColor: string;
902
+ }, any>;
903
+ }>>>;
904
+ readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"IconPack", {
905
+ containerColor: string;
906
+ borderRadius: string;
907
+ titleTextColor: string;
908
+ descriptionTextColor: string;
909
+ groupTitleTextColor: string;
910
+ groupCounterTextColor: string;
911
+ cardColor: string;
912
+ cardColorHover: string;
913
+ cardColorPressed: string;
914
+ cardColorSelected: string;
915
+ cardBorderRadius: string;
916
+ cardIconColor: string;
917
+ cardIconColorSelected: string;
918
+ cardLabelTextColor: string;
919
+ cardLabelTextColorSelected: string;
920
+ dividerColor: string;
921
+ }, {
922
+ Input: import("../../_mixins").Theme<"Input", {
923
+ paddingTiny: string;
924
+ paddingSmall: string;
925
+ paddingMedium: string;
926
+ paddingLarge: string;
927
+ paddingHuge: string;
928
+ clearSize: string;
929
+ countTextColorDisabled: string;
930
+ countTextColor: string;
931
+ heightTiny: string;
932
+ heightSmall: string;
933
+ heightMedium: string;
934
+ heightLarge: string;
935
+ heightHuge: string;
936
+ fontSizeTiny: string;
937
+ fontSizeSmall: string;
938
+ fontSizeMedium: string;
939
+ fontSizeLarge: string;
940
+ fontSizeHuge: string;
941
+ lineHeight: string;
942
+ lineHeightTextarea: string;
943
+ borderRadius: string;
944
+ iconSize: string;
945
+ groupLabelTextColor: string;
946
+ textColor: string;
947
+ textColorDisabled: string;
948
+ textDecorationColor: string;
949
+ caretColor: string;
950
+ placeholderColor: string;
951
+ placeholderColorDisabled: string;
952
+ color: string;
953
+ colorDisabled: string;
954
+ colorFocus: string;
955
+ groupLabelBorder: string;
956
+ border: string;
957
+ borderHover: string;
958
+ borderDisabled: string;
959
+ borderFocus: string;
960
+ boxShadowFocus: string;
961
+ loadingColor: string;
962
+ loadingColorSuccess: string;
963
+ borderSuccess: string;
964
+ borderHoverSuccess: string;
965
+ colorFocusSuccess: string;
966
+ borderFocusSuccess: string;
967
+ boxShadowFocusSuccess: string;
968
+ caretColorSuccess: string;
969
+ loadingColorWarning: string;
970
+ borderWarning: string;
971
+ borderHoverWarning: string;
972
+ colorFocusWarning: string;
973
+ borderFocusWarning: string;
974
+ boxShadowFocusWarning: string;
975
+ caretColorWarning: string;
976
+ loadingColorError: string;
977
+ borderError: string;
978
+ borderHoverError: string;
979
+ colorFocusError: string;
980
+ borderFocusError: string;
981
+ boxShadowFocusError: string;
982
+ caretColorError: string;
983
+ clearColor: string;
984
+ clearColorHover: string;
985
+ clearColorPressed: string;
986
+ iconColor: string;
987
+ iconColorDisabled: string;
988
+ iconColorHover: string;
989
+ iconColorPressed: string;
990
+ suffixTextColor: string;
991
+ selectionColor: string;
992
+ }, any>;
993
+ Scrollbar: import("../../_mixins").Theme<"Scrollbar", {
994
+ height: string;
995
+ width: string;
996
+ borderRadius: string;
997
+ color: string;
998
+ colorHover: string;
999
+ railInsetHorizontalBottom: string;
1000
+ railInsetHorizontalTop: string;
1001
+ railInsetVerticalRight: string;
1002
+ railInsetVerticalLeft: string;
1003
+ railColor: string;
1004
+ }, any>;
1005
+ Empty: import("../../_mixins").Theme<"Empty", {
1006
+ iconSizeSmall: string;
1007
+ iconSizeMedium: string;
1008
+ iconSizeLarge: string;
1009
+ iconSizeHuge: string;
1010
+ titleFontSizeSmall: string;
1011
+ titleFontSizeMedium: string;
1012
+ titleFontSizeLarge: string;
1013
+ titleFontSizeHuge: string;
1014
+ descriptionFontSizeSmall: string;
1015
+ descriptionFontSizeMedium: string;
1016
+ descriptionFontSizeLarge: string;
1017
+ descriptionFontSizeHuge: string;
1018
+ titleColor: string;
1019
+ descriptionColor: string;
1020
+ iconColor: string;
1021
+ iconBgColor: string;
1022
+ extraTextColor: string;
1023
+ }, any>;
1024
+ }>>>;
1025
+ }>> & Readonly<{
1026
+ onCopy?: ((...args: any[]) => any) | undefined;
1027
+ onSelect?: ((...args: any[]) => any) | undefined;
1028
+ "onUpdate:value"?: ((...args: any[]) => any) | undefined;
1029
+ onSearch?: ((...args: any[]) => any) | undefined;
1030
+ "onUpdate:searchValue"?: ((...args: any[]) => any) | undefined;
1031
+ }>, {
1032
+ readonly disabled: boolean;
1033
+ readonly iconSize: string | number;
1034
+ readonly defaultValue: IconPackValue;
1035
+ readonly async: boolean;
1036
+ readonly columns: number | "auto";
1037
+ readonly copyable: boolean;
1038
+ readonly searchable: boolean;
1039
+ readonly defaultSearchValue: string;
1040
+ readonly searchDebounce: number;
1041
+ readonly grouped: boolean;
1042
+ readonly minColumnWidth: string | number;
1043
+ readonly maxBodyHeight: string | number;
1044
+ readonly contentPadding: string | number;
1045
+ readonly showGroupCounter: boolean;
1046
+ }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
1047
+ export default _default;