@servicetitan/hammer-token 2.5.1 → 3.0.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 (147) hide show
  1. package/CHANGELOG.md +50 -0
  2. package/README.md +332 -0
  3. package/build/web/core/component-variables.scss +1088 -131
  4. package/build/web/core/component.d.ts +558 -0
  5. package/build/web/core/component.js +6685 -249
  6. package/build/web/core/component.scss +557 -69
  7. package/build/web/core/css-utils/a2-border.css +47 -45
  8. package/build/web/core/css-utils/a2-color.css +443 -227
  9. package/build/web/core/css-utils/a2-font.css +0 -2
  10. package/build/web/core/css-utils/a2-spacing.css +476 -478
  11. package/build/web/core/css-utils/a2-utils.css +992 -772
  12. package/build/web/core/css-utils/border.css +47 -45
  13. package/build/web/core/css-utils/color.css +443 -227
  14. package/build/web/core/css-utils/font.css +0 -2
  15. package/build/web/core/css-utils/spacing.css +476 -478
  16. package/build/web/core/css-utils/utils.css +992 -772
  17. package/build/web/core/index.d.ts +6 -0
  18. package/build/web/core/index.js +1 -1
  19. package/build/web/core/primitive-variables.scss +148 -65
  20. package/build/web/core/primitive.d.ts +209 -0
  21. package/build/web/core/primitive.js +779 -61
  22. package/build/web/core/primitive.scss +207 -124
  23. package/build/web/core/semantic-variables.scss +363 -245
  24. package/build/web/core/semantic.d.ts +221 -0
  25. package/build/web/core/semantic.js +1592 -347
  26. package/build/web/core/semantic.scss +219 -140
  27. package/build/web/index.d.ts +3 -4
  28. package/build/web/index.js +0 -1
  29. package/build/web/types.d.ts +17 -0
  30. package/config.js +121 -497
  31. package/eslint.config.mjs +11 -1
  32. package/package.json +15 -5
  33. package/src/global/primitive/breakpoint.tokens.json +54 -0
  34. package/src/global/primitive/color.tokens.json +1092 -0
  35. package/src/global/primitive/duration.tokens.json +44 -0
  36. package/src/global/primitive/font.tokens.json +151 -0
  37. package/src/global/primitive/radius.tokens.json +94 -0
  38. package/src/global/primitive/size.tokens.json +174 -0
  39. package/src/global/primitive/transition.tokens.json +32 -0
  40. package/src/theme/core/background.tokens.json +1312 -0
  41. package/src/theme/core/border.tokens.json +192 -0
  42. package/src/theme/core/chart.tokens.json +982 -0
  43. package/src/theme/core/component/ai-mark.tokens.json +20 -0
  44. package/src/theme/core/component/alert.tokens.json +261 -0
  45. package/src/theme/core/component/announcement.tokens.json +460 -0
  46. package/src/theme/core/component/avatar.tokens.json +137 -0
  47. package/src/theme/core/component/badge.tokens.json +42 -0
  48. package/src/theme/core/component/breadcrumb.tokens.json +42 -0
  49. package/src/theme/core/component/button-toggle.tokens.json +428 -0
  50. package/src/theme/core/component/button.tokens.json +941 -0
  51. package/src/theme/core/component/calendar.tokens.json +391 -0
  52. package/src/theme/core/component/card.tokens.json +107 -0
  53. package/src/theme/core/component/checkbox.tokens.json +631 -0
  54. package/src/theme/core/component/chip.tokens.json +169 -0
  55. package/src/theme/core/component/combobox.tokens.json +269 -0
  56. package/src/theme/core/component/details.tokens.json +152 -0
  57. package/src/theme/core/component/dialog.tokens.json +87 -0
  58. package/src/theme/core/component/divider.tokens.json +23 -0
  59. package/src/theme/core/component/dnd.tokens.json +208 -0
  60. package/src/theme/core/component/drawer.tokens.json +61 -0
  61. package/src/theme/core/component/drilldown.tokens.json +61 -0
  62. package/src/theme/core/component/edit-card.tokens.json +381 -0
  63. package/src/theme/core/component/field-label.tokens.json +42 -0
  64. package/src/theme/core/component/field-message.tokens.json +74 -0
  65. package/src/theme/core/component/icon.tokens.json +42 -0
  66. package/src/theme/core/component/link.tokens.json +108 -0
  67. package/src/theme/core/component/list-view.tokens.json +82 -0
  68. package/src/theme/core/component/listbox.tokens.json +283 -0
  69. package/src/theme/core/component/menu.tokens.json +230 -0
  70. package/src/theme/core/component/overflow.tokens.json +84 -0
  71. package/src/theme/core/component/page.tokens.json +377 -0
  72. package/src/theme/core/component/pagination.tokens.json +63 -0
  73. package/src/theme/core/component/popover.tokens.json +122 -0
  74. package/src/theme/core/component/progress-bar.tokens.json +133 -0
  75. package/src/theme/core/component/radio.tokens.json +631 -0
  76. package/src/theme/core/component/segmented-control.tokens.json +175 -0
  77. package/src/theme/core/component/select-card.tokens.json +943 -0
  78. package/src/theme/core/component/side-nav.tokens.json +349 -0
  79. package/src/theme/core/component/skeleton.tokens.json +42 -0
  80. package/src/theme/core/component/spinner.tokens.json +96 -0
  81. package/src/theme/core/component/status-icon.tokens.json +164 -0
  82. package/src/theme/core/component/stepper.tokens.json +484 -0
  83. package/src/theme/core/component/switch.tokens.json +285 -0
  84. package/src/theme/core/component/tab.tokens.json +192 -0
  85. package/src/theme/core/component/text-field.tokens.json +160 -0
  86. package/src/theme/core/component/text.tokens.json +59 -0
  87. package/src/theme/core/component/toast.tokens.json +343 -0
  88. package/src/theme/core/component/toolbar.tokens.json +114 -0
  89. package/src/theme/core/component/tooltip.tokens.json +61 -0
  90. package/src/theme/core/focus.tokens.json +56 -0
  91. package/src/theme/core/foreground.tokens.json +416 -0
  92. package/src/theme/core/gradient.tokens.json +41 -0
  93. package/src/theme/core/opacity.tokens.json +25 -0
  94. package/src/theme/core/shadow.tokens.json +81 -0
  95. package/src/theme/core/status.tokens.json +74 -0
  96. package/src/theme/core/typography.tokens.json +163 -0
  97. package/src/utils/__tests__/css-utils-format-utils.test.js +312 -0
  98. package/src/utils/__tests__/sd-build-configs.test.js +306 -0
  99. package/src/utils/__tests__/sd-formats.test.js +950 -0
  100. package/src/utils/__tests__/sd-transforms.test.js +336 -0
  101. package/src/utils/__tests__/token-helpers.test.js +1160 -0
  102. package/src/utils/copy-css-utils-cli.js +13 -1
  103. package/src/utils/css-utils-format-utils.js +105 -176
  104. package/src/utils/figma/__tests__/sync-gradient.test.js +561 -0
  105. package/src/utils/figma/__tests__/token-conversion.test.js +117 -0
  106. package/src/utils/figma/__tests__/token-resolution.test.js +231 -0
  107. package/src/utils/figma/auth.js +355 -0
  108. package/src/utils/figma/constants.js +22 -0
  109. package/src/utils/figma/errors.js +80 -0
  110. package/src/utils/figma/figma-api.js +1069 -0
  111. package/src/utils/figma/get-token.js +348 -0
  112. package/src/utils/figma/sync-components.js +909 -0
  113. package/src/utils/figma/sync-main.js +692 -0
  114. package/src/utils/figma/sync-orchestration.js +683 -0
  115. package/src/utils/figma/sync-primitives.js +230 -0
  116. package/src/utils/figma/sync-semantic.js +1056 -0
  117. package/src/utils/figma/token-conversion.js +340 -0
  118. package/src/utils/figma/token-parsing.js +186 -0
  119. package/src/utils/figma/token-resolution.js +569 -0
  120. package/src/utils/figma/utils.js +199 -0
  121. package/src/utils/sd-build-configs.js +305 -0
  122. package/src/utils/sd-formats.js +965 -0
  123. package/src/utils/sd-transforms.js +165 -0
  124. package/src/utils/token-helpers.js +848 -0
  125. package/tsconfig.json +18 -0
  126. package/vitest.config.js +17 -0
  127. package/.turbo/turbo-build.log +0 -37
  128. package/build/web/core/raw.js +0 -234
  129. package/src/global/primitive/breakpoint.js +0 -19
  130. package/src/global/primitive/color.js +0 -231
  131. package/src/global/primitive/duration.js +0 -16
  132. package/src/global/primitive/font.js +0 -60
  133. package/src/global/primitive/radius.js +0 -31
  134. package/src/global/primitive/size.js +0 -55
  135. package/src/global/primitive/transition.js +0 -16
  136. package/src/theme/core/background.js +0 -170
  137. package/src/theme/core/border.js +0 -103
  138. package/src/theme/core/charts.js +0 -464
  139. package/src/theme/core/component/button.js +0 -708
  140. package/src/theme/core/component/checkbox.js +0 -405
  141. package/src/theme/core/focus.js +0 -35
  142. package/src/theme/core/foreground.js +0 -148
  143. package/src/theme/core/overlay.js +0 -137
  144. package/src/theme/core/shadow.js +0 -29
  145. package/src/theme/core/status.js +0 -49
  146. package/src/theme/core/typography.js +0 -82
  147. package/type/types.ts +0 -344
@@ -0,0 +1,221 @@
1
+ import { TokenObj } from '../types';
2
+
3
+ export declare const StatusColorInfo: TokenObj;
4
+ export declare const StatusColorDanger: TokenObj;
5
+ export declare const StatusColorSuccess: TokenObj;
6
+ export declare const StatusColorWarning: TokenObj;
7
+ export declare const BackgroundColorDefault: TokenObj;
8
+ export declare const BackgroundColorDefaultHover: TokenObj;
9
+ export declare const BackgroundColorDefaultActive: TokenObj;
10
+ export declare const BackgroundColorSecondary: TokenObj;
11
+ export declare const BackgroundColorSecondaryHover: TokenObj;
12
+ export declare const BackgroundColorSecondaryActive: TokenObj;
13
+ export declare const BackgroundColorSecondaryStrong: TokenObj;
14
+ export declare const BackgroundColorSecondaryStrongHover: TokenObj;
15
+ export declare const BackgroundColorSecondaryStrongActive: TokenObj;
16
+ export declare const BackgroundColorTransparentDefault: TokenObj;
17
+ export declare const BackgroundColorTransparentDefaultHover: TokenObj;
18
+ export declare const BackgroundColorTransparentDefaultActive: TokenObj;
19
+ export declare const BackgroundColorTransparentPrimary: TokenObj;
20
+ export declare const BackgroundColorTransparentPrimaryHover: TokenObj;
21
+ export declare const BackgroundColorTransparentPrimaryActive: TokenObj;
22
+ export declare const BackgroundColorTransparentDanger: TokenObj;
23
+ export declare const BackgroundColorTransparentDangerHover: TokenObj;
24
+ export declare const BackgroundColorTransparentDangerActive: TokenObj;
25
+ export declare const BackgroundColorStrong: TokenObj;
26
+ export declare const BackgroundColorStrongHover: TokenObj;
27
+ export declare const BackgroundColorStrongActive: TokenObj;
28
+ export declare const BackgroundColorStronger: TokenObj;
29
+ export declare const BackgroundColorStrongerHover: TokenObj;
30
+ export declare const BackgroundColorStrongerActive: TokenObj;
31
+ export declare const BackgroundColorStrongest: TokenObj;
32
+ export declare const BackgroundColorStrongestHover: TokenObj;
33
+ export declare const BackgroundColorStrongestActive: TokenObj;
34
+ export declare const BackgroundColorPrimary: TokenObj;
35
+ export declare const BackgroundColorPrimaryHover: TokenObj;
36
+ export declare const BackgroundColorPrimaryActive: TokenObj;
37
+ export declare const BackgroundColorPrimarySubdued: TokenObj;
38
+ export declare const BackgroundColorPrimarySubduedHover: TokenObj;
39
+ export declare const BackgroundColorPrimarySubduedActive: TokenObj;
40
+ export declare const BackgroundColorPrimaryFaint: TokenObj;
41
+ export declare const BackgroundColorPrimaryFaintHover: TokenObj;
42
+ export declare const BackgroundColorPrimaryFaintActive: TokenObj;
43
+ export declare const BackgroundColorSuccess: TokenObj;
44
+ export declare const BackgroundColorSuccessHover: TokenObj;
45
+ export declare const BackgroundColorSuccessActive: TokenObj;
46
+ export declare const BackgroundColorSuccessSubdued: TokenObj;
47
+ export declare const BackgroundColorSuccessSubduedHover: TokenObj;
48
+ export declare const BackgroundColorSuccessSubduedActive: TokenObj;
49
+ export declare const BackgroundColorSuccessFaint: TokenObj;
50
+ export declare const BackgroundColorSuccessFaintHover: TokenObj;
51
+ export declare const BackgroundColorSuccessFaintActive: TokenObj;
52
+ export declare const BackgroundColorDanger: TokenObj;
53
+ export declare const BackgroundColorDangerHover: TokenObj;
54
+ export declare const BackgroundColorDangerActive: TokenObj;
55
+ export declare const BackgroundColorDangerSubdued: TokenObj;
56
+ export declare const BackgroundColorDangerSubduedHover: TokenObj;
57
+ export declare const BackgroundColorDangerSubduedActive: TokenObj;
58
+ export declare const BackgroundColorDangerFaint: TokenObj;
59
+ export declare const BackgroundColorDangerFaintHover: TokenObj;
60
+ export declare const BackgroundColorDangerFaintActive: TokenObj;
61
+ export declare const BackgroundColorWarning: TokenObj;
62
+ export declare const BackgroundColorWarningHover: TokenObj;
63
+ export declare const BackgroundColorWarningActive: TokenObj;
64
+ export declare const BackgroundColorWarningSubdued: TokenObj;
65
+ export declare const BackgroundColorWarningSubduedHover: TokenObj;
66
+ export declare const BackgroundColorWarningSubduedActive: TokenObj;
67
+ export declare const BackgroundColorWarningFaint: TokenObj;
68
+ export declare const BackgroundColorWarningFaintHover: TokenObj;
69
+ export declare const BackgroundColorWarningFaintActive: TokenObj;
70
+ export declare const BackgroundColorDisabled: TokenObj;
71
+ export declare const BackgroundColorInverted: TokenObj;
72
+ export declare const BackgroundColorInvertedHover: TokenObj;
73
+ export declare const BackgroundColorInvertedActive: TokenObj;
74
+ export declare const BackgroundColorInvertedStrong: TokenObj;
75
+ export declare const BackgroundColorInvertedStrongHover: TokenObj;
76
+ export declare const BackgroundColorInvertedStrongActive: TokenObj;
77
+ export declare const BorderRadiusNone: TokenObj;
78
+ export declare const BorderRadiusSmall: TokenObj;
79
+ export declare const BorderRadiusMedium: TokenObj;
80
+ export declare const BorderRadiusLarge: TokenObj;
81
+ export declare const BorderRadiusXlarge: TokenObj;
82
+ export declare const BorderRadiusCircular: TokenObj;
83
+ export declare const BorderWidthNone: TokenObj;
84
+ export declare const BorderWidthDefault: TokenObj;
85
+ export declare const BorderWidthStrong: TokenObj;
86
+ export declare const BorderColorDefault: TokenObj;
87
+ export declare const BorderColorSubdued: TokenObj;
88
+ export declare const BorderColorStrong: TokenObj;
89
+ export declare const BorderColorPrimary: TokenObj;
90
+ export declare const BorderColorSuccess: TokenObj;
91
+ export declare const BorderColorWarning: TokenObj;
92
+ export declare const BorderColorDanger: TokenObj;
93
+ export declare const ChartMonochrome01FillColor: TokenObj;
94
+ export declare const ChartMonochrome01FillPattern: TokenObj;
95
+ export declare const ChartMonochrome01StrokeColor: TokenObj;
96
+ export declare const ChartMonochrome01StrokeStyle: TokenObj;
97
+ export declare const ChartMonochrome02FillColor: TokenObj;
98
+ export declare const ChartMonochrome02FillPattern: TokenObj;
99
+ export declare const ChartMonochrome02StrokeColor: TokenObj;
100
+ export declare const ChartMonochrome02StrokeStyle: TokenObj;
101
+ export declare const ChartMonochrome03FillColor: TokenObj;
102
+ export declare const ChartMonochrome03FillPattern: TokenObj;
103
+ export declare const ChartMonochrome03StrokeColor: TokenObj;
104
+ export declare const ChartMonochrome03StrokeStyle: TokenObj;
105
+ export declare const ChartMonochrome04FillColor: TokenObj;
106
+ export declare const ChartMonochrome04FillPattern: TokenObj;
107
+ export declare const ChartMonochrome04StrokeColor: TokenObj;
108
+ export declare const ChartMonochrome04StrokeStyle: TokenObj;
109
+ export declare const ChartCategorical10FillColor: TokenObj;
110
+ export declare const ChartCategorical10FillPattern: TokenObj;
111
+ export declare const ChartCategorical10StrokeColor: TokenObj;
112
+ export declare const ChartCategorical10StrokeStyle: TokenObj;
113
+ export declare const ChartCategorical01FillColor: TokenObj;
114
+ export declare const ChartCategorical01FillPattern: TokenObj;
115
+ export declare const ChartCategorical01StrokeColor: TokenObj;
116
+ export declare const ChartCategorical01StrokeStyle: TokenObj;
117
+ export declare const ChartCategorical02FillColor: TokenObj;
118
+ export declare const ChartCategorical02FillPattern: TokenObj;
119
+ export declare const ChartCategorical02StrokeColor: TokenObj;
120
+ export declare const ChartCategorical02StrokeStyle: TokenObj;
121
+ export declare const ChartCategorical03FillColor: TokenObj;
122
+ export declare const ChartCategorical03FillPattern: TokenObj;
123
+ export declare const ChartCategorical03StrokeColor: TokenObj;
124
+ export declare const ChartCategorical03StrokeStyle: TokenObj;
125
+ export declare const ChartCategorical04FillColor: TokenObj;
126
+ export declare const ChartCategorical04FillPattern: TokenObj;
127
+ export declare const ChartCategorical04StrokeColor: TokenObj;
128
+ export declare const ChartCategorical04StrokeStyle: TokenObj;
129
+ export declare const ChartCategorical05FillColor: TokenObj;
130
+ export declare const ChartCategorical05FillPattern: TokenObj;
131
+ export declare const ChartCategorical05StrokeColor: TokenObj;
132
+ export declare const ChartCategorical05StrokeStyle: TokenObj;
133
+ export declare const ChartCategorical06FillColor: TokenObj;
134
+ export declare const ChartCategorical06FillPattern: TokenObj;
135
+ export declare const ChartCategorical06StrokeColor: TokenObj;
136
+ export declare const ChartCategorical06StrokeStyle: TokenObj;
137
+ export declare const ChartCategorical07FillColor: TokenObj;
138
+ export declare const ChartCategorical07FillPattern: TokenObj;
139
+ export declare const ChartCategorical07StrokeColor: TokenObj;
140
+ export declare const ChartCategorical07StrokeStyle: TokenObj;
141
+ export declare const ChartCategorical08FillColor: TokenObj;
142
+ export declare const ChartCategorical08FillPattern: TokenObj;
143
+ export declare const ChartCategorical08StrokeColor: TokenObj;
144
+ export declare const ChartCategorical08StrokeStyle: TokenObj;
145
+ export declare const ChartCategorical09FillColor: TokenObj;
146
+ export declare const ChartCategorical09FillPattern: TokenObj;
147
+ export declare const ChartCategorical09StrokeColor: TokenObj;
148
+ export declare const ChartCategorical09StrokeStyle: TokenObj;
149
+ export declare const ChartStatusSuccessFillColor: TokenObj;
150
+ export declare const ChartStatusSuccessFillPattern: TokenObj;
151
+ export declare const ChartStatusSuccessStrokeColor: TokenObj;
152
+ export declare const ChartStatusSuccessStrokeStyle: TokenObj;
153
+ export declare const ChartStatusWarningFillColor: TokenObj;
154
+ export declare const ChartStatusWarningFillPattern: TokenObj;
155
+ export declare const ChartStatusWarningStrokeColor: TokenObj;
156
+ export declare const ChartStatusWarningStrokeStyle: TokenObj;
157
+ export declare const ChartStatusDangerFillColor: TokenObj;
158
+ export declare const ChartStatusDangerFillPattern: TokenObj;
159
+ export declare const ChartStatusDangerStrokeColor: TokenObj;
160
+ export declare const ChartStatusDangerStrokeStyle: TokenObj;
161
+ export declare const ChartStatusNeutralFillColor: TokenObj;
162
+ export declare const ChartStatusNeutralStrokeColor: TokenObj;
163
+ export declare const ChartStatusNeutralStrokeStyle: TokenObj;
164
+ export declare const FocusRingColorDefault: TokenObj;
165
+ export declare const FocusRingColorDanger: TokenObj;
166
+ export declare const FocusRingWidth: TokenObj;
167
+ export declare const FocusRingStyle: TokenObj;
168
+ export declare const ForegroundColorDefault: TokenObj;
169
+ export declare const ForegroundColorDefaultHover: TokenObj;
170
+ export declare const ForegroundColorDefaultActive: TokenObj;
171
+ export declare const ForegroundColorSubdued: TokenObj;
172
+ export declare const ForegroundColorSubduedHover: TokenObj;
173
+ export declare const ForegroundColorSubduedActive: TokenObj;
174
+ export declare const ForegroundColorPrimary: TokenObj;
175
+ export declare const ForegroundColorPrimaryHover: TokenObj;
176
+ export declare const ForegroundColorPrimaryActive: TokenObj;
177
+ export declare const ForegroundColorDanger: TokenObj;
178
+ export declare const ForegroundColorDangerHover: TokenObj;
179
+ export declare const ForegroundColorDangerActive: TokenObj;
180
+ export declare const ForegroundColorInverted: TokenObj;
181
+ export declare const ForegroundColorOnPrimary: TokenObj;
182
+ export declare const ForegroundColorOnPrimaryHover: TokenObj;
183
+ export declare const ForegroundColorOnPrimaryActive: TokenObj;
184
+ export declare const ForegroundColorOnSuccess: TokenObj;
185
+ export declare const ForegroundColorOnDanger: TokenObj;
186
+ export declare const ForegroundColorOnDangerSubdued: TokenObj;
187
+ export declare const ForegroundColorOnDangerSubduedHover: TokenObj;
188
+ export declare const ForegroundColorOnDangerSubduedActive: TokenObj;
189
+ export declare const ForegroundColorOnDangerHover: TokenObj;
190
+ export declare const ForegroundColorOnDangerActive: TokenObj;
191
+ export declare const ForegroundColorOnWarning: TokenObj;
192
+ export declare const GradientPrimary: TokenObj;
193
+ export declare const OpacityDisabled: TokenObj;
194
+ export declare const OpacityDisabledStrong: TokenObj;
195
+ export declare const OpacityDisabledStronger: TokenObj;
196
+ export declare const ShadowColorDefault: TokenObj;
197
+ export declare const ShadowColorStrong: TokenObj;
198
+ export declare const ShadowSizeFlat: TokenObj;
199
+ export declare const ShadowSizeFloat: TokenObj;
200
+ export declare const ShadowSizeOverlay: TokenObj;
201
+ export declare const TypographyParagraphSizeXsmall: TokenObj;
202
+ export declare const TypographyParagraphSizeSmall: TokenObj;
203
+ export declare const TypographyParagraphSizeDefault: TokenObj;
204
+ export declare const TypographyParagraphSizeLarge: TokenObj;
205
+ export declare const TypographyParagraphSizeXlarge: TokenObj;
206
+ export declare const TypographyParagraphFontWeight: TokenObj;
207
+ export declare const TypographyParagraphFontFamily: TokenObj;
208
+ export declare const TypographyHeadingSizeXsmall: TokenObj;
209
+ export declare const TypographyHeadingSizeSmall: TokenObj;
210
+ export declare const TypographyHeadingSizeDefault: TokenObj;
211
+ export declare const TypographyHeadingSizeLarge: TokenObj;
212
+ export declare const TypographyHeadingSizeXlarge: TokenObj;
213
+ export declare const TypographyHeadingFontWeight: TokenObj;
214
+ export declare const TypographyHeadingFontFamily: TokenObj;
215
+ export declare const TypographyLabelSizeXsmall: TokenObj;
216
+ export declare const TypographyLabelSizeSmall: TokenObj;
217
+ export declare const TypographyLabelSizeDefault: TokenObj;
218
+ export declare const TypographyLabelSizeLarge: TokenObj;
219
+ export declare const TypographyLabelSizeXlarge: TokenObj;
220
+ export declare const TypographyLabelFontWeight: TokenObj;
221
+ export declare const TypographyLabelFontFamily: TokenObj;