@conveyorhq/arrow-ds 2.0.0-beta.7 → 2.0.0-beta.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 (181) hide show
  1. package/package.json +15 -14
  2. package/public/components/Accordion/Accordion.js +8 -10
  3. package/public/components/Avatar/Avatar.js +20 -19
  4. package/public/components/Button/Button.js +2 -2
  5. package/public/components/ConveyorLogo/ConveyorLogo.js +6 -6
  6. package/public/components/Drawer/Drawer.js +7 -7
  7. package/public/components/Frame/Frame.d.ts +1 -1
  8. package/public/components/Icon/Icon.d.ts +1 -0
  9. package/public/components/Icon/Icon.js +3 -1
  10. package/public/components/MenuRenderer/MenuRenderer.js +4 -7
  11. package/public/components/Modal/Modal.js +1 -1
  12. package/public/components/OptionButton/OptionButton.js +18 -13
  13. package/public/components/Select/Select.js +4 -4
  14. package/public/components/Select/SelectPopover.js +6 -6
  15. package/public/components/Select/index.d.ts +2 -0
  16. package/public/components/Select/index.js +3 -0
  17. package/public/components/Select/theme.js +22 -22
  18. package/public/components/Svg/Svg.d.ts +3 -3
  19. package/public/components/Svg/Svg.js +1 -2
  20. package/public/components/Tooltip/Tooltip.js +11 -19
  21. package/public/components/VisuallyHidden/VisuallyHidden.d.ts +2 -1
  22. package/public/components/VisuallyHidden/VisuallyHidden.js +3 -5
  23. package/public/css/styles.css +139 -59
  24. package/public/css/styles.min.css +1 -1
  25. package/public/css/styles.min.css.map +1 -1
  26. package/public/hooks/index.d.ts +3 -0
  27. package/public/hooks/index.js +7 -1
  28. package/public/hooks/useMatchMedia.d.ts +1 -0
  29. package/public/hooks/useMatchMedia.js +27 -0
  30. package/public/hooks/usePrefersReducedMotion.d.ts +1 -0
  31. package/public/hooks/usePrefersReducedMotion.js +9 -0
  32. package/public/hooks/useScreenOrientation.d.ts +1 -0
  33. package/public/hooks/useScreenOrientation.js +24 -0
  34. package/public/{style-dictionary → src/style-dictionary}/dist/tokens.css +1 -0
  35. package/public/src/style-dictionary/dist/tokens.d.ts +428 -0
  36. package/public/src/style-dictionary/dist/tokens.js +428 -0
  37. package/public/src/style-dictionary/dist/tokens.module.js +428 -0
  38. package/public/src/style-dictionary/tailwind.config.js +87 -0
  39. package/public/storybook-components/EnumTable.js +2 -1
  40. package/public/storybook-components/Story.d.ts +2 -1
  41. package/public/storybook-components/Story.js +4 -1
  42. package/public/style-dictionary/dist/tokens.d.ts +428 -422
  43. package/public/style-dictionary/dist/tokens.js +415 -416
  44. package/public/style-dictionary/dist/tokens.module.d.ts +431 -0
  45. package/public/style-dictionary/dist/tokens.module.js +412 -415
  46. package/public/style-dictionary/src/border-radius.d.ts +31 -0
  47. package/public/style-dictionary/src/border-radius.js +10 -9
  48. package/public/style-dictionary/src/border-width.d.ts +21 -0
  49. package/public/style-dictionary/src/border-width.js +9 -8
  50. package/public/style-dictionary/src/color.d.ts +249 -0
  51. package/public/style-dictionary/src/color.js +97 -95
  52. package/public/style-dictionary/src/font-size.d.ts +45 -0
  53. package/public/style-dictionary/src/font-size.js +14 -13
  54. package/public/style-dictionary/src/font-weight.d.ts +13 -0
  55. package/public/style-dictionary/src/font-weight.js +6 -5
  56. package/public/style-dictionary/src/height.d.ts +215 -0
  57. package/public/style-dictionary/src/height.js +10 -10
  58. package/public/style-dictionary/src/leading.d.ts +17 -0
  59. package/public/style-dictionary/src/leading.js +7 -6
  60. package/public/style-dictionary/src/screen-width.d.ts +17 -0
  61. package/public/style-dictionary/src/screen-width.js +7 -6
  62. package/public/style-dictionary/src/shadow.d.ts +63 -0
  63. package/public/style-dictionary/src/shadow.js +19 -18
  64. package/public/style-dictionary/src/spacing.d.ts +197 -0
  65. package/public/style-dictionary/src/spacing.js +68 -67
  66. package/public/style-dictionary/src/tracking.d.ts +13 -0
  67. package/public/style-dictionary/src/tracking.js +6 -5
  68. package/public/style-dictionary/src/type.d.ts +13 -0
  69. package/public/style-dictionary/src/type.js +32 -31
  70. package/public/style-dictionary/src/width.d.ts +287 -0
  71. package/public/style-dictionary/src/width.js +29 -29
  72. package/public/style-dictionary/src/z-index.d.ts +53 -0
  73. package/public/style-dictionary/src/z-index.js +20 -19
  74. package/public/style-dictionary/tailwind.config.d.ts +392 -0
  75. package/public/style-dictionary/tailwind.config.js +51 -72
  76. package/src/components/Accordion/Accordion.tsx +39 -27
  77. package/src/components/Avatar/Avatar.tsx +20 -19
  78. package/src/components/Button/Button.tsx +3 -3
  79. package/src/components/Button/index.css +12 -1
  80. package/src/components/Card/Card.story.mdx +45 -37
  81. package/src/components/ConveyorLogo/ConveyorLogo.tsx +6 -6
  82. package/src/components/Drawer/Drawer.tsx +1 -1
  83. package/src/components/Frame/Frame.story.mdx +140 -5
  84. package/src/components/Frame/Frame.tsx +1 -1
  85. package/src/components/Frame/index.css +8 -13
  86. package/src/components/Icon/Icon.tsx +3 -0
  87. package/src/components/MenuRenderer/MenuRenderer.tsx +7 -9
  88. package/src/components/Modal/Modal.tsx +1 -1
  89. package/src/components/Modal/index.css +8 -3
  90. package/src/components/OptionButton/OptionButton.story.mdx +91 -36
  91. package/src/components/OptionButton/OptionButton.tsx +19 -18
  92. package/src/components/OptionButton/index.css +13 -0
  93. package/src/components/Overlay/Overlay.story.mdx +26 -0
  94. package/src/components/Select/Select.tsx +4 -4
  95. package/src/components/Select/SelectPopover.tsx +6 -6
  96. package/src/components/Select/index.ts +14 -0
  97. package/src/components/Select/theme.ts +22 -22
  98. package/src/components/Svg/Svg.story.mdx +36 -0
  99. package/src/components/Svg/Svg.tsx +6 -4
  100. package/src/components/Text/Text.story.mdx +34 -0
  101. package/src/components/Tooltip/Tooltip.story.mdx +21 -0
  102. package/src/components/Tooltip/Tooltip.tsx +23 -27
  103. package/src/components/Tooltip/index.css +31 -0
  104. package/src/components/VisuallyHidden/VisuallyHidden.story.mdx +54 -0
  105. package/src/components/VisuallyHidden/VisuallyHidden.tsx +10 -5
  106. package/src/components/VisuallyHidden/index.css +3 -0
  107. package/src/css/components.css +2 -0
  108. package/src/docs/Colors.story.mdx +13 -13
  109. package/src/docs/Spacing.story.mdx +4 -20
  110. package/src/docs/Tokens.story.mdx +230 -0
  111. package/src/docs/Typography.story.mdx +17 -94
  112. package/src/docs/hooks/useDisclosureHook.story.mdx +58 -0
  113. package/src/docs/hooks/useKeyPressHook.story.mdx +54 -0
  114. package/src/docs/hooks/useMatchMediaHook.story.mdx +42 -0
  115. package/src/docs/hooks/useOutsideClickHook.story.mdx +56 -0
  116. package/src/docs/hooks/usePrefersReducedMotion.story.mdx +61 -0
  117. package/src/docs/hooks/useScreenOrientationHook.story.mdx +56 -0
  118. package/src/docs/hooks/useStepHook.story.mdx +102 -0
  119. package/src/hooks/index.ts +3 -0
  120. package/src/hooks/useMatchMedia.ts +40 -0
  121. package/src/hooks/usePrefersReducedMotion.ts +9 -0
  122. package/src/hooks/useScreenOrientation.ts +27 -0
  123. package/src/storybook-components/EnumTable.tsx +3 -2
  124. package/src/storybook-components/Story.tsx +13 -1
  125. package/src/style-dictionary/dist/tokens.css +378 -0
  126. package/src/style-dictionary/dist/tokens.d.ts +428 -0
  127. package/src/style-dictionary/dist/tokens.js +428 -0
  128. package/src/style-dictionary/dist/tokens.module.js +428 -0
  129. package/src/style-dictionary/src/border-radius.js +11 -0
  130. package/src/style-dictionary/src/border-width.js +10 -0
  131. package/src/style-dictionary/src/color.js +98 -0
  132. package/src/style-dictionary/src/font-size.js +15 -0
  133. package/src/style-dictionary/src/font-weight.js +7 -0
  134. package/src/style-dictionary/src/height.js +13 -0
  135. package/src/style-dictionary/src/leading.js +8 -0
  136. package/src/style-dictionary/src/screen-width.js +8 -0
  137. package/src/style-dictionary/src/shadow.js +19 -0
  138. package/src/style-dictionary/src/spacing.js +69 -0
  139. package/src/style-dictionary/src/tracking.js +7 -0
  140. package/src/style-dictionary/src/type.js +34 -0
  141. package/src/style-dictionary/src/width.js +32 -0
  142. package/src/style-dictionary/src/z-index.js +21 -0
  143. package/src/style-dictionary/tailwind.config.js +87 -0
  144. package/src/tokens/borders.ts +6 -0
  145. package/src/tokens/box-shadow.ts +3 -0
  146. package/src/tokens/colors.ts +6 -0
  147. package/src/tokens/font-family.ts +3 -0
  148. package/src/tokens/font-size.ts +3 -0
  149. package/src/tokens/font-weight.ts +3 -0
  150. package/src/tokens/height.ts +3 -0
  151. package/src/tokens/index.ts +3 -2
  152. package/src/tokens/letter-spacing.ts +3 -0
  153. package/src/tokens/line-height.ts +3 -0
  154. package/src/tokens/margin.ts +3 -0
  155. package/src/tokens/padding.ts +3 -0
  156. package/src/tokens/screens.ts +3 -0
  157. package/src/tokens/sizing-scale.ts +6 -0
  158. package/src/tokens/width.ts +9 -0
  159. package/src/tokens/will-change.ts +3 -0
  160. package/src/tokens/z-index.ts +3 -0
  161. package/src/types/index.ts +3 -0
  162. package/public/components/Overlay/Overlay.story.d.ts +0 -1
  163. package/public/components/Overlay/Overlay.story.js +0 -12
  164. package/public/components/Svg/Svg.story.d.ts +0 -1
  165. package/public/components/Svg/Svg.story.js +0 -14
  166. package/public/components/Text/Text.story.d.ts +0 -1
  167. package/public/components/Text/Text.story.js +0 -31
  168. package/public/components/VisuallyHidden/VisuallyHidden.story.d.ts +0 -1
  169. package/public/components/VisuallyHidden/VisuallyHidden.story.js +0 -36
  170. package/public/components/useStep/ExampleSetupWizard.d.ts +0 -4
  171. package/public/components/useStep/ExampleSetupWizard.js +0 -33
  172. package/src/components/Overlay/Overlay.md +0 -14
  173. package/src/components/Overlay/Overlay.story.tsx +0 -12
  174. package/src/components/Svg/Svg.md +0 -14
  175. package/src/components/Svg/Svg.story.tsx +0 -15
  176. package/src/components/Text/Text.md +0 -14
  177. package/src/components/Text/Text.story.tsx +0 -12
  178. package/src/components/VisuallyHidden/VisuallyHidden.md +0 -23
  179. package/src/components/VisuallyHidden/VisuallyHidden.story.tsx +0 -19
  180. package/src/components/useStep/ExampleSetupWizard.tsx +0 -63
  181. package/src/components/useStep/useStep.story.mdx +0 -76
@@ -1,5 +1,8 @@
1
1
  export { useCopyToClipboard } from "./useCopyToClipboard";
2
2
  export { useDisclosure } from "./useDisclosure";
3
3
  export { useKeyPress } from "./useKeyPress";
4
+ export { useMatchMedia } from "./useMatchMedia";
4
5
  export { useOutsideClick } from "./useOutsideClick";
6
+ export { usePrefersReducedMotion } from "./usePrefersReducedMotion";
7
+ export { useScreenOrientation } from "./useScreenOrientation";
5
8
  export { useStep } from "./useStep";
@@ -1,13 +1,19 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.useStep = exports.useOutsideClick = exports.useKeyPress = exports.useDisclosure = exports.useCopyToClipboard = void 0;
3
+ exports.useStep = exports.useScreenOrientation = exports.usePrefersReducedMotion = exports.useOutsideClick = exports.useMatchMedia = exports.useKeyPress = exports.useDisclosure = exports.useCopyToClipboard = void 0;
4
4
  var useCopyToClipboard_1 = require("./useCopyToClipboard");
5
5
  Object.defineProperty(exports, "useCopyToClipboard", { enumerable: true, get: function () { return useCopyToClipboard_1.useCopyToClipboard; } });
6
6
  var useDisclosure_1 = require("./useDisclosure");
7
7
  Object.defineProperty(exports, "useDisclosure", { enumerable: true, get: function () { return useDisclosure_1.useDisclosure; } });
8
8
  var useKeyPress_1 = require("./useKeyPress");
9
9
  Object.defineProperty(exports, "useKeyPress", { enumerable: true, get: function () { return useKeyPress_1.useKeyPress; } });
10
+ var useMatchMedia_1 = require("./useMatchMedia");
11
+ Object.defineProperty(exports, "useMatchMedia", { enumerable: true, get: function () { return useMatchMedia_1.useMatchMedia; } });
10
12
  var useOutsideClick_1 = require("./useOutsideClick");
11
13
  Object.defineProperty(exports, "useOutsideClick", { enumerable: true, get: function () { return useOutsideClick_1.useOutsideClick; } });
14
+ var usePrefersReducedMotion_1 = require("./usePrefersReducedMotion");
15
+ Object.defineProperty(exports, "usePrefersReducedMotion", { enumerable: true, get: function () { return usePrefersReducedMotion_1.usePrefersReducedMotion; } });
16
+ var useScreenOrientation_1 = require("./useScreenOrientation");
17
+ Object.defineProperty(exports, "useScreenOrientation", { enumerable: true, get: function () { return useScreenOrientation_1.useScreenOrientation; } });
12
18
  var useStep_1 = require("./useStep");
13
19
  Object.defineProperty(exports, "useStep", { enumerable: true, get: function () { return useStep_1.useStep; } });
@@ -0,0 +1 @@
1
+ export declare function useMatchMedia(query: string): boolean;
@@ -0,0 +1,27 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.useMatchMedia = void 0;
4
+ const react_1 = require("react");
5
+ function useMatchMedia(query) {
6
+ const getMatches = (q) => {
7
+ if (typeof window !== "undefined") {
8
+ return window.matchMedia(q).matches;
9
+ }
10
+ return false;
11
+ };
12
+ const [matches, setMatches] = react_1.useState(getMatches(query));
13
+ react_1.useLayoutEffect(() => {
14
+ const mediaQueryList = window.matchMedia(query);
15
+ const onChange = (event) => setMatches(event.matches);
16
+ if (mediaQueryList) {
17
+ mediaQueryList.addListener(onChange);
18
+ }
19
+ return () => {
20
+ if (mediaQueryList) {
21
+ mediaQueryList.removeListener(onChange);
22
+ }
23
+ };
24
+ }, [query]);
25
+ return matches;
26
+ }
27
+ exports.useMatchMedia = useMatchMedia;
@@ -0,0 +1 @@
1
+ export declare function usePrefersReducedMotion(): boolean;
@@ -0,0 +1,9 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.usePrefersReducedMotion = void 0;
4
+ const useMatchMedia_1 = require("./useMatchMedia");
5
+ function usePrefersReducedMotion() {
6
+ const hasNoPreference = useMatchMedia_1.useMatchMedia("(prefers-reduced-motion: no-preference)");
7
+ return !hasNoPreference;
8
+ }
9
+ exports.usePrefersReducedMotion = usePrefersReducedMotion;
@@ -0,0 +1 @@
1
+ export declare const useScreenOrientation: () => "landscape-primary" | "landscape-secondary" | "portrait-primary" | "portrait-secondary" | undefined;
@@ -0,0 +1,24 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.useScreenOrientation = void 0;
4
+ const react_1 = require("react");
5
+ const useScreenOrientation = () => {
6
+ const getOrientation = () => {
7
+ if (typeof window !== "undefined") {
8
+ return window.screen.orientation.type;
9
+ }
10
+ return undefined;
11
+ };
12
+ const [orientation, setOrientation] = react_1.useState(getOrientation());
13
+ const updateOrientation = react_1.useCallback(() => {
14
+ setOrientation(getOrientation());
15
+ }, []);
16
+ react_1.useEffect(() => {
17
+ window.addEventListener("orientationchange", updateOrientation);
18
+ return () => {
19
+ window.removeEventListener("orientationchange", updateOrientation);
20
+ };
21
+ }, [updateOrientation]);
22
+ return orientation;
23
+ };
24
+ exports.useScreenOrientation = useScreenOrientation;
@@ -81,6 +81,7 @@
81
81
  --color-purple-600: #604194;
82
82
  --color-white: #ffffff;
83
83
  --color-black: #000b11;
84
+ --color-brand-black: #132333;
84
85
  --color-screen: rgba(0, 0, 0, 0.25);
85
86
  --color-success: #54af68;
86
87
  --color-failure: #f25d54;
@@ -0,0 +1,428 @@
1
+ /**
2
+ * This tokens file was automatically generated by Style Dictionary
3
+ * Please do not edit this file directly; token definitions can be found in style-dictionary.config.js
4
+ */
5
+
6
+ export declare const tokens: {
7
+ borderRadius: {
8
+ none: string;
9
+ px: string;
10
+ sm: string;
11
+ md: string;
12
+ "DEFAULT": string;
13
+ lg: string;
14
+ full: string;
15
+ };
16
+ borderWidth: {
17
+ 0: string;
18
+ 1: string;
19
+ 2: string;
20
+ 4: string;
21
+ 8: string;
22
+ "DEFAULT": string;
23
+ };
24
+ color: {
25
+ lighten: {
26
+ 100: string;
27
+ 200: string;
28
+ 300: string;
29
+ };
30
+ gray: {
31
+ 100: string;
32
+ 200: string;
33
+ 300: string;
34
+ 400: string;
35
+ 500: string;
36
+ 600: string;
37
+ 700: string;
38
+ 800: string;
39
+ 900: string;
40
+ };
41
+ brandGreen: {
42
+ 200: string;
43
+ 300: string;
44
+ 400: string;
45
+ 500: string;
46
+ 600: string;
47
+ };
48
+ blue: {
49
+ 0: string;
50
+ 100: string;
51
+ 200: string;
52
+ 300: string;
53
+ 400: string;
54
+ 500: string;
55
+ 600: string;
56
+ };
57
+ green: {
58
+ 100: string;
59
+ 200: string;
60
+ 300: string;
61
+ 400: string;
62
+ 500: string;
63
+ 600: string;
64
+ };
65
+ gold: {
66
+ 100: string;
67
+ 200: string;
68
+ 300: string;
69
+ 400: string;
70
+ 500: string;
71
+ 600: string;
72
+ };
73
+ red: {
74
+ 100: string;
75
+ 200: string;
76
+ 300: string;
77
+ 400: string;
78
+ 500: string;
79
+ 600: string;
80
+ };
81
+ orange: {
82
+ 200: string;
83
+ 300: string;
84
+ 400: string;
85
+ 500: string;
86
+ 600: string;
87
+ };
88
+ pink: {
89
+ 200: string;
90
+ 300: string;
91
+ 400: string;
92
+ 500: string;
93
+ 600: string;
94
+ };
95
+ cyan: {
96
+ 200: string;
97
+ 300: string;
98
+ 400: string;
99
+ 500: string;
100
+ 600: string;
101
+ };
102
+ purple: {
103
+ 200: string;
104
+ 300: string;
105
+ 400: string;
106
+ 500: string;
107
+ 600: string;
108
+ };
109
+ white: string;
110
+ black: string;
111
+ brandBlack: string;
112
+ screen: string;
113
+ success: string;
114
+ failure: string;
115
+ caution: string;
116
+ border: string;
117
+ placeholder: string;
118
+ link: string;
119
+ };
120
+ fontSize: {
121
+ h1: string;
122
+ h2: string;
123
+ h3: string;
124
+ h4: string;
125
+ h5: string;
126
+ h6: string;
127
+ bodySm: string;
128
+ body: string;
129
+ bodyLg: string;
130
+ icon: string;
131
+ iconSm: string;
132
+ };
133
+ fontWeight: {
134
+ regular: number;
135
+ medium: number;
136
+ bold: number;
137
+ };
138
+ height: {
139
+ 0: string;
140
+ 1: string;
141
+ 2: string;
142
+ 3: string;
143
+ 4: string;
144
+ 5: string;
145
+ 6: string;
146
+ 7: string;
147
+ 8: string;
148
+ 9: string;
149
+ 10: string;
150
+ 11: string;
151
+ 12: string;
152
+ 13: string;
153
+ 14: string;
154
+ 15: string;
155
+ 16: string;
156
+ 17: string;
157
+ 18: string;
158
+ 19: string;
159
+ 20: string;
160
+ 21: string;
161
+ 22: string;
162
+ 23: string;
163
+ 24: string;
164
+ 25: string;
165
+ 26: string;
166
+ 27: string;
167
+ 28: string;
168
+ 29: string;
169
+ 30: string;
170
+ 31: string;
171
+ 32: string;
172
+ 33: string;
173
+ 34: string;
174
+ 35: string;
175
+ 36: string;
176
+ 37: string;
177
+ 38: string;
178
+ 39: string;
179
+ 40: string;
180
+ 41: string;
181
+ 42: string;
182
+ 43: string;
183
+ 44: string;
184
+ 45: string;
185
+ 46: string;
186
+ 47: string;
187
+ 48: string;
188
+ 49: string;
189
+ 50: string;
190
+ 51: string;
191
+ 52: string;
192
+ 53: string;
193
+ 54: string;
194
+ 55: string;
195
+ 56: string;
196
+ 57: string;
197
+ 58: string;
198
+ 59: string;
199
+ 60: string;
200
+ 61: string;
201
+ 62: string;
202
+ 63: string;
203
+ 64: string;
204
+ auto: string;
205
+ px: string;
206
+ full: string;
207
+ screen: string;
208
+ appbar: string;
209
+ cell: string;
210
+ };
211
+ leading: {
212
+ none: number;
213
+ tight: number;
214
+ normal: number;
215
+ loose: number;
216
+ };
217
+ screenWidth: {
218
+ sm: string;
219
+ md: string;
220
+ lg: string;
221
+ xl: string;
222
+ };
223
+ shadow: {
224
+ "DEFAULT": string;
225
+ up: string;
226
+ md: string;
227
+ lg: string;
228
+ inner: string;
229
+ glow: string;
230
+ none: string;
231
+ focus: string;
232
+ focusInside: string;
233
+ focusBrand: string;
234
+ popover: string;
235
+ buttonPrimary: string;
236
+ buttonSecondary: string;
237
+ paper: string;
238
+ tile: string;
239
+ };
240
+ spacing: {
241
+ 0: string;
242
+ 1: string;
243
+ 2: string;
244
+ 3: string;
245
+ 4: string;
246
+ 5: string;
247
+ 6: string;
248
+ 7: string;
249
+ 8: string;
250
+ 9: string;
251
+ 10: string;
252
+ 11: string;
253
+ 12: string;
254
+ 13: string;
255
+ 14: string;
256
+ 15: string;
257
+ 16: string;
258
+ 17: string;
259
+ 18: string;
260
+ 19: string;
261
+ 20: string;
262
+ 21: string;
263
+ 22: string;
264
+ 23: string;
265
+ 24: string;
266
+ 25: string;
267
+ 26: string;
268
+ 27: string;
269
+ 28: string;
270
+ 29: string;
271
+ 30: string;
272
+ 31: string;
273
+ 32: string;
274
+ 33: string;
275
+ 34: string;
276
+ 35: string;
277
+ 36: string;
278
+ 37: string;
279
+ 38: string;
280
+ 39: string;
281
+ 40: string;
282
+ 41: string;
283
+ 42: string;
284
+ 43: string;
285
+ 44: string;
286
+ 45: string;
287
+ 46: string;
288
+ 47: string;
289
+ 48: string;
290
+ 49: string;
291
+ 50: string;
292
+ 51: string;
293
+ 52: string;
294
+ 53: string;
295
+ 54: string;
296
+ 55: string;
297
+ 56: string;
298
+ 57: string;
299
+ 58: string;
300
+ 59: string;
301
+ 60: string;
302
+ 61: string;
303
+ 62: string;
304
+ 63: string;
305
+ 64: string;
306
+ };
307
+ tracking: {
308
+ tight: string;
309
+ normal: string;
310
+ wide: string;
311
+ };
312
+ type: {
313
+ sans: string;
314
+ serif: string;
315
+ mono: string;
316
+ };
317
+ width: {
318
+ 0: string;
319
+ 1: string;
320
+ 2: string;
321
+ 3: string;
322
+ 4: string;
323
+ 5: string;
324
+ 6: string;
325
+ 7: string;
326
+ 8: string;
327
+ 9: string;
328
+ 10: string;
329
+ 11: string;
330
+ 12: string;
331
+ 13: string;
332
+ 14: string;
333
+ 15: string;
334
+ 16: string;
335
+ 17: string;
336
+ 18: string;
337
+ 19: string;
338
+ 20: string;
339
+ 21: string;
340
+ 22: string;
341
+ 23: string;
342
+ 24: string;
343
+ 25: string;
344
+ 26: string;
345
+ 27: string;
346
+ 28: string;
347
+ 29: string;
348
+ 30: string;
349
+ 31: string;
350
+ 32: string;
351
+ 33: string;
352
+ 34: string;
353
+ 35: string;
354
+ 36: string;
355
+ 37: string;
356
+ 38: string;
357
+ 39: string;
358
+ 40: string;
359
+ 41: string;
360
+ 42: string;
361
+ 43: string;
362
+ 44: string;
363
+ 45: string;
364
+ 46: string;
365
+ 47: string;
366
+ 48: string;
367
+ 49: string;
368
+ 50: string;
369
+ 51: string;
370
+ 52: string;
371
+ 53: string;
372
+ 54: string;
373
+ 55: string;
374
+ 56: string;
375
+ 57: string;
376
+ 58: string;
377
+ 59: string;
378
+ 60: string;
379
+ 61: string;
380
+ 62: string;
381
+ 63: string;
382
+ 64: string;
383
+ "1/2": string;
384
+ "1/3": string;
385
+ "2/3": string;
386
+ "1/4": string;
387
+ "3/4": string;
388
+ "1/5": string;
389
+ "2/5": string;
390
+ "3/5": string;
391
+ "4/5": string;
392
+ "1/6": string;
393
+ "5/6": string;
394
+ auto: string;
395
+ px: string;
396
+ full: string;
397
+ screen: string;
398
+ maxContent: string;
399
+ xs: string;
400
+ sm: string;
401
+ md: string;
402
+ lg: string;
403
+ xl: string;
404
+ "2xl": string;
405
+ "3xl": string;
406
+ "4xl": string;
407
+ "5xl": string;
408
+ };
409
+ zIndex: {
410
+ 0: number;
411
+ 10: number;
412
+ 20: number;
413
+ 30: number;
414
+ 40: number;
415
+ 50: number;
416
+ auto: string;
417
+ below: number;
418
+ default: number;
419
+ popup: number;
420
+ dialog: number;
421
+ dropdown: number;
422
+ overlay: number;
423
+ menu: number;
424
+ modal: number;
425
+ toast: number;
426
+ max: number;
427
+ };
428
+ };