base6-ui 2.0.13 → 2.0.14

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 (32) hide show
  1. package/dist/components/button/button.d.ts +1352 -0
  2. package/dist/components/button/index.d.ts +2 -1
  3. package/dist/components/button/interface.d.ts +678 -0
  4. package/dist/components/data-table/data-table.d.ts +1 -1
  5. package/dist/components/tabs/tabs.d.ts +1 -1
  6. package/dist/index.umd.js +1 -1
  7. package/es/components/button/button.d.ts +1352 -0
  8. package/es/components/button/button.mjs +28 -0
  9. package/es/components/button/index.d.ts +2 -1
  10. package/es/components/button/interface.d.ts +678 -0
  11. package/es/components/button/interface.mjs +22 -0
  12. package/es/components/data-table/data-table.d.ts +1 -1
  13. package/es/components/dialog/index.vue.mjs +7 -6
  14. package/es/components/tabs/tabs.d.ts +1 -1
  15. package/es/index.mjs +92 -90
  16. package/lib/components/button/button.d.ts +1352 -0
  17. package/lib/components/button/button.js +1 -0
  18. package/lib/components/button/index.d.ts +2 -1
  19. package/lib/components/button/interface.d.ts +678 -0
  20. package/lib/components/button/interface.js +1 -0
  21. package/lib/components/data-table/data-table.d.ts +1 -1
  22. package/lib/components/dialog/index.vue.js +1 -1
  23. package/lib/components/tabs/tabs.d.ts +1 -1
  24. package/lib/index.js +1 -1
  25. package/package.json +1 -1
  26. package/dist/components/button/index.vue.d.ts +0 -24
  27. package/es/components/button/index.vue.d.ts +0 -24
  28. package/es/components/button/index.vue.mjs +0 -36
  29. package/es/components/button/index.vue2.mjs +0 -4
  30. package/lib/components/button/index.vue.d.ts +0 -24
  31. package/lib/components/button/index.vue.js +0 -1
  32. package/lib/components/button/index.vue2.js +0 -1
@@ -0,0 +1,28 @@
1
+ import { defineComponent as s, createVNode as n, mergeProps as c } from "vue";
2
+ import { NButton as i } from "naive-ui";
3
+ import { SvgIcon as u } from "../../node_modules/.pnpm/lib-materials@0.0.8_typescript@5.7.2/node_modules/lib-materials/dist/lib-materials.mjs";
4
+ import { bodenButtonProps as p } from "./interface.mjs";
5
+ const d = "BodenButton", B = /* @__PURE__ */ s({
6
+ name: d,
7
+ props: p,
8
+ slots: Object,
9
+ setup() {
10
+ },
11
+ render() {
12
+ const {
13
+ $props: t,
14
+ $attrs: e,
15
+ $slots: o
16
+ } = this, r = {
17
+ ...o,
18
+ default: () => o.default ? o.default() : t.content,
19
+ icon: () => o.icon ? o.icon() : t.icon ? n(u, {
20
+ icon: t.icon
21
+ }, null) : void 0
22
+ };
23
+ return n(i, c(e, t), r);
24
+ }
25
+ });
26
+ export {
27
+ B as default
28
+ };
@@ -1 +1,2 @@
1
- export { default as BodenButton } from './index.vue';
1
+ export { default as BodenButton } from './button';
2
+ export { type BodenButtonProps, type BodenButtonSlots, bodenButtonProps } from './interface';
@@ -0,0 +1,678 @@
1
+ import { ExtractPublicPropTypes } from 'vue';
2
+ import { ButtonSlots } from 'naive-ui';
3
+ export declare const bodenButtonProps: {
4
+ /**
5
+ * 覆盖 NaiveUI focusable
6
+ */
7
+ readonly focusable: {
8
+ readonly type: BooleanConstructor;
9
+ readonly default: false;
10
+ };
11
+ /**
12
+ * 按钮文本
13
+ */
14
+ readonly content: StringConstructor;
15
+ /**
16
+ * svg-icon
17
+ */
18
+ readonly icon: StringConstructor;
19
+ readonly color: StringConstructor;
20
+ readonly textColor: StringConstructor;
21
+ readonly text: BooleanConstructor;
22
+ readonly block: BooleanConstructor;
23
+ readonly loading: BooleanConstructor;
24
+ readonly disabled: BooleanConstructor;
25
+ readonly circle: BooleanConstructor;
26
+ readonly size: import('vue').PropType<import('naive-ui/es/button/src/interface').Size>;
27
+ readonly ghost: BooleanConstructor;
28
+ readonly round: BooleanConstructor;
29
+ readonly secondary: BooleanConstructor;
30
+ readonly tertiary: BooleanConstructor;
31
+ readonly quaternary: BooleanConstructor;
32
+ readonly strong: BooleanConstructor;
33
+ readonly keyboard: {
34
+ readonly type: BooleanConstructor;
35
+ readonly default: true;
36
+ };
37
+ readonly tag: {
38
+ readonly type: import('vue').PropType<keyof HTMLElementTagNameMap>;
39
+ readonly default: "button";
40
+ };
41
+ readonly type: {
42
+ readonly type: import('vue').PropType<import('naive-ui/es/button/src/interface').Type>;
43
+ readonly default: "default";
44
+ };
45
+ readonly dashed: BooleanConstructor;
46
+ readonly renderIcon: import('vue').PropType<() => import('vue').VNodeChild>;
47
+ readonly iconPlacement: {
48
+ readonly type: import('vue').PropType<"left" | "right">;
49
+ readonly default: "left";
50
+ };
51
+ readonly attrType: {
52
+ readonly type: import('vue').PropType<"button" | "submit" | "reset">;
53
+ readonly default: "button";
54
+ };
55
+ readonly bordered: {
56
+ readonly type: BooleanConstructor;
57
+ readonly default: true;
58
+ };
59
+ readonly onClick: import('vue').PropType<import('naive-ui/es/_utils').MaybeArray<(e: MouseEvent) => void>>;
60
+ readonly nativeFocusBehavior: {
61
+ readonly type: BooleanConstructor;
62
+ readonly default: boolean;
63
+ };
64
+ readonly theme: import('vue').PropType<import('naive-ui/es/_mixins').Theme<"Button", {
65
+ heightTiny: string;
66
+ heightSmall: string;
67
+ heightMedium: string;
68
+ heightLarge: string;
69
+ borderRadiusTiny: string;
70
+ borderRadiusSmall: string;
71
+ borderRadiusMedium: string;
72
+ borderRadiusLarge: string;
73
+ fontSizeTiny: string;
74
+ fontSizeSmall: string;
75
+ fontSizeMedium: string;
76
+ fontSizeLarge: string;
77
+ opacityDisabled: string;
78
+ colorOpacitySecondary: string;
79
+ colorOpacitySecondaryHover: string;
80
+ colorOpacitySecondaryPressed: string;
81
+ colorSecondary: string;
82
+ colorSecondaryHover: string;
83
+ colorSecondaryPressed: string;
84
+ colorTertiary: string;
85
+ colorTertiaryHover: string;
86
+ colorTertiaryPressed: string;
87
+ colorQuaternary: string;
88
+ colorQuaternaryHover: string;
89
+ colorQuaternaryPressed: string;
90
+ color: string;
91
+ colorHover: string;
92
+ colorPressed: string;
93
+ colorFocus: string;
94
+ colorDisabled: string;
95
+ textColor: string;
96
+ textColorTertiary: string;
97
+ textColorHover: string;
98
+ textColorPressed: string;
99
+ textColorFocus: string;
100
+ textColorDisabled: string;
101
+ textColorText: string;
102
+ textColorTextHover: string;
103
+ textColorTextPressed: string;
104
+ textColorTextFocus: string;
105
+ textColorTextDisabled: string;
106
+ textColorGhost: string;
107
+ textColorGhostHover: string;
108
+ textColorGhostPressed: string;
109
+ textColorGhostFocus: string;
110
+ textColorGhostDisabled: string;
111
+ border: string;
112
+ borderHover: string;
113
+ borderPressed: string;
114
+ borderFocus: string;
115
+ borderDisabled: string;
116
+ rippleColor: string;
117
+ colorPrimary: string;
118
+ colorHoverPrimary: string;
119
+ colorPressedPrimary: string;
120
+ colorFocusPrimary: string;
121
+ colorDisabledPrimary: string;
122
+ textColorPrimary: string;
123
+ textColorHoverPrimary: string;
124
+ textColorPressedPrimary: string;
125
+ textColorFocusPrimary: string;
126
+ textColorDisabledPrimary: string;
127
+ textColorTextPrimary: string;
128
+ textColorTextHoverPrimary: string;
129
+ textColorTextPressedPrimary: string;
130
+ textColorTextFocusPrimary: string;
131
+ textColorTextDisabledPrimary: string;
132
+ textColorGhostPrimary: string;
133
+ textColorGhostHoverPrimary: string;
134
+ textColorGhostPressedPrimary: string;
135
+ textColorGhostFocusPrimary: string;
136
+ textColorGhostDisabledPrimary: string;
137
+ borderPrimary: string;
138
+ borderHoverPrimary: string;
139
+ borderPressedPrimary: string;
140
+ borderFocusPrimary: string;
141
+ borderDisabledPrimary: string;
142
+ rippleColorPrimary: string;
143
+ colorInfo: string;
144
+ colorHoverInfo: string;
145
+ colorPressedInfo: string;
146
+ colorFocusInfo: string;
147
+ colorDisabledInfo: string;
148
+ textColorInfo: string;
149
+ textColorHoverInfo: string;
150
+ textColorPressedInfo: string;
151
+ textColorFocusInfo: string;
152
+ textColorDisabledInfo: string;
153
+ textColorTextInfo: string;
154
+ textColorTextHoverInfo: string;
155
+ textColorTextPressedInfo: string;
156
+ textColorTextFocusInfo: string;
157
+ textColorTextDisabledInfo: string;
158
+ textColorGhostInfo: string;
159
+ textColorGhostHoverInfo: string;
160
+ textColorGhostPressedInfo: string;
161
+ textColorGhostFocusInfo: string;
162
+ textColorGhostDisabledInfo: string;
163
+ borderInfo: string;
164
+ borderHoverInfo: string;
165
+ borderPressedInfo: string;
166
+ borderFocusInfo: string;
167
+ borderDisabledInfo: string;
168
+ rippleColorInfo: string;
169
+ colorSuccess: string;
170
+ colorHoverSuccess: string;
171
+ colorPressedSuccess: string;
172
+ colorFocusSuccess: string;
173
+ colorDisabledSuccess: string;
174
+ textColorSuccess: string;
175
+ textColorHoverSuccess: string;
176
+ textColorPressedSuccess: string;
177
+ textColorFocusSuccess: string;
178
+ textColorDisabledSuccess: string;
179
+ textColorTextSuccess: string;
180
+ textColorTextHoverSuccess: string;
181
+ textColorTextPressedSuccess: string;
182
+ textColorTextFocusSuccess: string;
183
+ textColorTextDisabledSuccess: string;
184
+ textColorGhostSuccess: string;
185
+ textColorGhostHoverSuccess: string;
186
+ textColorGhostPressedSuccess: string;
187
+ textColorGhostFocusSuccess: string;
188
+ textColorGhostDisabledSuccess: string;
189
+ borderSuccess: string;
190
+ borderHoverSuccess: string;
191
+ borderPressedSuccess: string;
192
+ borderFocusSuccess: string;
193
+ borderDisabledSuccess: string;
194
+ rippleColorSuccess: string;
195
+ colorWarning: string;
196
+ colorHoverWarning: string;
197
+ colorPressedWarning: string;
198
+ colorFocusWarning: string;
199
+ colorDisabledWarning: string;
200
+ textColorWarning: string;
201
+ textColorHoverWarning: string;
202
+ textColorPressedWarning: string;
203
+ textColorFocusWarning: string;
204
+ textColorDisabledWarning: string;
205
+ textColorTextWarning: string;
206
+ textColorTextHoverWarning: string;
207
+ textColorTextPressedWarning: string;
208
+ textColorTextFocusWarning: string;
209
+ textColorTextDisabledWarning: string;
210
+ textColorGhostWarning: string;
211
+ textColorGhostHoverWarning: string;
212
+ textColorGhostPressedWarning: string;
213
+ textColorGhostFocusWarning: string;
214
+ textColorGhostDisabledWarning: string;
215
+ borderWarning: string;
216
+ borderHoverWarning: string;
217
+ borderPressedWarning: string;
218
+ borderFocusWarning: string;
219
+ borderDisabledWarning: string;
220
+ rippleColorWarning: string;
221
+ colorError: string;
222
+ colorHoverError: string;
223
+ colorPressedError: string;
224
+ colorFocusError: string;
225
+ colorDisabledError: string;
226
+ textColorError: string;
227
+ textColorHoverError: string;
228
+ textColorPressedError: string;
229
+ textColorFocusError: string;
230
+ textColorDisabledError: string;
231
+ textColorTextError: string;
232
+ textColorTextHoverError: string;
233
+ textColorTextPressedError: string;
234
+ textColorTextFocusError: string;
235
+ textColorTextDisabledError: string;
236
+ textColorGhostError: string;
237
+ textColorGhostHoverError: string;
238
+ textColorGhostPressedError: string;
239
+ textColorGhostFocusError: string;
240
+ textColorGhostDisabledError: string;
241
+ borderError: string;
242
+ borderHoverError: string;
243
+ borderPressedError: string;
244
+ borderFocusError: string;
245
+ borderDisabledError: string;
246
+ rippleColorError: string;
247
+ waveOpacity: string;
248
+ fontWeight: string;
249
+ fontWeightStrong: string;
250
+ paddingTiny: string;
251
+ paddingSmall: string;
252
+ paddingMedium: string;
253
+ paddingLarge: string;
254
+ paddingRoundTiny: string;
255
+ paddingRoundSmall: string;
256
+ paddingRoundMedium: string;
257
+ paddingRoundLarge: string;
258
+ iconMarginTiny: string;
259
+ iconMarginSmall: string;
260
+ iconMarginMedium: string;
261
+ iconMarginLarge: string;
262
+ iconSizeTiny: string;
263
+ iconSizeSmall: string;
264
+ iconSizeMedium: string;
265
+ iconSizeLarge: string;
266
+ rippleDuration: string;
267
+ }, any>>;
268
+ readonly themeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Button", {
269
+ heightTiny: string;
270
+ heightSmall: string;
271
+ heightMedium: string;
272
+ heightLarge: string;
273
+ borderRadiusTiny: string;
274
+ borderRadiusSmall: string;
275
+ borderRadiusMedium: string;
276
+ borderRadiusLarge: string;
277
+ fontSizeTiny: string;
278
+ fontSizeSmall: string;
279
+ fontSizeMedium: string;
280
+ fontSizeLarge: string;
281
+ opacityDisabled: string;
282
+ colorOpacitySecondary: string;
283
+ colorOpacitySecondaryHover: string;
284
+ colorOpacitySecondaryPressed: string;
285
+ colorSecondary: string;
286
+ colorSecondaryHover: string;
287
+ colorSecondaryPressed: string;
288
+ colorTertiary: string;
289
+ colorTertiaryHover: string;
290
+ colorTertiaryPressed: string;
291
+ colorQuaternary: string;
292
+ colorQuaternaryHover: string;
293
+ colorQuaternaryPressed: string;
294
+ color: string;
295
+ colorHover: string;
296
+ colorPressed: string;
297
+ colorFocus: string;
298
+ colorDisabled: string;
299
+ textColor: string;
300
+ textColorTertiary: string;
301
+ textColorHover: string;
302
+ textColorPressed: string;
303
+ textColorFocus: string;
304
+ textColorDisabled: string;
305
+ textColorText: string;
306
+ textColorTextHover: string;
307
+ textColorTextPressed: string;
308
+ textColorTextFocus: string;
309
+ textColorTextDisabled: string;
310
+ textColorGhost: string;
311
+ textColorGhostHover: string;
312
+ textColorGhostPressed: string;
313
+ textColorGhostFocus: string;
314
+ textColorGhostDisabled: string;
315
+ border: string;
316
+ borderHover: string;
317
+ borderPressed: string;
318
+ borderFocus: string;
319
+ borderDisabled: string;
320
+ rippleColor: string;
321
+ colorPrimary: string;
322
+ colorHoverPrimary: string;
323
+ colorPressedPrimary: string;
324
+ colorFocusPrimary: string;
325
+ colorDisabledPrimary: string;
326
+ textColorPrimary: string;
327
+ textColorHoverPrimary: string;
328
+ textColorPressedPrimary: string;
329
+ textColorFocusPrimary: string;
330
+ textColorDisabledPrimary: string;
331
+ textColorTextPrimary: string;
332
+ textColorTextHoverPrimary: string;
333
+ textColorTextPressedPrimary: string;
334
+ textColorTextFocusPrimary: string;
335
+ textColorTextDisabledPrimary: string;
336
+ textColorGhostPrimary: string;
337
+ textColorGhostHoverPrimary: string;
338
+ textColorGhostPressedPrimary: string;
339
+ textColorGhostFocusPrimary: string;
340
+ textColorGhostDisabledPrimary: string;
341
+ borderPrimary: string;
342
+ borderHoverPrimary: string;
343
+ borderPressedPrimary: string;
344
+ borderFocusPrimary: string;
345
+ borderDisabledPrimary: string;
346
+ rippleColorPrimary: string;
347
+ colorInfo: string;
348
+ colorHoverInfo: string;
349
+ colorPressedInfo: string;
350
+ colorFocusInfo: string;
351
+ colorDisabledInfo: string;
352
+ textColorInfo: string;
353
+ textColorHoverInfo: string;
354
+ textColorPressedInfo: string;
355
+ textColorFocusInfo: string;
356
+ textColorDisabledInfo: string;
357
+ textColorTextInfo: string;
358
+ textColorTextHoverInfo: string;
359
+ textColorTextPressedInfo: string;
360
+ textColorTextFocusInfo: string;
361
+ textColorTextDisabledInfo: string;
362
+ textColorGhostInfo: string;
363
+ textColorGhostHoverInfo: string;
364
+ textColorGhostPressedInfo: string;
365
+ textColorGhostFocusInfo: string;
366
+ textColorGhostDisabledInfo: string;
367
+ borderInfo: string;
368
+ borderHoverInfo: string;
369
+ borderPressedInfo: string;
370
+ borderFocusInfo: string;
371
+ borderDisabledInfo: string;
372
+ rippleColorInfo: string;
373
+ colorSuccess: string;
374
+ colorHoverSuccess: string;
375
+ colorPressedSuccess: string;
376
+ colorFocusSuccess: string;
377
+ colorDisabledSuccess: string;
378
+ textColorSuccess: string;
379
+ textColorHoverSuccess: string;
380
+ textColorPressedSuccess: string;
381
+ textColorFocusSuccess: string;
382
+ textColorDisabledSuccess: string;
383
+ textColorTextSuccess: string;
384
+ textColorTextHoverSuccess: string;
385
+ textColorTextPressedSuccess: string;
386
+ textColorTextFocusSuccess: string;
387
+ textColorTextDisabledSuccess: string;
388
+ textColorGhostSuccess: string;
389
+ textColorGhostHoverSuccess: string;
390
+ textColorGhostPressedSuccess: string;
391
+ textColorGhostFocusSuccess: string;
392
+ textColorGhostDisabledSuccess: string;
393
+ borderSuccess: string;
394
+ borderHoverSuccess: string;
395
+ borderPressedSuccess: string;
396
+ borderFocusSuccess: string;
397
+ borderDisabledSuccess: string;
398
+ rippleColorSuccess: string;
399
+ colorWarning: string;
400
+ colorHoverWarning: string;
401
+ colorPressedWarning: string;
402
+ colorFocusWarning: string;
403
+ colorDisabledWarning: string;
404
+ textColorWarning: string;
405
+ textColorHoverWarning: string;
406
+ textColorPressedWarning: string;
407
+ textColorFocusWarning: string;
408
+ textColorDisabledWarning: string;
409
+ textColorTextWarning: string;
410
+ textColorTextHoverWarning: string;
411
+ textColorTextPressedWarning: string;
412
+ textColorTextFocusWarning: string;
413
+ textColorTextDisabledWarning: string;
414
+ textColorGhostWarning: string;
415
+ textColorGhostHoverWarning: string;
416
+ textColorGhostPressedWarning: string;
417
+ textColorGhostFocusWarning: string;
418
+ textColorGhostDisabledWarning: string;
419
+ borderWarning: string;
420
+ borderHoverWarning: string;
421
+ borderPressedWarning: string;
422
+ borderFocusWarning: string;
423
+ borderDisabledWarning: string;
424
+ rippleColorWarning: string;
425
+ colorError: string;
426
+ colorHoverError: string;
427
+ colorPressedError: string;
428
+ colorFocusError: string;
429
+ colorDisabledError: string;
430
+ textColorError: string;
431
+ textColorHoverError: string;
432
+ textColorPressedError: string;
433
+ textColorFocusError: string;
434
+ textColorDisabledError: string;
435
+ textColorTextError: string;
436
+ textColorTextHoverError: string;
437
+ textColorTextPressedError: string;
438
+ textColorTextFocusError: string;
439
+ textColorTextDisabledError: string;
440
+ textColorGhostError: string;
441
+ textColorGhostHoverError: string;
442
+ textColorGhostPressedError: string;
443
+ textColorGhostFocusError: string;
444
+ textColorGhostDisabledError: string;
445
+ borderError: string;
446
+ borderHoverError: string;
447
+ borderPressedError: string;
448
+ borderFocusError: string;
449
+ borderDisabledError: string;
450
+ rippleColorError: string;
451
+ waveOpacity: string;
452
+ fontWeight: string;
453
+ fontWeightStrong: string;
454
+ paddingTiny: string;
455
+ paddingSmall: string;
456
+ paddingMedium: string;
457
+ paddingLarge: string;
458
+ paddingRoundTiny: string;
459
+ paddingRoundSmall: string;
460
+ paddingRoundMedium: string;
461
+ paddingRoundLarge: string;
462
+ iconMarginTiny: string;
463
+ iconMarginSmall: string;
464
+ iconMarginMedium: string;
465
+ iconMarginLarge: string;
466
+ iconSizeTiny: string;
467
+ iconSizeSmall: string;
468
+ iconSizeMedium: string;
469
+ iconSizeLarge: string;
470
+ rippleDuration: string;
471
+ }, any>>>;
472
+ readonly builtinThemeOverrides: import('vue').PropType<import('naive-ui/es/_mixins/use-theme').ExtractThemeOverrides<import('naive-ui/es/_mixins').Theme<"Button", {
473
+ heightTiny: string;
474
+ heightSmall: string;
475
+ heightMedium: string;
476
+ heightLarge: string;
477
+ borderRadiusTiny: string;
478
+ borderRadiusSmall: string;
479
+ borderRadiusMedium: string;
480
+ borderRadiusLarge: string;
481
+ fontSizeTiny: string;
482
+ fontSizeSmall: string;
483
+ fontSizeMedium: string;
484
+ fontSizeLarge: string;
485
+ opacityDisabled: string;
486
+ colorOpacitySecondary: string;
487
+ colorOpacitySecondaryHover: string;
488
+ colorOpacitySecondaryPressed: string;
489
+ colorSecondary: string;
490
+ colorSecondaryHover: string;
491
+ colorSecondaryPressed: string;
492
+ colorTertiary: string;
493
+ colorTertiaryHover: string;
494
+ colorTertiaryPressed: string;
495
+ colorQuaternary: string;
496
+ colorQuaternaryHover: string;
497
+ colorQuaternaryPressed: string;
498
+ color: string;
499
+ colorHover: string;
500
+ colorPressed: string;
501
+ colorFocus: string;
502
+ colorDisabled: string;
503
+ textColor: string;
504
+ textColorTertiary: string;
505
+ textColorHover: string;
506
+ textColorPressed: string;
507
+ textColorFocus: string;
508
+ textColorDisabled: string;
509
+ textColorText: string;
510
+ textColorTextHover: string;
511
+ textColorTextPressed: string;
512
+ textColorTextFocus: string;
513
+ textColorTextDisabled: string;
514
+ textColorGhost: string;
515
+ textColorGhostHover: string;
516
+ textColorGhostPressed: string;
517
+ textColorGhostFocus: string;
518
+ textColorGhostDisabled: string;
519
+ border: string;
520
+ borderHover: string;
521
+ borderPressed: string;
522
+ borderFocus: string;
523
+ borderDisabled: string;
524
+ rippleColor: string;
525
+ colorPrimary: string;
526
+ colorHoverPrimary: string;
527
+ colorPressedPrimary: string;
528
+ colorFocusPrimary: string;
529
+ colorDisabledPrimary: string;
530
+ textColorPrimary: string;
531
+ textColorHoverPrimary: string;
532
+ textColorPressedPrimary: string;
533
+ textColorFocusPrimary: string;
534
+ textColorDisabledPrimary: string;
535
+ textColorTextPrimary: string;
536
+ textColorTextHoverPrimary: string;
537
+ textColorTextPressedPrimary: string;
538
+ textColorTextFocusPrimary: string;
539
+ textColorTextDisabledPrimary: string;
540
+ textColorGhostPrimary: string;
541
+ textColorGhostHoverPrimary: string;
542
+ textColorGhostPressedPrimary: string;
543
+ textColorGhostFocusPrimary: string;
544
+ textColorGhostDisabledPrimary: string;
545
+ borderPrimary: string;
546
+ borderHoverPrimary: string;
547
+ borderPressedPrimary: string;
548
+ borderFocusPrimary: string;
549
+ borderDisabledPrimary: string;
550
+ rippleColorPrimary: string;
551
+ colorInfo: string;
552
+ colorHoverInfo: string;
553
+ colorPressedInfo: string;
554
+ colorFocusInfo: string;
555
+ colorDisabledInfo: string;
556
+ textColorInfo: string;
557
+ textColorHoverInfo: string;
558
+ textColorPressedInfo: string;
559
+ textColorFocusInfo: string;
560
+ textColorDisabledInfo: string;
561
+ textColorTextInfo: string;
562
+ textColorTextHoverInfo: string;
563
+ textColorTextPressedInfo: string;
564
+ textColorTextFocusInfo: string;
565
+ textColorTextDisabledInfo: string;
566
+ textColorGhostInfo: string;
567
+ textColorGhostHoverInfo: string;
568
+ textColorGhostPressedInfo: string;
569
+ textColorGhostFocusInfo: string;
570
+ textColorGhostDisabledInfo: string;
571
+ borderInfo: string;
572
+ borderHoverInfo: string;
573
+ borderPressedInfo: string;
574
+ borderFocusInfo: string;
575
+ borderDisabledInfo: string;
576
+ rippleColorInfo: string;
577
+ colorSuccess: string;
578
+ colorHoverSuccess: string;
579
+ colorPressedSuccess: string;
580
+ colorFocusSuccess: string;
581
+ colorDisabledSuccess: string;
582
+ textColorSuccess: string;
583
+ textColorHoverSuccess: string;
584
+ textColorPressedSuccess: string;
585
+ textColorFocusSuccess: string;
586
+ textColorDisabledSuccess: string;
587
+ textColorTextSuccess: string;
588
+ textColorTextHoverSuccess: string;
589
+ textColorTextPressedSuccess: string;
590
+ textColorTextFocusSuccess: string;
591
+ textColorTextDisabledSuccess: string;
592
+ textColorGhostSuccess: string;
593
+ textColorGhostHoverSuccess: string;
594
+ textColorGhostPressedSuccess: string;
595
+ textColorGhostFocusSuccess: string;
596
+ textColorGhostDisabledSuccess: string;
597
+ borderSuccess: string;
598
+ borderHoverSuccess: string;
599
+ borderPressedSuccess: string;
600
+ borderFocusSuccess: string;
601
+ borderDisabledSuccess: string;
602
+ rippleColorSuccess: string;
603
+ colorWarning: string;
604
+ colorHoverWarning: string;
605
+ colorPressedWarning: string;
606
+ colorFocusWarning: string;
607
+ colorDisabledWarning: string;
608
+ textColorWarning: string;
609
+ textColorHoverWarning: string;
610
+ textColorPressedWarning: string;
611
+ textColorFocusWarning: string;
612
+ textColorDisabledWarning: string;
613
+ textColorTextWarning: string;
614
+ textColorTextHoverWarning: string;
615
+ textColorTextPressedWarning: string;
616
+ textColorTextFocusWarning: string;
617
+ textColorTextDisabledWarning: string;
618
+ textColorGhostWarning: string;
619
+ textColorGhostHoverWarning: string;
620
+ textColorGhostPressedWarning: string;
621
+ textColorGhostFocusWarning: string;
622
+ textColorGhostDisabledWarning: string;
623
+ borderWarning: string;
624
+ borderHoverWarning: string;
625
+ borderPressedWarning: string;
626
+ borderFocusWarning: string;
627
+ borderDisabledWarning: string;
628
+ rippleColorWarning: string;
629
+ colorError: string;
630
+ colorHoverError: string;
631
+ colorPressedError: string;
632
+ colorFocusError: string;
633
+ colorDisabledError: string;
634
+ textColorError: string;
635
+ textColorHoverError: string;
636
+ textColorPressedError: string;
637
+ textColorFocusError: string;
638
+ textColorDisabledError: string;
639
+ textColorTextError: string;
640
+ textColorTextHoverError: string;
641
+ textColorTextPressedError: string;
642
+ textColorTextFocusError: string;
643
+ textColorTextDisabledError: string;
644
+ textColorGhostError: string;
645
+ textColorGhostHoverError: string;
646
+ textColorGhostPressedError: string;
647
+ textColorGhostFocusError: string;
648
+ textColorGhostDisabledError: string;
649
+ borderError: string;
650
+ borderHoverError: string;
651
+ borderPressedError: string;
652
+ borderFocusError: string;
653
+ borderDisabledError: string;
654
+ rippleColorError: string;
655
+ waveOpacity: string;
656
+ fontWeight: string;
657
+ fontWeightStrong: string;
658
+ paddingTiny: string;
659
+ paddingSmall: string;
660
+ paddingMedium: string;
661
+ paddingLarge: string;
662
+ paddingRoundTiny: string;
663
+ paddingRoundSmall: string;
664
+ paddingRoundMedium: string;
665
+ paddingRoundLarge: string;
666
+ iconMarginTiny: string;
667
+ iconMarginSmall: string;
668
+ iconMarginMedium: string;
669
+ iconMarginLarge: string;
670
+ iconSizeTiny: string;
671
+ iconSizeSmall: string;
672
+ iconSizeMedium: string;
673
+ iconSizeLarge: string;
674
+ rippleDuration: string;
675
+ }, any>>>;
676
+ };
677
+ export type BodenButtonProps = ExtractPublicPropTypes<typeof bodenButtonProps>;
678
+ export type BodenButtonSlots = ButtonSlots;