@uzum-tech/ui 2.3.7 → 3.0.0-alpha.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/dist/index.js +811 -215
  2. package/dist/index.mjs +807 -216
  3. package/dist/index.prod.js +3 -3
  4. package/dist/index.prod.mjs +3 -3
  5. package/es/_internal/button-v3/index.d.ts +5 -0
  6. package/es/_internal/button-v3/index.mjs +3 -0
  7. package/es/_internal/button-v3/src/ButtonV3.d.ts +533 -0
  8. package/es/_internal/button-v3/src/ButtonV3.mjs +200 -0
  9. package/es/_internal/button-v3/src/interface.d.ts +281 -0
  10. package/es/_internal/button-v3/src/interface.mjs +29 -0
  11. package/es/_internal/button-v3/src/styles/index.cssr.d.ts +2 -0
  12. package/es/_internal/button-v3/src/styles/index.cssr.mjs +119 -0
  13. package/es/_internal/button-v3/src/utils.d.ts +10 -0
  14. package/es/_internal/button-v3/src/utils.mjs +52 -0
  15. package/es/_internal/button-v3/styles/_common.d.ts +19 -0
  16. package/es/_internal/button-v3/styles/_common.mjs +18 -0
  17. package/es/_internal/button-v3/styles/dark.d.ts +3 -0
  18. package/es/_internal/button-v3/styles/dark.mjs +8 -0
  19. package/es/_internal/button-v3/styles/index.d.ts +3 -0
  20. package/es/_internal/button-v3/styles/index.mjs +2 -0
  21. package/es/_internal/button-v3/styles/light.d.ts +81 -0
  22. package/es/_internal/button-v3/styles/light.mjs +91 -0
  23. package/es/_internal/index.d.ts +2 -0
  24. package/es/_internal/index.mjs +1 -0
  25. package/es/_styles/common/dark.mjs +12 -0
  26. package/es/_styles/common/light.d.ts +12 -0
  27. package/es/_styles/common/light.mjs +12 -0
  28. package/es/button-v3/index.d.ts +4 -0
  29. package/es/button-v3/index.mjs +2 -0
  30. package/es/button-v3/src/ButtonV3.d.ts +525 -0
  31. package/es/button-v3/src/ButtonV3.mjs +17 -0
  32. package/es/components.d.ts +524 -2
  33. package/es/components.mjs +185 -180
  34. package/es/config-provider/src/internal-interface.d.ts +4 -0
  35. package/es/dialog/src/DialogProvider.d.ts +48 -0
  36. package/es/styles.d.ts +1 -0
  37. package/es/styles.mjs +1 -0
  38. package/es/theme-editor/src/ThemeEditor.d.ts +12 -0
  39. package/es/themes/dark.mjs +2 -0
  40. package/es/themes/light.mjs +2 -0
  41. package/es/version.d.ts +1 -1
  42. package/es/version.mjs +1 -1
  43. package/lib/_internal/button-v3/index.d.ts +5 -0
  44. package/lib/_internal/button-v3/index.js +13 -0
  45. package/lib/_internal/button-v3/src/ButtonV3.d.ts +533 -0
  46. package/lib/_internal/button-v3/src/ButtonV3.js +170 -0
  47. package/lib/_internal/button-v3/src/interface.d.ts +281 -0
  48. package/lib/_internal/button-v3/src/interface.js +20 -0
  49. package/lib/_internal/button-v3/src/styles/index.cssr.d.ts +2 -0
  50. package/lib/_internal/button-v3/src/styles/index.cssr.js +124 -0
  51. package/lib/_internal/button-v3/src/utils.d.ts +10 -0
  52. package/lib/_internal/button-v3/src/utils.js +56 -0
  53. package/lib/_internal/button-v3/styles/_common.d.ts +19 -0
  54. package/lib/_internal/button-v3/styles/_common.js +20 -0
  55. package/lib/_internal/button-v3/styles/dark.d.ts +3 -0
  56. package/lib/_internal/button-v3/styles/dark.js +10 -0
  57. package/lib/_internal/button-v3/styles/index.d.ts +3 -0
  58. package/lib/_internal/button-v3/styles/index.js +10 -0
  59. package/lib/_internal/button-v3/styles/light.d.ts +81 -0
  60. package/lib/_internal/button-v3/styles/light.js +19 -0
  61. package/lib/_internal/index.d.ts +2 -0
  62. package/lib/_internal/index.js +4 -1
  63. package/lib/_styles/common/dark.js +1 -1
  64. package/lib/_styles/common/light.d.ts +12 -0
  65. package/lib/_styles/common/light.js +1 -1
  66. package/lib/button-v3/index.d.ts +4 -0
  67. package/lib/button-v3/index.js +13 -0
  68. package/lib/button-v3/src/ButtonV3.d.ts +525 -0
  69. package/lib/button-v3/src/ButtonV3.js +17 -0
  70. package/lib/components.d.ts +524 -2
  71. package/lib/components.js +16 -8
  72. package/lib/config-provider/src/internal-interface.d.ts +4 -0
  73. package/lib/dialog/src/DialogProvider.d.ts +48 -0
  74. package/lib/styles.d.ts +1 -0
  75. package/lib/styles.js +195 -193
  76. package/lib/theme-editor/src/ThemeEditor.d.ts +12 -0
  77. package/lib/themes/dark.js +202 -200
  78. package/lib/themes/light.js +202 -200
  79. package/lib/version.d.ts +1 -1
  80. package/lib/version.js +1 -1
  81. package/package.json +1 -1
  82. package/volar.d.ts +2 -0
  83. package/web-types.json +14 -1
@@ -0,0 +1,525 @@
1
+ import type { SlotsType } from 'vue';
2
+ import type { ButtonV3MergedProps, ButtonV3Slots } from '../../_internal';
3
+ import { buttonV3Props } from '../../_internal';
4
+ declare const ButtonV3: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
5
+ readonly type: {
6
+ readonly type: import("vue").PropType<import("..").ButtonV3Type>;
7
+ readonly default: "primary";
8
+ };
9
+ readonly tone: {
10
+ readonly type: import("vue").PropType<import("..").ButtonV3Tone>;
11
+ readonly default: "default";
12
+ };
13
+ readonly size: import("vue").PropType<import("..").ButtonV3Size>;
14
+ readonly iconOnly: BooleanConstructor;
15
+ readonly block: BooleanConstructor;
16
+ readonly disabled: BooleanConstructor;
17
+ readonly loading: BooleanConstructor;
18
+ readonly focusable: {
19
+ readonly type: BooleanConstructor;
20
+ readonly default: true;
21
+ };
22
+ readonly tag: {
23
+ readonly type: import("vue").PropType<import("..").ButtonV3Tag>;
24
+ readonly default: "button";
25
+ };
26
+ readonly attrType: {
27
+ readonly type: import("vue").PropType<import("..").ButtonV3AttrType>;
28
+ readonly default: "button";
29
+ };
30
+ readonly onClick: import("vue").PropType<import("..").ButtonV3ClickHandler>;
31
+ readonly theme: import("vue").PropType<import("../../_mixins").Theme<"ButtonV3", {
32
+ fontFamily: string;
33
+ fontSize: string;
34
+ lineHeight: string;
35
+ fontWeight: string;
36
+ letterSpacing: string;
37
+ pressedOverlayColor: string;
38
+ focusRingColor: string;
39
+ textColorDisabled: string;
40
+ colorPrimary: string;
41
+ colorPrimaryHover: string;
42
+ textColorPrimary: string;
43
+ textColorPrimaryHover: string;
44
+ borderColorPrimary: string;
45
+ colorPrimaryDisabled: string;
46
+ borderColorPrimaryDisabled: string;
47
+ colorPrimaryNegative: string;
48
+ colorPrimaryNegativeHover: string;
49
+ textColorPrimaryNegative: string;
50
+ textColorPrimaryNegativeHover: string;
51
+ borderColorPrimaryNegative: string;
52
+ colorPrimaryNegativeDisabled: string;
53
+ borderColorPrimaryNegativeDisabled: string;
54
+ colorSecondary: string;
55
+ colorSecondaryHover: string;
56
+ textColorSecondary: string;
57
+ textColorSecondaryHover: string;
58
+ borderColorSecondary: string;
59
+ colorSecondaryDisabled: string;
60
+ borderColorSecondaryDisabled: string;
61
+ colorTertiary: string;
62
+ colorTertiaryHover: string;
63
+ textColorTertiary: string;
64
+ textColorTertiaryHover: string;
65
+ borderColorTertiary: string;
66
+ colorTertiaryDisabled: string;
67
+ borderColorTertiaryDisabled: string;
68
+ colorTertiaryNegative: string;
69
+ colorTertiaryNegativeHover: string;
70
+ textColorTertiaryNegative: string;
71
+ textColorTertiaryNegativeHover: string;
72
+ borderColorTertiaryNegative: string;
73
+ colorTertiaryNegativeDisabled: string;
74
+ borderColorTertiaryNegativeDisabled: string;
75
+ colorGhost: string;
76
+ colorGhostHover: string;
77
+ textColorGhost: string;
78
+ textColorGhostHover: string;
79
+ borderColorGhost: string;
80
+ colorGhostDisabled: string;
81
+ borderColorGhostDisabled: string;
82
+ colorGhostNegative: string;
83
+ colorGhostNegativeHover: string;
84
+ textColorGhostNegative: string;
85
+ textColorGhostNegativeHover: string;
86
+ borderColorGhostNegative: string;
87
+ colorGhostNegativeDisabled: string;
88
+ borderColorGhostNegativeDisabled: string;
89
+ heightSmall: string;
90
+ heightMedium: string;
91
+ heightLarge: string;
92
+ paddingSmall: string;
93
+ paddingMedium: string;
94
+ paddingLarge: string;
95
+ borderRadiusSmall: string;
96
+ borderRadiusMedium: string;
97
+ borderRadiusLarge: string;
98
+ iconSizeSmall: string;
99
+ iconSizeMedium: string;
100
+ iconSizeLarge: string;
101
+ iconMargin: string;
102
+ borderWidth: string;
103
+ focusRingWidth: string;
104
+ spinnerStrokeWidth: string;
105
+ }, any>>;
106
+ readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ButtonV3", {
107
+ fontFamily: string;
108
+ fontSize: string;
109
+ lineHeight: string;
110
+ fontWeight: string;
111
+ letterSpacing: string;
112
+ pressedOverlayColor: string;
113
+ focusRingColor: string;
114
+ textColorDisabled: string;
115
+ colorPrimary: string;
116
+ colorPrimaryHover: string;
117
+ textColorPrimary: string;
118
+ textColorPrimaryHover: string;
119
+ borderColorPrimary: string;
120
+ colorPrimaryDisabled: string;
121
+ borderColorPrimaryDisabled: string;
122
+ colorPrimaryNegative: string;
123
+ colorPrimaryNegativeHover: string;
124
+ textColorPrimaryNegative: string;
125
+ textColorPrimaryNegativeHover: string;
126
+ borderColorPrimaryNegative: string;
127
+ colorPrimaryNegativeDisabled: string;
128
+ borderColorPrimaryNegativeDisabled: string;
129
+ colorSecondary: string;
130
+ colorSecondaryHover: string;
131
+ textColorSecondary: string;
132
+ textColorSecondaryHover: string;
133
+ borderColorSecondary: string;
134
+ colorSecondaryDisabled: string;
135
+ borderColorSecondaryDisabled: string;
136
+ colorTertiary: string;
137
+ colorTertiaryHover: string;
138
+ textColorTertiary: string;
139
+ textColorTertiaryHover: string;
140
+ borderColorTertiary: string;
141
+ colorTertiaryDisabled: string;
142
+ borderColorTertiaryDisabled: string;
143
+ colorTertiaryNegative: string;
144
+ colorTertiaryNegativeHover: string;
145
+ textColorTertiaryNegative: string;
146
+ textColorTertiaryNegativeHover: string;
147
+ borderColorTertiaryNegative: string;
148
+ colorTertiaryNegativeDisabled: string;
149
+ borderColorTertiaryNegativeDisabled: string;
150
+ colorGhost: string;
151
+ colorGhostHover: string;
152
+ textColorGhost: string;
153
+ textColorGhostHover: string;
154
+ borderColorGhost: string;
155
+ colorGhostDisabled: string;
156
+ borderColorGhostDisabled: string;
157
+ colorGhostNegative: string;
158
+ colorGhostNegativeHover: string;
159
+ textColorGhostNegative: string;
160
+ textColorGhostNegativeHover: string;
161
+ borderColorGhostNegative: string;
162
+ colorGhostNegativeDisabled: string;
163
+ borderColorGhostNegativeDisabled: string;
164
+ heightSmall: string;
165
+ heightMedium: string;
166
+ heightLarge: string;
167
+ paddingSmall: string;
168
+ paddingMedium: string;
169
+ paddingLarge: string;
170
+ borderRadiusSmall: string;
171
+ borderRadiusMedium: string;
172
+ borderRadiusLarge: string;
173
+ iconSizeSmall: string;
174
+ iconSizeMedium: string;
175
+ iconSizeLarge: string;
176
+ iconMargin: string;
177
+ borderWidth: string;
178
+ focusRingWidth: string;
179
+ spinnerStrokeWidth: string;
180
+ }, any>>>;
181
+ readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ButtonV3", {
182
+ fontFamily: string;
183
+ fontSize: string;
184
+ lineHeight: string;
185
+ fontWeight: string;
186
+ letterSpacing: string;
187
+ pressedOverlayColor: string;
188
+ focusRingColor: string;
189
+ textColorDisabled: string;
190
+ colorPrimary: string;
191
+ colorPrimaryHover: string;
192
+ textColorPrimary: string;
193
+ textColorPrimaryHover: string;
194
+ borderColorPrimary: string;
195
+ colorPrimaryDisabled: string;
196
+ borderColorPrimaryDisabled: string;
197
+ colorPrimaryNegative: string;
198
+ colorPrimaryNegativeHover: string;
199
+ textColorPrimaryNegative: string;
200
+ textColorPrimaryNegativeHover: string;
201
+ borderColorPrimaryNegative: string;
202
+ colorPrimaryNegativeDisabled: string;
203
+ borderColorPrimaryNegativeDisabled: string;
204
+ colorSecondary: string;
205
+ colorSecondaryHover: string;
206
+ textColorSecondary: string;
207
+ textColorSecondaryHover: string;
208
+ borderColorSecondary: string;
209
+ colorSecondaryDisabled: string;
210
+ borderColorSecondaryDisabled: string;
211
+ colorTertiary: string;
212
+ colorTertiaryHover: string;
213
+ textColorTertiary: string;
214
+ textColorTertiaryHover: string;
215
+ borderColorTertiary: string;
216
+ colorTertiaryDisabled: string;
217
+ borderColorTertiaryDisabled: string;
218
+ colorTertiaryNegative: string;
219
+ colorTertiaryNegativeHover: string;
220
+ textColorTertiaryNegative: string;
221
+ textColorTertiaryNegativeHover: string;
222
+ borderColorTertiaryNegative: string;
223
+ colorTertiaryNegativeDisabled: string;
224
+ borderColorTertiaryNegativeDisabled: string;
225
+ colorGhost: string;
226
+ colorGhostHover: string;
227
+ textColorGhost: string;
228
+ textColorGhostHover: string;
229
+ borderColorGhost: string;
230
+ colorGhostDisabled: string;
231
+ borderColorGhostDisabled: string;
232
+ colorGhostNegative: string;
233
+ colorGhostNegativeHover: string;
234
+ textColorGhostNegative: string;
235
+ textColorGhostNegativeHover: string;
236
+ borderColorGhostNegative: string;
237
+ colorGhostNegativeDisabled: string;
238
+ borderColorGhostNegativeDisabled: string;
239
+ heightSmall: string;
240
+ heightMedium: string;
241
+ heightLarge: string;
242
+ paddingSmall: string;
243
+ paddingMedium: string;
244
+ paddingLarge: string;
245
+ borderRadiusSmall: string;
246
+ borderRadiusMedium: string;
247
+ borderRadiusLarge: string;
248
+ iconSizeSmall: string;
249
+ iconSizeMedium: string;
250
+ iconSizeLarge: string;
251
+ iconMargin: string;
252
+ borderWidth: string;
253
+ focusRingWidth: string;
254
+ spinnerStrokeWidth: string;
255
+ }, any>>>;
256
+ }>, () => import("vue").VNode<import("vue").RendererNode, import("vue").RendererElement, {
257
+ [key: string]: any;
258
+ }>, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
259
+ readonly type: {
260
+ readonly type: import("vue").PropType<import("..").ButtonV3Type>;
261
+ readonly default: "primary";
262
+ };
263
+ readonly tone: {
264
+ readonly type: import("vue").PropType<import("..").ButtonV3Tone>;
265
+ readonly default: "default";
266
+ };
267
+ readonly size: import("vue").PropType<import("..").ButtonV3Size>;
268
+ readonly iconOnly: BooleanConstructor;
269
+ readonly block: BooleanConstructor;
270
+ readonly disabled: BooleanConstructor;
271
+ readonly loading: BooleanConstructor;
272
+ readonly focusable: {
273
+ readonly type: BooleanConstructor;
274
+ readonly default: true;
275
+ };
276
+ readonly tag: {
277
+ readonly type: import("vue").PropType<import("..").ButtonV3Tag>;
278
+ readonly default: "button";
279
+ };
280
+ readonly attrType: {
281
+ readonly type: import("vue").PropType<import("..").ButtonV3AttrType>;
282
+ readonly default: "button";
283
+ };
284
+ readonly onClick: import("vue").PropType<import("..").ButtonV3ClickHandler>;
285
+ readonly theme: import("vue").PropType<import("../../_mixins").Theme<"ButtonV3", {
286
+ fontFamily: string;
287
+ fontSize: string;
288
+ lineHeight: string;
289
+ fontWeight: string;
290
+ letterSpacing: string;
291
+ pressedOverlayColor: string;
292
+ focusRingColor: string;
293
+ textColorDisabled: string;
294
+ colorPrimary: string;
295
+ colorPrimaryHover: string;
296
+ textColorPrimary: string;
297
+ textColorPrimaryHover: string;
298
+ borderColorPrimary: string;
299
+ colorPrimaryDisabled: string;
300
+ borderColorPrimaryDisabled: string;
301
+ colorPrimaryNegative: string;
302
+ colorPrimaryNegativeHover: string;
303
+ textColorPrimaryNegative: string;
304
+ textColorPrimaryNegativeHover: string;
305
+ borderColorPrimaryNegative: string;
306
+ colorPrimaryNegativeDisabled: string;
307
+ borderColorPrimaryNegativeDisabled: string;
308
+ colorSecondary: string;
309
+ colorSecondaryHover: string;
310
+ textColorSecondary: string;
311
+ textColorSecondaryHover: string;
312
+ borderColorSecondary: string;
313
+ colorSecondaryDisabled: string;
314
+ borderColorSecondaryDisabled: string;
315
+ colorTertiary: string;
316
+ colorTertiaryHover: string;
317
+ textColorTertiary: string;
318
+ textColorTertiaryHover: string;
319
+ borderColorTertiary: string;
320
+ colorTertiaryDisabled: string;
321
+ borderColorTertiaryDisabled: string;
322
+ colorTertiaryNegative: string;
323
+ colorTertiaryNegativeHover: string;
324
+ textColorTertiaryNegative: string;
325
+ textColorTertiaryNegativeHover: string;
326
+ borderColorTertiaryNegative: string;
327
+ colorTertiaryNegativeDisabled: string;
328
+ borderColorTertiaryNegativeDisabled: string;
329
+ colorGhost: string;
330
+ colorGhostHover: string;
331
+ textColorGhost: string;
332
+ textColorGhostHover: string;
333
+ borderColorGhost: string;
334
+ colorGhostDisabled: string;
335
+ borderColorGhostDisabled: string;
336
+ colorGhostNegative: string;
337
+ colorGhostNegativeHover: string;
338
+ textColorGhostNegative: string;
339
+ textColorGhostNegativeHover: string;
340
+ borderColorGhostNegative: string;
341
+ colorGhostNegativeDisabled: string;
342
+ borderColorGhostNegativeDisabled: string;
343
+ heightSmall: string;
344
+ heightMedium: string;
345
+ heightLarge: string;
346
+ paddingSmall: string;
347
+ paddingMedium: string;
348
+ paddingLarge: string;
349
+ borderRadiusSmall: string;
350
+ borderRadiusMedium: string;
351
+ borderRadiusLarge: string;
352
+ iconSizeSmall: string;
353
+ iconSizeMedium: string;
354
+ iconSizeLarge: string;
355
+ iconMargin: string;
356
+ borderWidth: string;
357
+ focusRingWidth: string;
358
+ spinnerStrokeWidth: string;
359
+ }, any>>;
360
+ readonly themeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ButtonV3", {
361
+ fontFamily: string;
362
+ fontSize: string;
363
+ lineHeight: string;
364
+ fontWeight: string;
365
+ letterSpacing: string;
366
+ pressedOverlayColor: string;
367
+ focusRingColor: string;
368
+ textColorDisabled: string;
369
+ colorPrimary: string;
370
+ colorPrimaryHover: string;
371
+ textColorPrimary: string;
372
+ textColorPrimaryHover: string;
373
+ borderColorPrimary: string;
374
+ colorPrimaryDisabled: string;
375
+ borderColorPrimaryDisabled: string;
376
+ colorPrimaryNegative: string;
377
+ colorPrimaryNegativeHover: string;
378
+ textColorPrimaryNegative: string;
379
+ textColorPrimaryNegativeHover: string;
380
+ borderColorPrimaryNegative: string;
381
+ colorPrimaryNegativeDisabled: string;
382
+ borderColorPrimaryNegativeDisabled: string;
383
+ colorSecondary: string;
384
+ colorSecondaryHover: string;
385
+ textColorSecondary: string;
386
+ textColorSecondaryHover: string;
387
+ borderColorSecondary: string;
388
+ colorSecondaryDisabled: string;
389
+ borderColorSecondaryDisabled: string;
390
+ colorTertiary: string;
391
+ colorTertiaryHover: string;
392
+ textColorTertiary: string;
393
+ textColorTertiaryHover: string;
394
+ borderColorTertiary: string;
395
+ colorTertiaryDisabled: string;
396
+ borderColorTertiaryDisabled: string;
397
+ colorTertiaryNegative: string;
398
+ colorTertiaryNegativeHover: string;
399
+ textColorTertiaryNegative: string;
400
+ textColorTertiaryNegativeHover: string;
401
+ borderColorTertiaryNegative: string;
402
+ colorTertiaryNegativeDisabled: string;
403
+ borderColorTertiaryNegativeDisabled: string;
404
+ colorGhost: string;
405
+ colorGhostHover: string;
406
+ textColorGhost: string;
407
+ textColorGhostHover: string;
408
+ borderColorGhost: string;
409
+ colorGhostDisabled: string;
410
+ borderColorGhostDisabled: string;
411
+ colorGhostNegative: string;
412
+ colorGhostNegativeHover: string;
413
+ textColorGhostNegative: string;
414
+ textColorGhostNegativeHover: string;
415
+ borderColorGhostNegative: string;
416
+ colorGhostNegativeDisabled: string;
417
+ borderColorGhostNegativeDisabled: string;
418
+ heightSmall: string;
419
+ heightMedium: string;
420
+ heightLarge: string;
421
+ paddingSmall: string;
422
+ paddingMedium: string;
423
+ paddingLarge: string;
424
+ borderRadiusSmall: string;
425
+ borderRadiusMedium: string;
426
+ borderRadiusLarge: string;
427
+ iconSizeSmall: string;
428
+ iconSizeMedium: string;
429
+ iconSizeLarge: string;
430
+ iconMargin: string;
431
+ borderWidth: string;
432
+ focusRingWidth: string;
433
+ spinnerStrokeWidth: string;
434
+ }, any>>>;
435
+ readonly builtinThemeOverrides: import("vue").PropType<import("../../_mixins/use-theme").ExtractThemeOverrides<import("../../_mixins").Theme<"ButtonV3", {
436
+ fontFamily: string;
437
+ fontSize: string;
438
+ lineHeight: string;
439
+ fontWeight: string;
440
+ letterSpacing: string;
441
+ pressedOverlayColor: string;
442
+ focusRingColor: string;
443
+ textColorDisabled: string;
444
+ colorPrimary: string;
445
+ colorPrimaryHover: string;
446
+ textColorPrimary: string;
447
+ textColorPrimaryHover: string;
448
+ borderColorPrimary: string;
449
+ colorPrimaryDisabled: string;
450
+ borderColorPrimaryDisabled: string;
451
+ colorPrimaryNegative: string;
452
+ colorPrimaryNegativeHover: string;
453
+ textColorPrimaryNegative: string;
454
+ textColorPrimaryNegativeHover: string;
455
+ borderColorPrimaryNegative: string;
456
+ colorPrimaryNegativeDisabled: string;
457
+ borderColorPrimaryNegativeDisabled: string;
458
+ colorSecondary: string;
459
+ colorSecondaryHover: string;
460
+ textColorSecondary: string;
461
+ textColorSecondaryHover: string;
462
+ borderColorSecondary: string;
463
+ colorSecondaryDisabled: string;
464
+ borderColorSecondaryDisabled: string;
465
+ colorTertiary: string;
466
+ colorTertiaryHover: string;
467
+ textColorTertiary: string;
468
+ textColorTertiaryHover: string;
469
+ borderColorTertiary: string;
470
+ colorTertiaryDisabled: string;
471
+ borderColorTertiaryDisabled: string;
472
+ colorTertiaryNegative: string;
473
+ colorTertiaryNegativeHover: string;
474
+ textColorTertiaryNegative: string;
475
+ textColorTertiaryNegativeHover: string;
476
+ borderColorTertiaryNegative: string;
477
+ colorTertiaryNegativeDisabled: string;
478
+ borderColorTertiaryNegativeDisabled: string;
479
+ colorGhost: string;
480
+ colorGhostHover: string;
481
+ textColorGhost: string;
482
+ textColorGhostHover: string;
483
+ borderColorGhost: string;
484
+ colorGhostDisabled: string;
485
+ borderColorGhostDisabled: string;
486
+ colorGhostNegative: string;
487
+ colorGhostNegativeHover: string;
488
+ textColorGhostNegative: string;
489
+ textColorGhostNegativeHover: string;
490
+ borderColorGhostNegative: string;
491
+ colorGhostNegativeDisabled: string;
492
+ borderColorGhostNegativeDisabled: string;
493
+ heightSmall: string;
494
+ heightMedium: string;
495
+ heightLarge: string;
496
+ paddingSmall: string;
497
+ paddingMedium: string;
498
+ paddingLarge: string;
499
+ borderRadiusSmall: string;
500
+ borderRadiusMedium: string;
501
+ borderRadiusLarge: string;
502
+ iconSizeSmall: string;
503
+ iconSizeMedium: string;
504
+ iconSizeLarge: string;
505
+ iconMargin: string;
506
+ borderWidth: string;
507
+ focusRingWidth: string;
508
+ spinnerStrokeWidth: string;
509
+ }, any>>>;
510
+ }>> & Readonly<{}>, {
511
+ readonly loading: boolean;
512
+ readonly tag: keyof HTMLElementTagNameMap;
513
+ readonly type: import("..").ButtonV3Type;
514
+ readonly block: boolean;
515
+ readonly disabled: boolean;
516
+ readonly focusable: boolean;
517
+ readonly attrType: import("..").ButtonV3AttrType;
518
+ readonly tone: import("..").ButtonV3Tone;
519
+ readonly iconOnly: boolean;
520
+ }, SlotsType<ButtonV3Slots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
521
+ export declare const XButtonV3: new () => {
522
+ $props: ButtonV3MergedProps;
523
+ };
524
+ export { buttonV3Props };
525
+ export default ButtonV3;
@@ -0,0 +1,17 @@
1
+ import { defineComponent, h } from 'vue';
2
+ import { buttonV3Props, InternalUButtonV3 } from "../../_internal/index.mjs";
3
+ const ButtonV3 = defineComponent({
4
+ name: 'ButtonV3',
5
+ props: buttonV3Props,
6
+ slots: Object,
7
+ inheritAttrs: false,
8
+ setup(props, {
9
+ slots,
10
+ attrs
11
+ }) {
12
+ return () => h(InternalUButtonV3, Object.assign(Object.assign({}, props), attrs), slots);
13
+ }
14
+ });
15
+ export const XButtonV3 = ButtonV3;
16
+ export { buttonV3Props };
17
+ export default ButtonV3;