@uzum-tech/ui 2.3.8 → 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 +631 -35
  2. package/dist/index.mjs +627 -36
  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 +4 -0
  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 +15 -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
@@ -52,6 +52,18 @@ declare const _default: import("vue").DefineComponent<{}, {
52
52
  brandQuinary300: string;
53
53
  brandQuinary600: string;
54
54
  brandQuinary100: string;
55
+ accentBrand: string;
56
+ accentBrandHover: string;
57
+ accentError: string;
58
+ accentErrorHover: string;
59
+ accentErrorSubtle: string;
60
+ accentNeutral: string;
61
+ accentNeutralHover: string;
62
+ accentFocusRing: string;
63
+ accentBorder: string;
64
+ accentDisabled: string;
65
+ accentDisabledContent: string;
66
+ accentPressedOverlay: string;
55
67
  surfacePrimary: string;
56
68
  surfaceSecondary: string;
57
69
  containerPrimary: string;
@@ -1,4 +1,5 @@
1
1
  import { accountOptionDark } from "../_internal/account-option/styles/index.mjs";
2
+ import { buttonV3Dark } from "../_internal/button-v3/styles/index.mjs";
2
3
  import safeTopScrollbarDark from "../_internal/safe-top-scrollbar/styles/dark.mjs";
3
4
  import { scrollbarDark } from "../_internal/scrollbar/styles/index.mjs";
4
5
  import { commonDark } from "../_styles/common/index.mjs";
@@ -119,6 +120,7 @@ export const darkTheme = {
119
120
  Breadcrumb: breadcrumbDark,
120
121
  Button: buttonDark,
121
122
  ButtonGroup: buttonGroupDark,
123
+ ButtonV3: buttonV3Dark,
122
124
  Calendar: calendarDark,
123
125
  Card: cardDark,
124
126
  CardList: cardListDark,
@@ -1,4 +1,5 @@
1
1
  import { accountOptionLight } from "../_internal/account-option/styles/index.mjs";
2
+ import { buttonV3Light } from "../_internal/button-v3/styles/index.mjs";
2
3
  import safeTopScrollbarLight from "../_internal/safe-top-scrollbar/styles/light.mjs";
3
4
  import { scrollbarLight } from "../_internal/scrollbar/styles/index.mjs";
4
5
  // The file is for internal usage, do not export it, since all the components
@@ -121,6 +122,7 @@ export const lightTheme = {
121
122
  Breadcrumb: breadcrumbLight,
122
123
  Button: buttonLight,
123
124
  ButtonGroup: buttonGroupLight,
125
+ ButtonV3: buttonV3Light,
124
126
  Calendar: calendarLight,
125
127
  Card: cardLight,
126
128
  CardList: cardListLight,
package/es/version.d.ts CHANGED
@@ -1,2 +1,2 @@
1
- declare const _default: "2.3.8";
1
+ declare const _default: "3.0.0-alpha.0";
2
2
  export default _default;
package/es/version.mjs CHANGED
@@ -1 +1 @@
1
- export default '2.3.8';
1
+ export default '3.0.0-alpha.0';
@@ -0,0 +1,5 @@
1
+ export { default as InternalUButtonV3 } from './src/ButtonV3';
2
+ export { buttonV3Props } from './src/interface';
3
+ export type * from './src/interface';
4
+ export { buttonV3Dark, buttonV3Light } from './styles';
5
+ export type { ButtonV3Theme, ButtonV3ThemeVars } from './styles';
@@ -0,0 +1,13 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.buttonV3Light = exports.buttonV3Dark = exports.buttonV3Props = exports.InternalUButtonV3 = void 0;
7
+ var ButtonV3_1 = require("./src/ButtonV3");
8
+ Object.defineProperty(exports, "InternalUButtonV3", { enumerable: true, get: function () { return __importDefault(ButtonV3_1).default; } });
9
+ var interface_1 = require("./src/interface");
10
+ Object.defineProperty(exports, "buttonV3Props", { enumerable: true, get: function () { return interface_1.buttonV3Props; } });
11
+ var styles_1 = require("./styles");
12
+ Object.defineProperty(exports, "buttonV3Dark", { enumerable: true, get: function () { return styles_1.buttonV3Dark; } });
13
+ Object.defineProperty(exports, "buttonV3Light", { enumerable: true, get: function () { return styles_1.buttonV3Light; } });
@@ -0,0 +1,533 @@
1
+ import type { SlotsType } from 'vue';
2
+ import type { ButtonV3MergedProps, ButtonV3Slots } from './interface';
3
+ declare const ButtonV3: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
4
+ readonly type: {
5
+ readonly type: import("vue").PropType<import("./interface").ButtonV3Type>;
6
+ readonly default: "primary";
7
+ };
8
+ readonly tone: {
9
+ readonly type: import("vue").PropType<import("./interface").ButtonV3Tone>;
10
+ readonly default: "default";
11
+ };
12
+ readonly size: import("vue").PropType<import("./interface").ButtonV3Size>;
13
+ readonly iconOnly: BooleanConstructor;
14
+ readonly block: BooleanConstructor;
15
+ readonly disabled: BooleanConstructor;
16
+ readonly loading: BooleanConstructor;
17
+ readonly focusable: {
18
+ readonly type: BooleanConstructor;
19
+ readonly default: true;
20
+ };
21
+ readonly tag: {
22
+ readonly type: import("vue").PropType<import("./interface").ButtonV3Tag>;
23
+ readonly default: "button";
24
+ };
25
+ readonly attrType: {
26
+ readonly type: import("vue").PropType<import("./interface").ButtonV3AttrType>;
27
+ readonly default: "button";
28
+ };
29
+ readonly onClick: import("vue").PropType<import("./interface").ButtonV3ClickHandler>;
30
+ readonly theme: import("vue").PropType<import("../../../_mixins").Theme<"ButtonV3", {
31
+ fontFamily: string;
32
+ fontSize: string;
33
+ lineHeight: string;
34
+ fontWeight: string;
35
+ letterSpacing: string;
36
+ pressedOverlayColor: string;
37
+ focusRingColor: string;
38
+ textColorDisabled: string;
39
+ colorPrimary: string;
40
+ colorPrimaryHover: string;
41
+ textColorPrimary: string;
42
+ textColorPrimaryHover: string;
43
+ borderColorPrimary: string;
44
+ colorPrimaryDisabled: string;
45
+ borderColorPrimaryDisabled: string;
46
+ colorPrimaryNegative: string;
47
+ colorPrimaryNegativeHover: string;
48
+ textColorPrimaryNegative: string;
49
+ textColorPrimaryNegativeHover: string;
50
+ borderColorPrimaryNegative: string;
51
+ colorPrimaryNegativeDisabled: string;
52
+ borderColorPrimaryNegativeDisabled: string;
53
+ colorSecondary: string;
54
+ colorSecondaryHover: string;
55
+ textColorSecondary: string;
56
+ textColorSecondaryHover: string;
57
+ borderColorSecondary: string;
58
+ colorSecondaryDisabled: string;
59
+ borderColorSecondaryDisabled: string;
60
+ colorTertiary: string;
61
+ colorTertiaryHover: string;
62
+ textColorTertiary: string;
63
+ textColorTertiaryHover: string;
64
+ borderColorTertiary: string;
65
+ colorTertiaryDisabled: string;
66
+ borderColorTertiaryDisabled: string;
67
+ colorTertiaryNegative: string;
68
+ colorTertiaryNegativeHover: string;
69
+ textColorTertiaryNegative: string;
70
+ textColorTertiaryNegativeHover: string;
71
+ borderColorTertiaryNegative: string;
72
+ colorTertiaryNegativeDisabled: string;
73
+ borderColorTertiaryNegativeDisabled: string;
74
+ colorGhost: string;
75
+ colorGhostHover: string;
76
+ textColorGhost: string;
77
+ textColorGhostHover: string;
78
+ borderColorGhost: string;
79
+ colorGhostDisabled: string;
80
+ borderColorGhostDisabled: string;
81
+ colorGhostNegative: string;
82
+ colorGhostNegativeHover: string;
83
+ textColorGhostNegative: string;
84
+ textColorGhostNegativeHover: string;
85
+ borderColorGhostNegative: string;
86
+ colorGhostNegativeDisabled: string;
87
+ borderColorGhostNegativeDisabled: string;
88
+ heightSmall: string;
89
+ heightMedium: string;
90
+ heightLarge: string;
91
+ paddingSmall: string;
92
+ paddingMedium: string;
93
+ paddingLarge: string;
94
+ borderRadiusSmall: string;
95
+ borderRadiusMedium: string;
96
+ borderRadiusLarge: string;
97
+ iconSizeSmall: string;
98
+ iconSizeMedium: string;
99
+ iconSizeLarge: string;
100
+ iconMargin: string;
101
+ borderWidth: string;
102
+ focusRingWidth: string;
103
+ spinnerStrokeWidth: string;
104
+ }, any>>;
105
+ readonly themeOverrides: import("vue").PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"ButtonV3", {
106
+ fontFamily: string;
107
+ fontSize: string;
108
+ lineHeight: string;
109
+ fontWeight: string;
110
+ letterSpacing: string;
111
+ pressedOverlayColor: string;
112
+ focusRingColor: string;
113
+ textColorDisabled: string;
114
+ colorPrimary: string;
115
+ colorPrimaryHover: string;
116
+ textColorPrimary: string;
117
+ textColorPrimaryHover: string;
118
+ borderColorPrimary: string;
119
+ colorPrimaryDisabled: string;
120
+ borderColorPrimaryDisabled: string;
121
+ colorPrimaryNegative: string;
122
+ colorPrimaryNegativeHover: string;
123
+ textColorPrimaryNegative: string;
124
+ textColorPrimaryNegativeHover: string;
125
+ borderColorPrimaryNegative: string;
126
+ colorPrimaryNegativeDisabled: string;
127
+ borderColorPrimaryNegativeDisabled: string;
128
+ colorSecondary: string;
129
+ colorSecondaryHover: string;
130
+ textColorSecondary: string;
131
+ textColorSecondaryHover: string;
132
+ borderColorSecondary: string;
133
+ colorSecondaryDisabled: string;
134
+ borderColorSecondaryDisabled: string;
135
+ colorTertiary: string;
136
+ colorTertiaryHover: string;
137
+ textColorTertiary: string;
138
+ textColorTertiaryHover: string;
139
+ borderColorTertiary: string;
140
+ colorTertiaryDisabled: string;
141
+ borderColorTertiaryDisabled: string;
142
+ colorTertiaryNegative: string;
143
+ colorTertiaryNegativeHover: string;
144
+ textColorTertiaryNegative: string;
145
+ textColorTertiaryNegativeHover: string;
146
+ borderColorTertiaryNegative: string;
147
+ colorTertiaryNegativeDisabled: string;
148
+ borderColorTertiaryNegativeDisabled: string;
149
+ colorGhost: string;
150
+ colorGhostHover: string;
151
+ textColorGhost: string;
152
+ textColorGhostHover: string;
153
+ borderColorGhost: string;
154
+ colorGhostDisabled: string;
155
+ borderColorGhostDisabled: string;
156
+ colorGhostNegative: string;
157
+ colorGhostNegativeHover: string;
158
+ textColorGhostNegative: string;
159
+ textColorGhostNegativeHover: string;
160
+ borderColorGhostNegative: string;
161
+ colorGhostNegativeDisabled: string;
162
+ borderColorGhostNegativeDisabled: string;
163
+ heightSmall: string;
164
+ heightMedium: string;
165
+ heightLarge: string;
166
+ paddingSmall: string;
167
+ paddingMedium: string;
168
+ paddingLarge: string;
169
+ borderRadiusSmall: string;
170
+ borderRadiusMedium: string;
171
+ borderRadiusLarge: string;
172
+ iconSizeSmall: string;
173
+ iconSizeMedium: string;
174
+ iconSizeLarge: string;
175
+ iconMargin: string;
176
+ borderWidth: string;
177
+ focusRingWidth: string;
178
+ spinnerStrokeWidth: string;
179
+ }, any>>>;
180
+ readonly builtinThemeOverrides: import("vue").PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"ButtonV3", {
181
+ fontFamily: string;
182
+ fontSize: string;
183
+ lineHeight: string;
184
+ fontWeight: string;
185
+ letterSpacing: string;
186
+ pressedOverlayColor: string;
187
+ focusRingColor: string;
188
+ textColorDisabled: string;
189
+ colorPrimary: string;
190
+ colorPrimaryHover: string;
191
+ textColorPrimary: string;
192
+ textColorPrimaryHover: string;
193
+ borderColorPrimary: string;
194
+ colorPrimaryDisabled: string;
195
+ borderColorPrimaryDisabled: string;
196
+ colorPrimaryNegative: string;
197
+ colorPrimaryNegativeHover: string;
198
+ textColorPrimaryNegative: string;
199
+ textColorPrimaryNegativeHover: string;
200
+ borderColorPrimaryNegative: string;
201
+ colorPrimaryNegativeDisabled: string;
202
+ borderColorPrimaryNegativeDisabled: string;
203
+ colorSecondary: string;
204
+ colorSecondaryHover: string;
205
+ textColorSecondary: string;
206
+ textColorSecondaryHover: string;
207
+ borderColorSecondary: string;
208
+ colorSecondaryDisabled: string;
209
+ borderColorSecondaryDisabled: string;
210
+ colorTertiary: string;
211
+ colorTertiaryHover: string;
212
+ textColorTertiary: string;
213
+ textColorTertiaryHover: string;
214
+ borderColorTertiary: string;
215
+ colorTertiaryDisabled: string;
216
+ borderColorTertiaryDisabled: string;
217
+ colorTertiaryNegative: string;
218
+ colorTertiaryNegativeHover: string;
219
+ textColorTertiaryNegative: string;
220
+ textColorTertiaryNegativeHover: string;
221
+ borderColorTertiaryNegative: string;
222
+ colorTertiaryNegativeDisabled: string;
223
+ borderColorTertiaryNegativeDisabled: string;
224
+ colorGhost: string;
225
+ colorGhostHover: string;
226
+ textColorGhost: string;
227
+ textColorGhostHover: string;
228
+ borderColorGhost: string;
229
+ colorGhostDisabled: string;
230
+ borderColorGhostDisabled: string;
231
+ colorGhostNegative: string;
232
+ colorGhostNegativeHover: string;
233
+ textColorGhostNegative: string;
234
+ textColorGhostNegativeHover: string;
235
+ borderColorGhostNegative: string;
236
+ colorGhostNegativeDisabled: string;
237
+ borderColorGhostNegativeDisabled: string;
238
+ heightSmall: string;
239
+ heightMedium: string;
240
+ heightLarge: string;
241
+ paddingSmall: string;
242
+ paddingMedium: string;
243
+ paddingLarge: string;
244
+ borderRadiusSmall: string;
245
+ borderRadiusMedium: string;
246
+ borderRadiusLarge: string;
247
+ iconSizeSmall: string;
248
+ iconSizeMedium: string;
249
+ iconSizeLarge: string;
250
+ iconMargin: string;
251
+ borderWidth: string;
252
+ focusRingWidth: string;
253
+ spinnerStrokeWidth: string;
254
+ }, any>>>;
255
+ }>, {
256
+ selfElRef: import("vue").Ref<HTMLElement | null, HTMLElement | null>;
257
+ mergedClsPrefix: import("vue").Ref<string, string>;
258
+ mergedSize: import("vue").ComputedRef<"small" | "medium" | "large">;
259
+ mergedDisabled: import("vue").ComputedRef<boolean>;
260
+ mergedFocusable: import("vue").ComputedRef<boolean>;
261
+ inert: import("vue").ComputedRef<boolean>;
262
+ spinnerStrokeWidth: import("vue").ComputedRef<number>;
263
+ handleClick: (e: MouseEvent) => void;
264
+ cssVars: import("vue").ComputedRef<Record<string, string>> | undefined;
265
+ themeClass: import("vue").Ref<string, string> | undefined;
266
+ onRender: (() => void) | undefined;
267
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
268
+ readonly type: {
269
+ readonly type: import("vue").PropType<import("./interface").ButtonV3Type>;
270
+ readonly default: "primary";
271
+ };
272
+ readonly tone: {
273
+ readonly type: import("vue").PropType<import("./interface").ButtonV3Tone>;
274
+ readonly default: "default";
275
+ };
276
+ readonly size: import("vue").PropType<import("./interface").ButtonV3Size>;
277
+ readonly iconOnly: BooleanConstructor;
278
+ readonly block: BooleanConstructor;
279
+ readonly disabled: BooleanConstructor;
280
+ readonly loading: BooleanConstructor;
281
+ readonly focusable: {
282
+ readonly type: BooleanConstructor;
283
+ readonly default: true;
284
+ };
285
+ readonly tag: {
286
+ readonly type: import("vue").PropType<import("./interface").ButtonV3Tag>;
287
+ readonly default: "button";
288
+ };
289
+ readonly attrType: {
290
+ readonly type: import("vue").PropType<import("./interface").ButtonV3AttrType>;
291
+ readonly default: "button";
292
+ };
293
+ readonly onClick: import("vue").PropType<import("./interface").ButtonV3ClickHandler>;
294
+ readonly theme: import("vue").PropType<import("../../../_mixins").Theme<"ButtonV3", {
295
+ fontFamily: string;
296
+ fontSize: string;
297
+ lineHeight: string;
298
+ fontWeight: string;
299
+ letterSpacing: string;
300
+ pressedOverlayColor: string;
301
+ focusRingColor: string;
302
+ textColorDisabled: string;
303
+ colorPrimary: string;
304
+ colorPrimaryHover: string;
305
+ textColorPrimary: string;
306
+ textColorPrimaryHover: string;
307
+ borderColorPrimary: string;
308
+ colorPrimaryDisabled: string;
309
+ borderColorPrimaryDisabled: string;
310
+ colorPrimaryNegative: string;
311
+ colorPrimaryNegativeHover: string;
312
+ textColorPrimaryNegative: string;
313
+ textColorPrimaryNegativeHover: string;
314
+ borderColorPrimaryNegative: string;
315
+ colorPrimaryNegativeDisabled: string;
316
+ borderColorPrimaryNegativeDisabled: string;
317
+ colorSecondary: string;
318
+ colorSecondaryHover: string;
319
+ textColorSecondary: string;
320
+ textColorSecondaryHover: string;
321
+ borderColorSecondary: string;
322
+ colorSecondaryDisabled: string;
323
+ borderColorSecondaryDisabled: string;
324
+ colorTertiary: string;
325
+ colorTertiaryHover: string;
326
+ textColorTertiary: string;
327
+ textColorTertiaryHover: string;
328
+ borderColorTertiary: string;
329
+ colorTertiaryDisabled: string;
330
+ borderColorTertiaryDisabled: string;
331
+ colorTertiaryNegative: string;
332
+ colorTertiaryNegativeHover: string;
333
+ textColorTertiaryNegative: string;
334
+ textColorTertiaryNegativeHover: string;
335
+ borderColorTertiaryNegative: string;
336
+ colorTertiaryNegativeDisabled: string;
337
+ borderColorTertiaryNegativeDisabled: string;
338
+ colorGhost: string;
339
+ colorGhostHover: string;
340
+ textColorGhost: string;
341
+ textColorGhostHover: string;
342
+ borderColorGhost: string;
343
+ colorGhostDisabled: string;
344
+ borderColorGhostDisabled: string;
345
+ colorGhostNegative: string;
346
+ colorGhostNegativeHover: string;
347
+ textColorGhostNegative: string;
348
+ textColorGhostNegativeHover: string;
349
+ borderColorGhostNegative: string;
350
+ colorGhostNegativeDisabled: string;
351
+ borderColorGhostNegativeDisabled: string;
352
+ heightSmall: string;
353
+ heightMedium: string;
354
+ heightLarge: string;
355
+ paddingSmall: string;
356
+ paddingMedium: string;
357
+ paddingLarge: string;
358
+ borderRadiusSmall: string;
359
+ borderRadiusMedium: string;
360
+ borderRadiusLarge: string;
361
+ iconSizeSmall: string;
362
+ iconSizeMedium: string;
363
+ iconSizeLarge: string;
364
+ iconMargin: string;
365
+ borderWidth: string;
366
+ focusRingWidth: string;
367
+ spinnerStrokeWidth: string;
368
+ }, any>>;
369
+ readonly themeOverrides: import("vue").PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"ButtonV3", {
370
+ fontFamily: string;
371
+ fontSize: string;
372
+ lineHeight: string;
373
+ fontWeight: string;
374
+ letterSpacing: string;
375
+ pressedOverlayColor: string;
376
+ focusRingColor: string;
377
+ textColorDisabled: string;
378
+ colorPrimary: string;
379
+ colorPrimaryHover: string;
380
+ textColorPrimary: string;
381
+ textColorPrimaryHover: string;
382
+ borderColorPrimary: string;
383
+ colorPrimaryDisabled: string;
384
+ borderColorPrimaryDisabled: string;
385
+ colorPrimaryNegative: string;
386
+ colorPrimaryNegativeHover: string;
387
+ textColorPrimaryNegative: string;
388
+ textColorPrimaryNegativeHover: string;
389
+ borderColorPrimaryNegative: string;
390
+ colorPrimaryNegativeDisabled: string;
391
+ borderColorPrimaryNegativeDisabled: string;
392
+ colorSecondary: string;
393
+ colorSecondaryHover: string;
394
+ textColorSecondary: string;
395
+ textColorSecondaryHover: string;
396
+ borderColorSecondary: string;
397
+ colorSecondaryDisabled: string;
398
+ borderColorSecondaryDisabled: string;
399
+ colorTertiary: string;
400
+ colorTertiaryHover: string;
401
+ textColorTertiary: string;
402
+ textColorTertiaryHover: string;
403
+ borderColorTertiary: string;
404
+ colorTertiaryDisabled: string;
405
+ borderColorTertiaryDisabled: string;
406
+ colorTertiaryNegative: string;
407
+ colorTertiaryNegativeHover: string;
408
+ textColorTertiaryNegative: string;
409
+ textColorTertiaryNegativeHover: string;
410
+ borderColorTertiaryNegative: string;
411
+ colorTertiaryNegativeDisabled: string;
412
+ borderColorTertiaryNegativeDisabled: string;
413
+ colorGhost: string;
414
+ colorGhostHover: string;
415
+ textColorGhost: string;
416
+ textColorGhostHover: string;
417
+ borderColorGhost: string;
418
+ colorGhostDisabled: string;
419
+ borderColorGhostDisabled: string;
420
+ colorGhostNegative: string;
421
+ colorGhostNegativeHover: string;
422
+ textColorGhostNegative: string;
423
+ textColorGhostNegativeHover: string;
424
+ borderColorGhostNegative: string;
425
+ colorGhostNegativeDisabled: string;
426
+ borderColorGhostNegativeDisabled: string;
427
+ heightSmall: string;
428
+ heightMedium: string;
429
+ heightLarge: string;
430
+ paddingSmall: string;
431
+ paddingMedium: string;
432
+ paddingLarge: string;
433
+ borderRadiusSmall: string;
434
+ borderRadiusMedium: string;
435
+ borderRadiusLarge: string;
436
+ iconSizeSmall: string;
437
+ iconSizeMedium: string;
438
+ iconSizeLarge: string;
439
+ iconMargin: string;
440
+ borderWidth: string;
441
+ focusRingWidth: string;
442
+ spinnerStrokeWidth: string;
443
+ }, any>>>;
444
+ readonly builtinThemeOverrides: import("vue").PropType<import("../../../_mixins/use-theme").ExtractThemeOverrides<import("../../../_mixins").Theme<"ButtonV3", {
445
+ fontFamily: string;
446
+ fontSize: string;
447
+ lineHeight: string;
448
+ fontWeight: string;
449
+ letterSpacing: string;
450
+ pressedOverlayColor: string;
451
+ focusRingColor: string;
452
+ textColorDisabled: string;
453
+ colorPrimary: string;
454
+ colorPrimaryHover: string;
455
+ textColorPrimary: string;
456
+ textColorPrimaryHover: string;
457
+ borderColorPrimary: string;
458
+ colorPrimaryDisabled: string;
459
+ borderColorPrimaryDisabled: string;
460
+ colorPrimaryNegative: string;
461
+ colorPrimaryNegativeHover: string;
462
+ textColorPrimaryNegative: string;
463
+ textColorPrimaryNegativeHover: string;
464
+ borderColorPrimaryNegative: string;
465
+ colorPrimaryNegativeDisabled: string;
466
+ borderColorPrimaryNegativeDisabled: string;
467
+ colorSecondary: string;
468
+ colorSecondaryHover: string;
469
+ textColorSecondary: string;
470
+ textColorSecondaryHover: string;
471
+ borderColorSecondary: string;
472
+ colorSecondaryDisabled: string;
473
+ borderColorSecondaryDisabled: string;
474
+ colorTertiary: string;
475
+ colorTertiaryHover: string;
476
+ textColorTertiary: string;
477
+ textColorTertiaryHover: string;
478
+ borderColorTertiary: string;
479
+ colorTertiaryDisabled: string;
480
+ borderColorTertiaryDisabled: string;
481
+ colorTertiaryNegative: string;
482
+ colorTertiaryNegativeHover: string;
483
+ textColorTertiaryNegative: string;
484
+ textColorTertiaryNegativeHover: string;
485
+ borderColorTertiaryNegative: string;
486
+ colorTertiaryNegativeDisabled: string;
487
+ borderColorTertiaryNegativeDisabled: string;
488
+ colorGhost: string;
489
+ colorGhostHover: string;
490
+ textColorGhost: string;
491
+ textColorGhostHover: string;
492
+ borderColorGhost: string;
493
+ colorGhostDisabled: string;
494
+ borderColorGhostDisabled: string;
495
+ colorGhostNegative: string;
496
+ colorGhostNegativeHover: string;
497
+ textColorGhostNegative: string;
498
+ textColorGhostNegativeHover: string;
499
+ borderColorGhostNegative: string;
500
+ colorGhostNegativeDisabled: string;
501
+ borderColorGhostNegativeDisabled: string;
502
+ heightSmall: string;
503
+ heightMedium: string;
504
+ heightLarge: string;
505
+ paddingSmall: string;
506
+ paddingMedium: string;
507
+ paddingLarge: string;
508
+ borderRadiusSmall: string;
509
+ borderRadiusMedium: string;
510
+ borderRadiusLarge: string;
511
+ iconSizeSmall: string;
512
+ iconSizeMedium: string;
513
+ iconSizeLarge: string;
514
+ iconMargin: string;
515
+ borderWidth: string;
516
+ focusRingWidth: string;
517
+ spinnerStrokeWidth: string;
518
+ }, any>>>;
519
+ }>> & Readonly<{}>, {
520
+ readonly loading: boolean;
521
+ readonly tag: keyof HTMLElementTagNameMap;
522
+ readonly type: import("./interface").ButtonV3Type;
523
+ readonly block: boolean;
524
+ readonly disabled: boolean;
525
+ readonly focusable: boolean;
526
+ readonly attrType: import("./interface").ButtonV3AttrType;
527
+ readonly tone: import("./interface").ButtonV3Tone;
528
+ readonly iconOnly: boolean;
529
+ }, SlotsType<ButtonV3Slots>, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
530
+ export default ButtonV3;
531
+ export declare const XButtonV3: new () => {
532
+ $props: ButtonV3MergedProps;
533
+ };