@uzum-tech/ui 1.9.1 → 1.10.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 (149) hide show
  1. package/dist/index.js +5316 -804
  2. package/dist/index.prod.js +12 -3
  3. package/es/_internal/scrollbar/src/Scrollbar.js +19 -38
  4. package/es/auto-complete/src/AutoComplete.d.ts +1 -1
  5. package/es/cascader/src/Cascader.d.ts +1 -1
  6. package/es/chat/src/ChatListItems.js +16 -1
  7. package/es/chat/src/ChatParts/MainArea.js +31 -21
  8. package/es/components.d.ts +2 -0
  9. package/es/components.js +2 -0
  10. package/es/config-provider/src/internal-interface.d.ts +4 -0
  11. package/es/crop/index.d.ts +3 -0
  12. package/es/crop/index.js +1 -0
  13. package/es/crop/src/Crop.d.ts +222 -0
  14. package/es/crop/src/Crop.js +157 -0
  15. package/es/crop/src/interface.d.ts +6 -0
  16. package/es/crop/src/interface.js +7 -0
  17. package/es/crop/src/styles/index.cssr.d.ts +2 -0
  18. package/es/crop/src/styles/index.cssr.js +333 -0
  19. package/es/crop/styles/_common.d.ts +4 -0
  20. package/es/crop/styles/_common.js +3 -0
  21. package/es/crop/styles/dark.d.ts +3 -0
  22. package/es/crop/styles/dark.js +9 -0
  23. package/es/crop/styles/index.d.ts +3 -0
  24. package/es/crop/styles/index.js +2 -0
  25. package/es/crop/styles/light.d.ts +14 -0
  26. package/es/crop/styles/light.js +14 -0
  27. package/es/date-picker/src/panel/panelMonth.d.ts +1 -1
  28. package/es/date-picker/src/panel/panelYear.d.ts +1 -1
  29. package/es/dynamic-tags/src/DynamicTags.d.ts +30 -0
  30. package/es/dynamic-tags/styles/light.d.ts +3 -0
  31. package/es/infinite-scroll/src/InfiniteScroll.d.ts +16 -0
  32. package/es/infinite-scroll/src/InfiniteScroll.js +45 -12
  33. package/es/input/src/Input.d.ts +1 -1
  34. package/es/input-number/src/InputNumber.d.ts +1 -1
  35. package/es/legacy-transfer/src/Transfer.d.ts +1 -1
  36. package/es/modal-fullscreen/index.d.ts +2 -0
  37. package/es/modal-fullscreen/index.js +1 -0
  38. package/es/modal-fullscreen/src/ModalFull.d.ts +953 -0
  39. package/es/modal-fullscreen/src/ModalFull.js +250 -0
  40. package/es/modal-fullscreen/src/interface.d.ts +0 -0
  41. package/es/modal-fullscreen/src/interface.js +1 -0
  42. package/es/modal-fullscreen/src/styles/index.cssr.d.ts +2 -0
  43. package/es/modal-fullscreen/src/styles/index.cssr.js +85 -0
  44. package/es/modal-fullscreen/styles/_common.d.ts +12 -0
  45. package/es/modal-fullscreen/styles/_common.js +11 -0
  46. package/es/modal-fullscreen/styles/dark.d.ts +3 -0
  47. package/es/modal-fullscreen/styles/dark.js +14 -0
  48. package/es/modal-fullscreen/styles/index.d.ts +3 -0
  49. package/es/modal-fullscreen/styles/index.js +2 -0
  50. package/es/modal-fullscreen/styles/light.d.ts +100 -0
  51. package/es/modal-fullscreen/styles/light.js +19 -0
  52. package/es/rate/src/Rate.d.ts +1 -1
  53. package/es/select/src/Select.d.ts +1 -1
  54. package/es/slider/src/Slider.d.ts +1 -1
  55. package/es/switch/src/Switch.d.ts +1 -1
  56. package/es/tag/index.d.ts +2 -0
  57. package/es/tag/index.js +1 -0
  58. package/es/tag/src/Tag.d.ts +40 -0
  59. package/es/tag/src/Tag.js +3 -0
  60. package/es/tag/src/TagGroup.d.ts +644 -0
  61. package/es/tag/src/TagGroup.js +109 -0
  62. package/es/tag/src/styles/index.cssr.d.ts +1 -0
  63. package/es/tag/src/styles/index.cssr.js +8 -1
  64. package/es/tag/styles/light.d.ts +3 -0
  65. package/es/tag/styles/light.js +5 -0
  66. package/es/themes/dark.js +5 -1
  67. package/es/themes/light.js +5 -1
  68. package/es/time-picker/src/TimePicker.d.ts +1 -1
  69. package/es/transfer/src/Transfer.d.ts +1 -1
  70. package/es/tree-select/src/TreeSelect.d.ts +1 -1
  71. package/es/version.d.ts +1 -1
  72. package/es/version.js +1 -1
  73. package/es/virtual-list/index.d.ts +1 -1
  74. package/es/virtual-list/index.js +1 -1
  75. package/lib/_internal/scrollbar/src/Scrollbar.js +19 -38
  76. package/lib/auto-complete/src/AutoComplete.d.ts +1 -1
  77. package/lib/cascader/src/Cascader.d.ts +1 -1
  78. package/lib/chat/src/ChatListItems.js +16 -1
  79. package/lib/chat/src/ChatParts/MainArea.js +31 -21
  80. package/lib/components.d.ts +2 -0
  81. package/lib/components.js +2 -0
  82. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  83. package/lib/crop/index.d.ts +3 -0
  84. package/lib/crop/index.js +9 -0
  85. package/lib/crop/src/Crop.d.ts +222 -0
  86. package/lib/crop/src/Crop.js +163 -0
  87. package/lib/crop/src/interface.d.ts +6 -0
  88. package/lib/crop/src/interface.js +10 -0
  89. package/lib/crop/src/styles/index.cssr.d.ts +2 -0
  90. package/lib/crop/src/styles/index.cssr.js +338 -0
  91. package/lib/crop/styles/_common.d.ts +4 -0
  92. package/lib/crop/styles/_common.js +5 -0
  93. package/lib/crop/styles/dark.d.ts +3 -0
  94. package/lib/crop/styles/dark.js +11 -0
  95. package/lib/crop/styles/index.d.ts +3 -0
  96. package/lib/crop/styles/index.js +10 -0
  97. package/lib/crop/styles/light.d.ts +14 -0
  98. package/lib/crop/styles/light.js +21 -0
  99. package/lib/date-picker/src/panel/panelMonth.d.ts +1 -1
  100. package/lib/date-picker/src/panel/panelYear.d.ts +1 -1
  101. package/lib/dynamic-tags/src/DynamicTags.d.ts +30 -0
  102. package/lib/dynamic-tags/styles/light.d.ts +3 -0
  103. package/lib/infinite-scroll/src/InfiniteScroll.d.ts +16 -0
  104. package/lib/infinite-scroll/src/InfiniteScroll.js +44 -11
  105. package/lib/input/src/Input.d.ts +1 -1
  106. package/lib/input-number/src/InputNumber.d.ts +1 -1
  107. package/lib/legacy-transfer/src/Transfer.d.ts +1 -1
  108. package/lib/modal-fullscreen/index.d.ts +2 -0
  109. package/lib/modal-fullscreen/index.js +9 -0
  110. package/lib/modal-fullscreen/src/ModalFull.d.ts +953 -0
  111. package/lib/modal-fullscreen/src/ModalFull.js +256 -0
  112. package/lib/modal-fullscreen/src/interface.d.ts +0 -0
  113. package/lib/modal-fullscreen/src/interface.js +1 -0
  114. package/lib/modal-fullscreen/src/styles/index.cssr.d.ts +2 -0
  115. package/lib/modal-fullscreen/src/styles/index.cssr.js +90 -0
  116. package/lib/modal-fullscreen/styles/_common.d.ts +12 -0
  117. package/lib/modal-fullscreen/styles/_common.js +13 -0
  118. package/lib/modal-fullscreen/styles/dark.d.ts +3 -0
  119. package/lib/modal-fullscreen/styles/dark.js +16 -0
  120. package/lib/modal-fullscreen/styles/index.d.ts +3 -0
  121. package/lib/modal-fullscreen/styles/index.js +10 -0
  122. package/lib/modal-fullscreen/styles/light.d.ts +100 -0
  123. package/lib/modal-fullscreen/styles/light.js +26 -0
  124. package/lib/rate/src/Rate.d.ts +1 -1
  125. package/lib/select/src/Select.d.ts +1 -1
  126. package/lib/slider/src/Slider.d.ts +1 -1
  127. package/lib/switch/src/Switch.d.ts +1 -1
  128. package/lib/tag/index.d.ts +2 -0
  129. package/lib/tag/index.js +3 -1
  130. package/lib/tag/src/Tag.d.ts +40 -0
  131. package/lib/tag/src/Tag.js +3 -0
  132. package/lib/tag/src/TagGroup.d.ts +644 -0
  133. package/lib/tag/src/TagGroup.js +112 -0
  134. package/lib/tag/src/styles/index.cssr.d.ts +1 -0
  135. package/lib/tag/src/styles/index.cssr.js +9 -1
  136. package/lib/tag/styles/light.d.ts +3 -0
  137. package/lib/tag/styles/light.js +5 -0
  138. package/lib/themes/dark.js +5 -1
  139. package/lib/themes/light.js +5 -1
  140. package/lib/time-picker/src/TimePicker.d.ts +1 -1
  141. package/lib/transfer/src/Transfer.d.ts +1 -1
  142. package/lib/tree-select/src/TreeSelect.d.ts +1 -1
  143. package/lib/version.d.ts +1 -1
  144. package/lib/version.js +1 -1
  145. package/lib/virtual-list/index.d.ts +1 -1
  146. package/lib/virtual-list/index.js +2 -2
  147. package/package.json +7 -6
  148. package/volar.d.ts +4 -0
  149. package/web-types.json +387 -1
@@ -0,0 +1,644 @@
1
+ import { type PropType } from 'vue';
2
+ import type { ExtractPublicPropTypes, MaybeArray } from '../../_utils';
3
+ export type OnUpdateValue = (value: string & number & boolean) => void;
4
+ export type OnUpdateValueImpl = (value: string | number | boolean) => void;
5
+ export declare const tagGroupProps: {
6
+ readonly value: {
7
+ readonly type: PropType<string | number | boolean | null>;
8
+ readonly default: undefined;
9
+ };
10
+ readonly defaultValue: {
11
+ readonly type: PropType<string | number | boolean | null>;
12
+ readonly default: null;
13
+ };
14
+ readonly size: {
15
+ readonly type: PropType<"small" | "medium" | "large">;
16
+ readonly default: "medium";
17
+ };
18
+ readonly gap: PropType<string | number>;
19
+ readonly disabled: {
20
+ readonly type: PropType<boolean | undefined>;
21
+ readonly default: undefined;
22
+ };
23
+ readonly 'onUpdate:value': PropType<MaybeArray<OnUpdateValue>>;
24
+ readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue>>;
25
+ readonly theme: PropType<import("../../_mixins").Theme<"Tag", {
26
+ gapSmall: string;
27
+ gapMedium: string;
28
+ gapLarge: string;
29
+ closeIconSizeTiny: string;
30
+ closeIconSizeSmall: string;
31
+ closeIconSizeMedium: string;
32
+ closeIconSizeLarge: string;
33
+ closeSizeTiny: string;
34
+ closeSizeSmall: string;
35
+ closeSizeMedium: string;
36
+ closeSizeLarge: string;
37
+ paddingTiny: string;
38
+ paddingSmall: string;
39
+ paddingMedium: string;
40
+ paddingLarge: string;
41
+ closeMargin: string;
42
+ closeMarginRtl: string;
43
+ closeBorderRadius: string;
44
+ heightTiny: string;
45
+ heightSmall: string;
46
+ heightMedium: string;
47
+ heightLarge: string;
48
+ borderRadius: string;
49
+ opacityDisabled: string;
50
+ fontSizeTiny: string;
51
+ fontSizeSmall: string;
52
+ fontSizeMedium: string;
53
+ fontSizeLarge: string;
54
+ fontWeight: string;
55
+ fontWeightStrong: string;
56
+ textColorCheckable: string;
57
+ textColorHoverCheckable: string;
58
+ textColorPressedCheckable: string;
59
+ textColorChecked: string;
60
+ colorCheckable: string;
61
+ colorCheckableOutline: string;
62
+ colorHoverCheckable: string;
63
+ colorPressedCheckable: string;
64
+ colorChecked: string;
65
+ colorCheckedHover: string;
66
+ colorCheckedPressed: string;
67
+ colorDisabledChecked: string;
68
+ border: string;
69
+ textColor: string;
70
+ color: string;
71
+ colorBordered: string;
72
+ closeColorHover: string;
73
+ closeColorPressed: string;
74
+ closeIconColor: string;
75
+ closeIconColorHover: string;
76
+ closeIconColorPressed: string;
77
+ borderTertiary: string;
78
+ textColorTertiary: string;
79
+ colorTertiary: string;
80
+ colorBorderedTertiary: string;
81
+ closeIconColorTertiary: string;
82
+ closeIconColorHoverTertiary: string;
83
+ closeIconColorPressedTertiary: string;
84
+ closeColorHoverTertiary: string;
85
+ closeColorPressedTertiary: string;
86
+ }, any>>;
87
+ readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tag", {
88
+ gapSmall: string;
89
+ gapMedium: string;
90
+ gapLarge: string;
91
+ closeIconSizeTiny: string;
92
+ closeIconSizeSmall: string;
93
+ closeIconSizeMedium: string;
94
+ closeIconSizeLarge: string;
95
+ closeSizeTiny: string;
96
+ closeSizeSmall: string;
97
+ closeSizeMedium: string;
98
+ closeSizeLarge: string;
99
+ paddingTiny: string;
100
+ paddingSmall: string;
101
+ paddingMedium: string;
102
+ paddingLarge: string;
103
+ closeMargin: string;
104
+ closeMarginRtl: string;
105
+ closeBorderRadius: string;
106
+ heightTiny: string;
107
+ heightSmall: string;
108
+ heightMedium: string;
109
+ heightLarge: string;
110
+ borderRadius: string;
111
+ opacityDisabled: string;
112
+ fontSizeTiny: string;
113
+ fontSizeSmall: string;
114
+ fontSizeMedium: string;
115
+ fontSizeLarge: string;
116
+ fontWeight: string;
117
+ fontWeightStrong: string;
118
+ textColorCheckable: string;
119
+ textColorHoverCheckable: string;
120
+ textColorPressedCheckable: string;
121
+ textColorChecked: string;
122
+ colorCheckable: string;
123
+ colorCheckableOutline: string;
124
+ colorHoverCheckable: string;
125
+ colorPressedCheckable: string;
126
+ colorChecked: string;
127
+ colorCheckedHover: string;
128
+ colorCheckedPressed: string;
129
+ colorDisabledChecked: string;
130
+ border: string;
131
+ textColor: string;
132
+ color: string;
133
+ colorBordered: string;
134
+ closeColorHover: string;
135
+ closeColorPressed: string;
136
+ closeIconColor: string;
137
+ closeIconColorHover: string;
138
+ closeIconColorPressed: string;
139
+ borderTertiary: string;
140
+ textColorTertiary: string;
141
+ colorTertiary: string;
142
+ colorBorderedTertiary: string;
143
+ closeIconColorTertiary: string;
144
+ closeIconColorHoverTertiary: string;
145
+ closeIconColorPressedTertiary: string;
146
+ closeColorHoverTertiary: string;
147
+ closeColorPressedTertiary: string;
148
+ }, any>>>;
149
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tag", {
150
+ gapSmall: string;
151
+ gapMedium: string;
152
+ gapLarge: string;
153
+ closeIconSizeTiny: string;
154
+ closeIconSizeSmall: string;
155
+ closeIconSizeMedium: string;
156
+ closeIconSizeLarge: string;
157
+ closeSizeTiny: string;
158
+ closeSizeSmall: string;
159
+ closeSizeMedium: string;
160
+ closeSizeLarge: string;
161
+ paddingTiny: string;
162
+ paddingSmall: string;
163
+ paddingMedium: string;
164
+ paddingLarge: string;
165
+ closeMargin: string;
166
+ closeMarginRtl: string;
167
+ closeBorderRadius: string;
168
+ heightTiny: string;
169
+ heightSmall: string;
170
+ heightMedium: string;
171
+ heightLarge: string;
172
+ borderRadius: string;
173
+ opacityDisabled: string;
174
+ fontSizeTiny: string;
175
+ fontSizeSmall: string;
176
+ fontSizeMedium: string;
177
+ fontSizeLarge: string;
178
+ fontWeight: string;
179
+ fontWeightStrong: string;
180
+ textColorCheckable: string;
181
+ textColorHoverCheckable: string;
182
+ textColorPressedCheckable: string;
183
+ textColorChecked: string;
184
+ colorCheckable: string;
185
+ colorCheckableOutline: string;
186
+ colorHoverCheckable: string;
187
+ colorPressedCheckable: string;
188
+ colorChecked: string;
189
+ colorCheckedHover: string;
190
+ colorCheckedPressed: string;
191
+ colorDisabledChecked: string;
192
+ border: string;
193
+ textColor: string;
194
+ color: string;
195
+ colorBordered: string;
196
+ closeColorHover: string;
197
+ closeColorPressed: string;
198
+ closeIconColor: string;
199
+ closeIconColorHover: string;
200
+ closeIconColorPressed: string;
201
+ borderTertiary: string;
202
+ textColorTertiary: string;
203
+ colorTertiary: string;
204
+ colorBorderedTertiary: string;
205
+ closeIconColorTertiary: string;
206
+ closeIconColorHoverTertiary: string;
207
+ closeIconColorPressedTertiary: string;
208
+ closeColorHoverTertiary: string;
209
+ closeColorPressedTertiary: string;
210
+ }, any>>>;
211
+ };
212
+ export type TagGroupProps = ExtractPublicPropTypes<typeof tagGroupProps>;
213
+ declare const _default: import("vue").DefineComponent<{
214
+ readonly value: {
215
+ readonly type: PropType<string | number | boolean | null>;
216
+ readonly default: undefined;
217
+ };
218
+ readonly defaultValue: {
219
+ readonly type: PropType<string | number | boolean | null>;
220
+ readonly default: null;
221
+ };
222
+ readonly size: {
223
+ readonly type: PropType<"small" | "medium" | "large">;
224
+ readonly default: "medium";
225
+ };
226
+ readonly gap: PropType<string | number>;
227
+ readonly disabled: {
228
+ readonly type: PropType<boolean | undefined>;
229
+ readonly default: undefined;
230
+ };
231
+ readonly 'onUpdate:value': PropType<MaybeArray<OnUpdateValue>>;
232
+ readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue>>;
233
+ readonly theme: PropType<import("../../_mixins").Theme<"Tag", {
234
+ gapSmall: string;
235
+ gapMedium: string;
236
+ gapLarge: string;
237
+ closeIconSizeTiny: string;
238
+ closeIconSizeSmall: string;
239
+ closeIconSizeMedium: string;
240
+ closeIconSizeLarge: string;
241
+ closeSizeTiny: string;
242
+ closeSizeSmall: string;
243
+ closeSizeMedium: string;
244
+ closeSizeLarge: string;
245
+ paddingTiny: string;
246
+ paddingSmall: string;
247
+ paddingMedium: string;
248
+ paddingLarge: string;
249
+ closeMargin: string;
250
+ closeMarginRtl: string;
251
+ closeBorderRadius: string;
252
+ heightTiny: string;
253
+ heightSmall: string;
254
+ heightMedium: string;
255
+ heightLarge: string;
256
+ borderRadius: string;
257
+ opacityDisabled: string;
258
+ fontSizeTiny: string;
259
+ fontSizeSmall: string;
260
+ fontSizeMedium: string;
261
+ fontSizeLarge: string;
262
+ fontWeight: string;
263
+ fontWeightStrong: string;
264
+ textColorCheckable: string;
265
+ textColorHoverCheckable: string;
266
+ textColorPressedCheckable: string;
267
+ textColorChecked: string;
268
+ colorCheckable: string;
269
+ colorCheckableOutline: string;
270
+ colorHoverCheckable: string;
271
+ colorPressedCheckable: string;
272
+ colorChecked: string;
273
+ colorCheckedHover: string;
274
+ colorCheckedPressed: string;
275
+ colorDisabledChecked: string;
276
+ border: string;
277
+ textColor: string;
278
+ color: string;
279
+ colorBordered: string;
280
+ closeColorHover: string;
281
+ closeColorPressed: string;
282
+ closeIconColor: string;
283
+ closeIconColorHover: string;
284
+ closeIconColorPressed: string;
285
+ borderTertiary: string;
286
+ textColorTertiary: string;
287
+ colorTertiary: string;
288
+ colorBorderedTertiary: string;
289
+ closeIconColorTertiary: string;
290
+ closeIconColorHoverTertiary: string;
291
+ closeIconColorPressedTertiary: string;
292
+ closeColorHoverTertiary: string;
293
+ closeColorPressedTertiary: string;
294
+ }, any>>;
295
+ readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tag", {
296
+ gapSmall: string;
297
+ gapMedium: string;
298
+ gapLarge: string;
299
+ closeIconSizeTiny: string;
300
+ closeIconSizeSmall: string;
301
+ closeIconSizeMedium: string;
302
+ closeIconSizeLarge: string;
303
+ closeSizeTiny: string;
304
+ closeSizeSmall: string;
305
+ closeSizeMedium: string;
306
+ closeSizeLarge: string;
307
+ paddingTiny: string;
308
+ paddingSmall: string;
309
+ paddingMedium: string;
310
+ paddingLarge: string;
311
+ closeMargin: string;
312
+ closeMarginRtl: string;
313
+ closeBorderRadius: string;
314
+ heightTiny: string;
315
+ heightSmall: string;
316
+ heightMedium: string;
317
+ heightLarge: string;
318
+ borderRadius: string;
319
+ opacityDisabled: string;
320
+ fontSizeTiny: string;
321
+ fontSizeSmall: string;
322
+ fontSizeMedium: string;
323
+ fontSizeLarge: string;
324
+ fontWeight: string;
325
+ fontWeightStrong: string;
326
+ textColorCheckable: string;
327
+ textColorHoverCheckable: string;
328
+ textColorPressedCheckable: string;
329
+ textColorChecked: string;
330
+ colorCheckable: string;
331
+ colorCheckableOutline: string;
332
+ colorHoverCheckable: string;
333
+ colorPressedCheckable: string;
334
+ colorChecked: string;
335
+ colorCheckedHover: string;
336
+ colorCheckedPressed: string;
337
+ colorDisabledChecked: string;
338
+ border: string;
339
+ textColor: string;
340
+ color: string;
341
+ colorBordered: string;
342
+ closeColorHover: string;
343
+ closeColorPressed: string;
344
+ closeIconColor: string;
345
+ closeIconColorHover: string;
346
+ closeIconColorPressed: string;
347
+ borderTertiary: string;
348
+ textColorTertiary: string;
349
+ colorTertiary: string;
350
+ colorBorderedTertiary: string;
351
+ closeIconColorTertiary: string;
352
+ closeIconColorHoverTertiary: string;
353
+ closeIconColorPressedTertiary: string;
354
+ closeColorHoverTertiary: string;
355
+ closeColorPressedTertiary: string;
356
+ }, any>>>;
357
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tag", {
358
+ gapSmall: string;
359
+ gapMedium: string;
360
+ gapLarge: string;
361
+ closeIconSizeTiny: string;
362
+ closeIconSizeSmall: string;
363
+ closeIconSizeMedium: string;
364
+ closeIconSizeLarge: string;
365
+ closeSizeTiny: string;
366
+ closeSizeSmall: string;
367
+ closeSizeMedium: string;
368
+ closeSizeLarge: string;
369
+ paddingTiny: string;
370
+ paddingSmall: string;
371
+ paddingMedium: string;
372
+ paddingLarge: string;
373
+ closeMargin: string;
374
+ closeMarginRtl: string;
375
+ closeBorderRadius: string;
376
+ heightTiny: string;
377
+ heightSmall: string;
378
+ heightMedium: string;
379
+ heightLarge: string;
380
+ borderRadius: string;
381
+ opacityDisabled: string;
382
+ fontSizeTiny: string;
383
+ fontSizeSmall: string;
384
+ fontSizeMedium: string;
385
+ fontSizeLarge: string;
386
+ fontWeight: string;
387
+ fontWeightStrong: string;
388
+ textColorCheckable: string;
389
+ textColorHoverCheckable: string;
390
+ textColorPressedCheckable: string;
391
+ textColorChecked: string;
392
+ colorCheckable: string;
393
+ colorCheckableOutline: string;
394
+ colorHoverCheckable: string;
395
+ colorPressedCheckable: string;
396
+ colorChecked: string;
397
+ colorCheckedHover: string;
398
+ colorCheckedPressed: string;
399
+ colorDisabledChecked: string;
400
+ border: string;
401
+ textColor: string;
402
+ color: string;
403
+ colorBordered: string;
404
+ closeColorHover: string;
405
+ closeColorPressed: string;
406
+ closeIconColor: string;
407
+ closeIconColorHover: string;
408
+ closeIconColorPressed: string;
409
+ borderTertiary: string;
410
+ textColorTertiary: string;
411
+ colorTertiary: string;
412
+ colorBorderedTertiary: string;
413
+ closeIconColorTertiary: string;
414
+ closeIconColorHoverTertiary: string;
415
+ closeIconColorPressedTertiary: string;
416
+ closeColorHoverTertiary: string;
417
+ closeColorPressedTertiary: string;
418
+ }, any>>>;
419
+ }, {
420
+ rtlEnabled: import("vue").Ref<import("../../config-provider/src/internal-interface").RtlItem | undefined> | undefined;
421
+ mergedClsPrefix: import("vue").Ref<string>;
422
+ mergedValue: import("vue").ComputedRef<string | number | boolean | null>;
423
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
424
+ mergedDisabled: import("vue").ComputedRef<boolean>;
425
+ doUpdateValue: (value: string | number | boolean) => void;
426
+ cssVars: import("vue").ComputedRef<{
427
+ '--u-bezier': string;
428
+ '--u-gap': string;
429
+ }> | undefined;
430
+ themeClass: import("vue").Ref<string> | undefined;
431
+ onRender: (() => void) | undefined;
432
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
433
+ readonly value: {
434
+ readonly type: PropType<string | number | boolean | null>;
435
+ readonly default: undefined;
436
+ };
437
+ readonly defaultValue: {
438
+ readonly type: PropType<string | number | boolean | null>;
439
+ readonly default: null;
440
+ };
441
+ readonly size: {
442
+ readonly type: PropType<"small" | "medium" | "large">;
443
+ readonly default: "medium";
444
+ };
445
+ readonly gap: PropType<string | number>;
446
+ readonly disabled: {
447
+ readonly type: PropType<boolean | undefined>;
448
+ readonly default: undefined;
449
+ };
450
+ readonly 'onUpdate:value': PropType<MaybeArray<OnUpdateValue>>;
451
+ readonly onUpdateValue: PropType<MaybeArray<OnUpdateValue>>;
452
+ readonly theme: PropType<import("../../_mixins").Theme<"Tag", {
453
+ gapSmall: string;
454
+ gapMedium: string;
455
+ gapLarge: string;
456
+ closeIconSizeTiny: string;
457
+ closeIconSizeSmall: string;
458
+ closeIconSizeMedium: string;
459
+ closeIconSizeLarge: string;
460
+ closeSizeTiny: string;
461
+ closeSizeSmall: string;
462
+ closeSizeMedium: string;
463
+ closeSizeLarge: string;
464
+ paddingTiny: string;
465
+ paddingSmall: string;
466
+ paddingMedium: string;
467
+ paddingLarge: string;
468
+ closeMargin: string;
469
+ closeMarginRtl: string;
470
+ closeBorderRadius: string;
471
+ heightTiny: string;
472
+ heightSmall: string;
473
+ heightMedium: string;
474
+ heightLarge: string;
475
+ borderRadius: string;
476
+ opacityDisabled: string;
477
+ fontSizeTiny: string;
478
+ fontSizeSmall: string;
479
+ fontSizeMedium: string;
480
+ fontSizeLarge: string;
481
+ fontWeight: string;
482
+ fontWeightStrong: string;
483
+ textColorCheckable: string;
484
+ textColorHoverCheckable: string;
485
+ textColorPressedCheckable: string;
486
+ textColorChecked: string;
487
+ colorCheckable: string;
488
+ colorCheckableOutline: string;
489
+ colorHoverCheckable: string;
490
+ colorPressedCheckable: string;
491
+ colorChecked: string;
492
+ colorCheckedHover: string;
493
+ colorCheckedPressed: string;
494
+ colorDisabledChecked: string;
495
+ border: string;
496
+ textColor: string;
497
+ color: string;
498
+ colorBordered: string;
499
+ closeColorHover: string;
500
+ closeColorPressed: string;
501
+ closeIconColor: string;
502
+ closeIconColorHover: string;
503
+ closeIconColorPressed: string;
504
+ borderTertiary: string;
505
+ textColorTertiary: string;
506
+ colorTertiary: string;
507
+ colorBorderedTertiary: string;
508
+ closeIconColorTertiary: string;
509
+ closeIconColorHoverTertiary: string;
510
+ closeIconColorPressedTertiary: string;
511
+ closeColorHoverTertiary: string;
512
+ closeColorPressedTertiary: string;
513
+ }, any>>;
514
+ readonly themeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tag", {
515
+ gapSmall: string;
516
+ gapMedium: string;
517
+ gapLarge: string;
518
+ closeIconSizeTiny: string;
519
+ closeIconSizeSmall: string;
520
+ closeIconSizeMedium: string;
521
+ closeIconSizeLarge: string;
522
+ closeSizeTiny: string;
523
+ closeSizeSmall: string;
524
+ closeSizeMedium: string;
525
+ closeSizeLarge: string;
526
+ paddingTiny: string;
527
+ paddingSmall: string;
528
+ paddingMedium: string;
529
+ paddingLarge: string;
530
+ closeMargin: string;
531
+ closeMarginRtl: string;
532
+ closeBorderRadius: string;
533
+ heightTiny: string;
534
+ heightSmall: string;
535
+ heightMedium: string;
536
+ heightLarge: string;
537
+ borderRadius: string;
538
+ opacityDisabled: string;
539
+ fontSizeTiny: string;
540
+ fontSizeSmall: string;
541
+ fontSizeMedium: string;
542
+ fontSizeLarge: string;
543
+ fontWeight: string;
544
+ fontWeightStrong: string;
545
+ textColorCheckable: string;
546
+ textColorHoverCheckable: string;
547
+ textColorPressedCheckable: string;
548
+ textColorChecked: string;
549
+ colorCheckable: string;
550
+ colorCheckableOutline: string;
551
+ colorHoverCheckable: string;
552
+ colorPressedCheckable: string;
553
+ colorChecked: string;
554
+ colorCheckedHover: string;
555
+ colorCheckedPressed: string;
556
+ colorDisabledChecked: string;
557
+ border: string;
558
+ textColor: string;
559
+ color: string;
560
+ colorBordered: string;
561
+ closeColorHover: string;
562
+ closeColorPressed: string;
563
+ closeIconColor: string;
564
+ closeIconColorHover: string;
565
+ closeIconColorPressed: string;
566
+ borderTertiary: string;
567
+ textColorTertiary: string;
568
+ colorTertiary: string;
569
+ colorBorderedTertiary: string;
570
+ closeIconColorTertiary: string;
571
+ closeIconColorHoverTertiary: string;
572
+ closeIconColorPressedTertiary: string;
573
+ closeColorHoverTertiary: string;
574
+ closeColorPressedTertiary: string;
575
+ }, any>>>;
576
+ readonly builtinThemeOverrides: PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"Tag", {
577
+ gapSmall: string;
578
+ gapMedium: string;
579
+ gapLarge: string;
580
+ closeIconSizeTiny: string;
581
+ closeIconSizeSmall: string;
582
+ closeIconSizeMedium: string;
583
+ closeIconSizeLarge: string;
584
+ closeSizeTiny: string;
585
+ closeSizeSmall: string;
586
+ closeSizeMedium: string;
587
+ closeSizeLarge: string;
588
+ paddingTiny: string;
589
+ paddingSmall: string;
590
+ paddingMedium: string;
591
+ paddingLarge: string;
592
+ closeMargin: string;
593
+ closeMarginRtl: string;
594
+ closeBorderRadius: string;
595
+ heightTiny: string;
596
+ heightSmall: string;
597
+ heightMedium: string;
598
+ heightLarge: string;
599
+ borderRadius: string;
600
+ opacityDisabled: string;
601
+ fontSizeTiny: string;
602
+ fontSizeSmall: string;
603
+ fontSizeMedium: string;
604
+ fontSizeLarge: string;
605
+ fontWeight: string;
606
+ fontWeightStrong: string;
607
+ textColorCheckable: string;
608
+ textColorHoverCheckable: string;
609
+ textColorPressedCheckable: string;
610
+ textColorChecked: string;
611
+ colorCheckable: string;
612
+ colorCheckableOutline: string;
613
+ colorHoverCheckable: string;
614
+ colorPressedCheckable: string;
615
+ colorChecked: string;
616
+ colorCheckedHover: string;
617
+ colorCheckedPressed: string;
618
+ colorDisabledChecked: string;
619
+ border: string;
620
+ textColor: string;
621
+ color: string;
622
+ colorBordered: string;
623
+ closeColorHover: string;
624
+ closeColorPressed: string;
625
+ closeIconColor: string;
626
+ closeIconColorHover: string;
627
+ closeIconColorPressed: string;
628
+ borderTertiary: string;
629
+ textColorTertiary: string;
630
+ colorTertiary: string;
631
+ colorBorderedTertiary: string;
632
+ closeIconColorTertiary: string;
633
+ closeIconColorHoverTertiary: string;
634
+ closeIconColorPressedTertiary: string;
635
+ closeColorHoverTertiary: string;
636
+ closeColorPressedTertiary: string;
637
+ }, any>>>;
638
+ }>>, {
639
+ readonly value: string | number | boolean | null;
640
+ readonly disabled: boolean | undefined;
641
+ readonly size: "small" | "medium" | "large";
642
+ readonly defaultValue: string | number | boolean | null;
643
+ }, {}>;
644
+ export default _default;