@kingsoft-ai/design 0.1.9

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 (97) hide show
  1. package/README.md +67 -0
  2. package/dist/index.cjs +2485 -0
  3. package/dist/index.cjs.map +1 -0
  4. package/dist/index.mjs +9638 -0
  5. package/dist/index.mjs.map +1 -0
  6. package/dist/types/__tests__/setup.d.ts +1 -0
  7. package/dist/types/__tests__/test-utils.d.ts +26 -0
  8. package/dist/types/button/Button.d.ts +56 -0
  9. package/dist/types/button/Button.style.d.ts +69 -0
  10. package/dist/types/button/IconButton.d.ts +47 -0
  11. package/dist/types/button/IconButton.style.d.ts +32 -0
  12. package/dist/types/button/__tests__/Button.test.d.ts +14 -0
  13. package/dist/types/button/__tests__/IconButton.test.d.ts +1 -0
  14. package/dist/types/button/index.d.ts +4 -0
  15. package/dist/types/button/tokens.d.ts +4 -0
  16. package/dist/types/checkbox/Checkbox.d.ts +42 -0
  17. package/dist/types/checkbox/Checkbox.style.d.ts +9 -0
  18. package/dist/types/checkbox/CheckboxButton.d.ts +52 -0
  19. package/dist/types/checkbox/CheckboxButton.style.d.ts +26 -0
  20. package/dist/types/checkbox/__tests__/Checkbox.test.d.ts +4 -0
  21. package/dist/types/checkbox/__tests__/CheckboxButton.test.d.ts +4 -0
  22. package/dist/types/checkbox/index.d.ts +7 -0
  23. package/dist/types/checkbox/tokens.d.ts +3 -0
  24. package/dist/types/collapse/Collapse.d.ts +50 -0
  25. package/dist/types/collapse/Collapse.style.d.ts +153 -0
  26. package/dist/types/collapse/CollapseItem.d.ts +46 -0
  27. package/dist/types/collapse/__tests__/Collapse.test.d.ts +14 -0
  28. package/dist/types/collapse/index.d.ts +4 -0
  29. package/dist/types/collapse/tokens.d.ts +3 -0
  30. package/dist/types/index.d.ts +18 -0
  31. package/dist/types/input/Input.d.ts +73 -0
  32. package/dist/types/input/Input.style.d.ts +96 -0
  33. package/dist/types/input/__tests__/Input.test.d.ts +17 -0
  34. package/dist/types/input/index.d.ts +2 -0
  35. package/dist/types/input/tokens.d.ts +3 -0
  36. package/dist/types/menu/Menu.d.ts +37 -0
  37. package/dist/types/menu/Menu.style.d.ts +122 -0
  38. package/dist/types/menu/MenuFooter.d.ts +32 -0
  39. package/dist/types/menu/MenuGroup.d.ts +26 -0
  40. package/dist/types/menu/MenuHeader.d.ts +32 -0
  41. package/dist/types/menu/MenuItem.d.ts +40 -0
  42. package/dist/types/menu/SubMenuItem.d.ts +26 -0
  43. package/dist/types/menu/SubMenuPopover.d.ts +29 -0
  44. package/dist/types/menu/__tests__/Menu.test.d.ts +1 -0
  45. package/dist/types/menu/index.d.ts +13 -0
  46. package/dist/types/menu/tokens.d.ts +3 -0
  47. package/dist/types/numberInput/NumberInput.d.ts +59 -0
  48. package/dist/types/numberInput/NumberInput.style.d.ts +44 -0
  49. package/dist/types/numberInput/__tests__/NumberInput.test.d.ts +1 -0
  50. package/dist/types/numberInput/index.d.ts +2 -0
  51. package/dist/types/numberInput/tokens.d.ts +3 -0
  52. package/dist/types/progress/Progress.d.ts +64 -0
  53. package/dist/types/progress/Progress.style.d.ts +117 -0
  54. package/dist/types/progress/__tests__/Progress.test.d.ts +1 -0
  55. package/dist/types/progress/index.d.ts +3 -0
  56. package/dist/types/radio/Radio.d.ts +9 -0
  57. package/dist/types/radio/Radio.style.d.ts +36 -0
  58. package/dist/types/radio/__tests__/Radio.test.d.ts +13 -0
  59. package/dist/types/radio/index.d.ts +2 -0
  60. package/dist/types/radio/tokens.d.ts +3 -0
  61. package/dist/types/select/ListBox.d.ts +11 -0
  62. package/dist/types/select/Popover.d.ts +10 -0
  63. package/dist/types/select/Select.d.ts +140 -0
  64. package/dist/types/select/Select.style.d.ts +73 -0
  65. package/dist/types/select/__tests__/Select.test.d.ts +1 -0
  66. package/dist/types/select/index.d.ts +3 -0
  67. package/dist/types/select/tokens.d.ts +3 -0
  68. package/dist/types/skeleton/Skeleton.d.ts +23 -0
  69. package/dist/types/skeleton/Skeleton.style.d.ts +32 -0
  70. package/dist/types/skeleton/index.d.ts +3 -0
  71. package/dist/types/skeleton/tokens.d.ts +3 -0
  72. package/dist/types/stepper/Step.d.ts +24 -0
  73. package/dist/types/stepper/Stepper.d.ts +20 -0
  74. package/dist/types/stepper/Stepper.style.d.ts +57 -0
  75. package/dist/types/stepper/index.d.ts +3 -0
  76. package/dist/types/stepper/tokens.d.ts +3 -0
  77. package/dist/types/switch/Switch.d.ts +68 -0
  78. package/dist/types/switch/Switch.style.d.ts +100 -0
  79. package/dist/types/switch/__tests__/Switch.test.d.ts +14 -0
  80. package/dist/types/switch/index.d.ts +6 -0
  81. package/dist/types/switch/tokens.d.ts +3 -0
  82. package/dist/types/table/Table.d.ts +88 -0
  83. package/dist/types/table/Table.style.d.ts +97 -0
  84. package/dist/types/table/index.d.ts +2 -0
  85. package/dist/types/tag/Tag.d.ts +80 -0
  86. package/dist/types/tag/Tag.style.d.ts +83 -0
  87. package/dist/types/tag/__tests__/Tag.test.d.ts +14 -0
  88. package/dist/types/tag/index.d.ts +2 -0
  89. package/dist/types/tag/tokens.d.ts +3 -0
  90. package/dist/types/theme.d.ts +14 -0
  91. package/dist/types/types/component-tokens.types.d.ts +765 -0
  92. package/dist/types/types/theme-utils.d.ts +20 -0
  93. package/dist/types/upload/Upload.d.ts +80 -0
  94. package/dist/types/upload/Upload.style.d.ts +158 -0
  95. package/dist/types/upload/__tests__/Upload.test.d.ts +16 -0
  96. package/dist/types/upload/index.d.ts +3 -0
  97. package/package.json +73 -0
@@ -0,0 +1,765 @@
1
+ /**
2
+ * Design Token 类型定义 - Tier 3: 组件层 (Component Tokens)
3
+ *
4
+ * 定义所有设计组件的 Token 类型接口
5
+ * 这些类型用于确保组件主题配置的类型安全
6
+ */
7
+ export interface ButtonTokens {
8
+ primary: {
9
+ background: {
10
+ default: string;
11
+ hover: string;
12
+ active: string;
13
+ };
14
+ text: {
15
+ default: string;
16
+ };
17
+ border: {
18
+ default: string;
19
+ };
20
+ shadow: {
21
+ default: string;
22
+ hover: string;
23
+ };
24
+ };
25
+ secondary: {
26
+ background: {
27
+ default: string;
28
+ hover: string;
29
+ active: string;
30
+ };
31
+ text: {
32
+ default: string;
33
+ };
34
+ border: {
35
+ default: string;
36
+ hover: string;
37
+ active: string;
38
+ };
39
+ shadow: {
40
+ default: string;
41
+ };
42
+ };
43
+ text: {
44
+ background: {
45
+ default: string;
46
+ hover: string;
47
+ active: string;
48
+ };
49
+ text: {
50
+ default: string;
51
+ };
52
+ border: {
53
+ default: string;
54
+ hover: string;
55
+ active: string;
56
+ };
57
+ };
58
+ danger: {
59
+ background: {
60
+ default: string;
61
+ hover: string;
62
+ active: string;
63
+ };
64
+ text: {
65
+ default: string;
66
+ };
67
+ border: {
68
+ default: string;
69
+ };
70
+ shadow: {
71
+ default: string;
72
+ hover: string;
73
+ };
74
+ };
75
+ gradient: {
76
+ background: {
77
+ default: string;
78
+ gradientFrom: string;
79
+ gradientTo: string;
80
+ };
81
+ text: {
82
+ default: string;
83
+ };
84
+ border: {
85
+ default: string;
86
+ };
87
+ shadow: {
88
+ default: string;
89
+ hover: string;
90
+ };
91
+ };
92
+ disabled: {
93
+ background: {
94
+ default: string;
95
+ };
96
+ text: {
97
+ default: string;
98
+ };
99
+ opacity: number;
100
+ };
101
+ size: {
102
+ sm: {
103
+ height: string;
104
+ fontSize: string;
105
+ paddingInline: string;
106
+ iconSize: string;
107
+ };
108
+ md: {
109
+ height: string;
110
+ fontSize: string;
111
+ paddingInline: string;
112
+ iconSize: string;
113
+ };
114
+ lg: {
115
+ height: string;
116
+ fontSize: string;
117
+ paddingInline: string;
118
+ iconSize: string;
119
+ };
120
+ };
121
+ borderRadius: string;
122
+ fontWeight: number;
123
+ gap: string;
124
+ transition: string;
125
+ }
126
+ type IconButtonStateTokens = {
127
+ background: {
128
+ default: string;
129
+ hover: string;
130
+ active: string;
131
+ };
132
+ border: {
133
+ default: string;
134
+ hover?: string;
135
+ active?: string;
136
+ };
137
+ icon: {
138
+ default: string;
139
+ hover?: string;
140
+ active?: string;
141
+ };
142
+ shadow?: {
143
+ default: string;
144
+ hover?: string;
145
+ };
146
+ };
147
+ export interface IconButtonTokens {
148
+ appearance: {
149
+ solid: {
150
+ primary: IconButtonStateTokens;
151
+ neutral: IconButtonStateTokens;
152
+ danger: IconButtonStateTokens;
153
+ };
154
+ outline: {
155
+ primary: IconButtonStateTokens;
156
+ neutral: IconButtonStateTokens;
157
+ danger: IconButtonStateTokens;
158
+ };
159
+ ghost: {
160
+ primary: IconButtonStateTokens;
161
+ neutral: IconButtonStateTokens;
162
+ danger: IconButtonStateTokens;
163
+ };
164
+ };
165
+ disabled: {
166
+ background: string;
167
+ border: string;
168
+ icon: string;
169
+ opacity: number;
170
+ };
171
+ size: {
172
+ sm: {
173
+ edge: string;
174
+ iconSize: string;
175
+ };
176
+ md: {
177
+ edge: string;
178
+ iconSize: string;
179
+ };
180
+ lg: {
181
+ edge: string;
182
+ iconSize: string;
183
+ };
184
+ };
185
+ borderRadius: string;
186
+ transition: string;
187
+ focusRing: {
188
+ color: string;
189
+ offset: string;
190
+ width: string;
191
+ };
192
+ }
193
+ export interface CheckboxTokens {
194
+ control: {
195
+ size: string;
196
+ borderRadius: string;
197
+ borderWidth: string;
198
+ background: {
199
+ default: string;
200
+ checked: string;
201
+ disabled: string;
202
+ disabledChecked: string;
203
+ };
204
+ borderColor: {
205
+ default: string;
206
+ hover: string;
207
+ checked: string;
208
+ disabled: string;
209
+ disabledChecked: string;
210
+ };
211
+ icon: {
212
+ color: string;
213
+ size: string;
214
+ };
215
+ };
216
+ focusRing: string;
217
+ gap: string;
218
+ text: {
219
+ label: {
220
+ fontSize: string;
221
+ lineHeight: string;
222
+ color: string;
223
+ disabled: string;
224
+ fontWeight: number;
225
+ };
226
+ };
227
+ transition: string;
228
+ }
229
+ export interface RadioTokens {
230
+ control: {
231
+ size: string;
232
+ borderRadius: string;
233
+ borderWidth: string;
234
+ background: string;
235
+ borderColor: {
236
+ default: string;
237
+ hover: string;
238
+ checked: string;
239
+ disabled: string;
240
+ };
241
+ indicator: {
242
+ size: string;
243
+ color: string;
244
+ disabled: string;
245
+ };
246
+ };
247
+ focusRing: string;
248
+ gap: string;
249
+ transition: string;
250
+ text: {
251
+ label: {
252
+ fontSize: string;
253
+ color: string;
254
+ disabled: string;
255
+ fontWeight: number;
256
+ };
257
+ description: {
258
+ color: string;
259
+ disabled: string;
260
+ fontSize: string;
261
+ };
262
+ };
263
+ disabled: {
264
+ opacity: number;
265
+ };
266
+ }
267
+ export interface SwitchTokens {
268
+ size: {
269
+ sm: {
270
+ width: string;
271
+ height: string;
272
+ thumbSize: string;
273
+ fontSize: string;
274
+ paddingInline: string;
275
+ };
276
+ md: {
277
+ width: string;
278
+ height: string;
279
+ thumbSize: string;
280
+ fontSize: string;
281
+ paddingInline: string;
282
+ };
283
+ };
284
+ background: {
285
+ unchecked: string;
286
+ checked: string;
287
+ disabled: string;
288
+ };
289
+ thumb: {
290
+ background: string;
291
+ shadow: string;
292
+ };
293
+ text: {
294
+ color: string;
295
+ fontSize: string;
296
+ fontWeight: number;
297
+ };
298
+ borderRadius: string;
299
+ gap: string;
300
+ transition: string;
301
+ disabled: {
302
+ opacity: number;
303
+ };
304
+ focusRing: {
305
+ color: string;
306
+ offset: string;
307
+ };
308
+ }
309
+ export interface InputTokens {
310
+ size: {
311
+ sm: {
312
+ height: string;
313
+ fontSize: string;
314
+ paddingInline: string;
315
+ iconSize: string;
316
+ };
317
+ md: {
318
+ height: string;
319
+ fontSize: string;
320
+ paddingInline: string;
321
+ iconSize: string;
322
+ };
323
+ lg: {
324
+ height: string;
325
+ fontSize: string;
326
+ paddingInline: string;
327
+ iconSize: string;
328
+ };
329
+ };
330
+ border: {
331
+ default: string;
332
+ hover: string;
333
+ focus: string;
334
+ error: string;
335
+ disabled: string;
336
+ };
337
+ background: {
338
+ default: string;
339
+ disabled: string;
340
+ };
341
+ text: {
342
+ default: string;
343
+ placeholder: string;
344
+ disabled: string;
345
+ error: string;
346
+ counter: string;
347
+ };
348
+ borderRadius: string;
349
+ gap: string;
350
+ transition: string;
351
+ }
352
+ export interface CollapseTokens {
353
+ border: {
354
+ default: string;
355
+ };
356
+ background: {
357
+ default: string;
358
+ hover: string;
359
+ };
360
+ text: {
361
+ default: string;
362
+ title: string;
363
+ };
364
+ divider: string;
365
+ arrow: {
366
+ default: string;
367
+ };
368
+ padding: {
369
+ header: string;
370
+ content: string;
371
+ };
372
+ borderRadius: string;
373
+ gap: string;
374
+ transition: string;
375
+ arrowSize: string;
376
+ }
377
+ export interface TagTokens {
378
+ colors: {
379
+ default: TagColorTokens;
380
+ red: TagColorTokens;
381
+ orange: TagColorTokens;
382
+ yellow: TagColorTokens;
383
+ green: TagColorTokens;
384
+ lavender: TagColorTokens;
385
+ lilac: TagColorTokens;
386
+ carmine: TagColorTokens;
387
+ rose: TagColorTokens;
388
+ mint: TagColorTokens;
389
+ olive: TagColorTokens;
390
+ blue: TagColorTokens;
391
+ };
392
+ size: {
393
+ sm: {
394
+ height: string;
395
+ fontSize: string;
396
+ lineHeight: string;
397
+ paddingInline: string;
398
+ gap: string;
399
+ iconSize: string;
400
+ closeIconSize: string;
401
+ };
402
+ md: {
403
+ height: string;
404
+ fontSize: string;
405
+ lineHeight: string;
406
+ paddingInline: string;
407
+ gap: string;
408
+ iconSize: string;
409
+ closeIconSize: string;
410
+ };
411
+ lg: {
412
+ height: string;
413
+ fontSize: string;
414
+ lineHeight: string;
415
+ paddingInline: string;
416
+ gap: string;
417
+ iconSize: string;
418
+ closeIconSize: string;
419
+ };
420
+ };
421
+ fontWeight: number;
422
+ borderRadius: string;
423
+ transition: string;
424
+ disabled: {
425
+ opacity: number;
426
+ };
427
+ }
428
+ export interface TagColorTokens {
429
+ background: {
430
+ default: string;
431
+ hover?: string;
432
+ active?: string;
433
+ checked?: string;
434
+ checkedHover?: string;
435
+ checkedActive?: string;
436
+ };
437
+ text: {
438
+ default: string;
439
+ checked?: string;
440
+ };
441
+ border: {
442
+ default: string;
443
+ hover?: string;
444
+ active?: string;
445
+ checked?: string;
446
+ checkedHover?: string;
447
+ checkedActive?: string;
448
+ };
449
+ }
450
+ export interface SkeletonTokens {
451
+ background: {
452
+ base: string;
453
+ highlight: string;
454
+ };
455
+ animation: {
456
+ duration: string;
457
+ easing: string;
458
+ };
459
+ radius: {
460
+ sm: string;
461
+ md: string;
462
+ lg: string;
463
+ pill: string;
464
+ circle: string;
465
+ };
466
+ block: {
467
+ height: string;
468
+ };
469
+ text: {
470
+ lineHeight: string;
471
+ gap: string;
472
+ lastLineWidth: string;
473
+ };
474
+ circle: {
475
+ size: string;
476
+ };
477
+ }
478
+ export interface StepperTokens {
479
+ circle: {
480
+ size: {
481
+ md: string;
482
+ sm: string;
483
+ };
484
+ fontSize: {
485
+ md: string;
486
+ sm: string;
487
+ };
488
+ iconSize: {
489
+ md: string;
490
+ sm: string;
491
+ };
492
+ };
493
+ dot: {
494
+ size: {
495
+ md: string;
496
+ sm: string;
497
+ };
498
+ pulseColor: string;
499
+ };
500
+ line: {
501
+ color: {
502
+ default: string;
503
+ active: string;
504
+ };
505
+ size: string;
506
+ };
507
+ text: {
508
+ title: {
509
+ color: {
510
+ default: string;
511
+ active: string;
512
+ error: string;
513
+ waiting: string;
514
+ };
515
+ fontWeight: number;
516
+ fontSize: string;
517
+ };
518
+ description: {
519
+ color: string;
520
+ fontSize: string;
521
+ };
522
+ };
523
+ state: {
524
+ process: {
525
+ color: string;
526
+ bg: string;
527
+ };
528
+ wait: {
529
+ color: string;
530
+ bg: string;
531
+ };
532
+ finish: {
533
+ color: string;
534
+ bg: string;
535
+ };
536
+ error: {
537
+ color: string;
538
+ bg: string;
539
+ };
540
+ };
541
+ gap: string;
542
+ }
543
+ export interface NumberFieldTokens {
544
+ controls: {
545
+ default: 'buttons' | 'arrows';
546
+ };
547
+ size: {
548
+ md: {
549
+ height: string;
550
+ fontSize: string;
551
+ paddingInline: string;
552
+ };
553
+ lg: {
554
+ height: string;
555
+ fontSize: string;
556
+ paddingInline: string;
557
+ };
558
+ };
559
+ input: {
560
+ width: string;
561
+ height: string;
562
+ paddingInline: string;
563
+ fontSize: string;
564
+ fontWeight: number;
565
+ lineHeight: string;
566
+ fontFamily: string;
567
+ };
568
+ control: {
569
+ side: {
570
+ buttonSizeSm: string;
571
+ buttonSizeLg: string;
572
+ inset: string;
573
+ gap: string;
574
+ iconSize: string;
575
+ widthsm: string;
576
+ widthLg: string;
577
+ };
578
+ arrows: {
579
+ buttonSizeSm: string;
580
+ buttonSizeLg: string;
581
+ iconSize: string;
582
+ gap: string;
583
+ widthsm: string;
584
+ widthLg: string;
585
+ };
586
+ };
587
+ borderRadius: string;
588
+ border: {
589
+ default: string;
590
+ hover: string;
591
+ disabled: string;
592
+ };
593
+ background: {
594
+ default: string;
595
+ hover: string;
596
+ disabled: string;
597
+ };
598
+ text: {
599
+ default: string;
600
+ placeholder: string;
601
+ disabled: string;
602
+ };
603
+ transition: string;
604
+ }
605
+ export interface MenuTokens {
606
+ container: {
607
+ width: {
608
+ expanded: string;
609
+ collapsed: string;
610
+ };
611
+ background: string;
612
+ border: string;
613
+ padding: string;
614
+ };
615
+ item: {
616
+ height: string;
617
+ paddingInline: string;
618
+ fontSize: string;
619
+ fontWeight: number;
620
+ iconSize: string;
621
+ gap: string;
622
+ borderRadius: string;
623
+ background: {
624
+ default: string;
625
+ hover: string;
626
+ active: string;
627
+ };
628
+ text: {
629
+ default: string;
630
+ hover: string;
631
+ active: string;
632
+ };
633
+ transition: string;
634
+ };
635
+ subItem: {
636
+ paddingLeft: string;
637
+ background: {
638
+ default: string;
639
+ hover: string;
640
+ active: string;
641
+ };
642
+ };
643
+ group: {
644
+ marginTop: string;
645
+ marginBottom: string;
646
+ gap: string;
647
+ };
648
+ groupTitle: {
649
+ height: string;
650
+ fontSize: string;
651
+ fontWeight: number;
652
+ color: string;
653
+ paddingInline: string;
654
+ marginBottom: string;
655
+ };
656
+ scrollbar: {
657
+ width: string;
658
+ thumbColor: string;
659
+ trackColor: string;
660
+ };
661
+ popover: {
662
+ background: string;
663
+ border: string;
664
+ borderRadius: string;
665
+ boxShadow: string;
666
+ padding: string;
667
+ item: {
668
+ background: {
669
+ default: string;
670
+ hover: string;
671
+ active: string;
672
+ };
673
+ text: {
674
+ default: string;
675
+ hover: string;
676
+ active: string;
677
+ };
678
+ };
679
+ };
680
+ }
681
+ export interface SelectTokens {
682
+ size: {
683
+ sm: {
684
+ height: string;
685
+ fontSize: string;
686
+ paddingInline: string;
687
+ iconSize: string;
688
+ };
689
+ md: {
690
+ height: string;
691
+ fontSize: string;
692
+ paddingInline: string;
693
+ iconSize: string;
694
+ };
695
+ lg: {
696
+ height: string;
697
+ fontSize: string;
698
+ paddingInline: string;
699
+ iconSize: string;
700
+ };
701
+ };
702
+ border: {
703
+ default: string;
704
+ hover: string;
705
+ focus: string;
706
+ error: string;
707
+ disabled: string;
708
+ };
709
+ background: {
710
+ default: string;
711
+ hover: string;
712
+ disabled: string;
713
+ };
714
+ text: {
715
+ default: string;
716
+ placeholder: string;
717
+ disabled: string;
718
+ error: string;
719
+ };
720
+ borderRadius: string;
721
+ gap: string;
722
+ transition: string;
723
+ popover: {
724
+ background: string;
725
+ border: string;
726
+ borderRadius: string;
727
+ boxShadow: string;
728
+ padding: string;
729
+ };
730
+ option: {
731
+ height: string;
732
+ paddingInline: string;
733
+ fontSize: string;
734
+ borderRadius: string;
735
+ gap: string;
736
+ background: {
737
+ default: string;
738
+ hover: string;
739
+ selected: string;
740
+ focused: string;
741
+ };
742
+ text: {
743
+ default: string;
744
+ hover: string;
745
+ selected: string;
746
+ disabled: string;
747
+ };
748
+ };
749
+ }
750
+ export interface ComponentTokens {
751
+ button: ButtonTokens;
752
+ iconButton: IconButtonTokens;
753
+ checkbox: CheckboxTokens;
754
+ radio: RadioTokens;
755
+ switch: SwitchTokens;
756
+ input: InputTokens;
757
+ select: SelectTokens;
758
+ collapse: CollapseTokens;
759
+ tag: TagTokens;
760
+ skeleton: SkeletonTokens;
761
+ stepper: StepperTokens;
762
+ numberfield: NumberFieldTokens;
763
+ menu: MenuTokens;
764
+ }
765
+ export {};