@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
@@ -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 const tokens = {
7
+ borderRadius: {
8
+ none: "0",
9
+ px: "1px",
10
+ sm: "2px",
11
+ md: "3px",
12
+ "DEFAULT": "4px",
13
+ lg: "8px",
14
+ full: "9999px",
15
+ },
16
+ borderWidth: {
17
+ 0: "0",
18
+ 1: "1px",
19
+ 2: "2px",
20
+ 4: "4px",
21
+ 8: "8px",
22
+ "DEFAULT": "1px",
23
+ },
24
+ color: {
25
+ lighten: {
26
+ 100: "rgba(255, 255, 255, 0.04)",
27
+ 200: "rgba(255, 255, 255, 0.08)",
28
+ 300: "rgba(255, 255, 255, 0.12)",
29
+ },
30
+ gray: {
31
+ 100: "#f9fbfc",
32
+ 200: "#f4f7f9",
33
+ 300: "#edf3f7",
34
+ 400: "#dee7ee",
35
+ 500: "#b9c8d2",
36
+ 600: "#86a3b5",
37
+ 700: "#47687d",
38
+ 800: "#204156",
39
+ 900: "#001b28",
40
+ },
41
+ brandGreen: {
42
+ 200: "#7de5ca",
43
+ 300: "#5cd8b7",
44
+ 400: "#33c69f",
45
+ 500: "#20b08a",
46
+ 600: "#12926f",
47
+ },
48
+ blue: {
49
+ 0: "#e6f3ff",
50
+ 100: "#c2e2ff",
51
+ 200: "#76baf9",
52
+ 300: "#3e9ef5",
53
+ 400: "#0d7de4",
54
+ 500: "#0668ca",
55
+ 600: "#0052b1",
56
+ },
57
+ green: {
58
+ 100: "#e8f5ee",
59
+ 200: "#a1ddae",
60
+ 300: "#7bc88c",
61
+ 400: "#54af68",
62
+ 500: "#3c9f52",
63
+ 600: "#29853d",
64
+ },
65
+ gold: {
66
+ 100: "#fff4de",
67
+ 200: "#ffd883",
68
+ 300: "#ffcc5a",
69
+ 400: "#fdb515",
70
+ 500: "#f0a600",
71
+ 600: "#dc9801",
72
+ },
73
+ red: {
74
+ 100: "#fdeeee",
75
+ 200: "#ffa7a1",
76
+ 300: "#fa7d76",
77
+ 400: "#f25d54",
78
+ 500: "#e4473e",
79
+ 600: "#d93329",
80
+ },
81
+ orange: {
82
+ 200: "#ffc3a1",
83
+ 300: "#ffaa7a",
84
+ 400: "#f38f56",
85
+ 500: "#ed7b3b",
86
+ 600: "#e36823",
87
+ },
88
+ pink: {
89
+ 200: "#daccd7",
90
+ 300: "#d3b8cd",
91
+ 400: "#cca8c4",
92
+ 500: "#c297b9",
93
+ 600: "#b881ac",
94
+ },
95
+ cyan: {
96
+ 200: "#a1d8f1",
97
+ 300: "#7dc3e4",
98
+ 400: "#61accf",
99
+ 500: "#3e9ecb",
100
+ 600: "#2488b6",
101
+ },
102
+ purple: {
103
+ 200: "#c8b3e8",
104
+ 300: "#a68ad2",
105
+ 400: "#8969bd",
106
+ 500: "#7757ad",
107
+ 600: "#604194",
108
+ },
109
+ white: "#ffffff",
110
+ black: "#000b11",
111
+ brandBlack: "#132333",
112
+ screen: "rgba(0, 0, 0, 0.25)",
113
+ success: "#54af68",
114
+ failure: "#f25d54",
115
+ caution: "#fdb515",
116
+ border: "#dee7ee",
117
+ placeholder: "#86a3b5",
118
+ link: "#0d7de4",
119
+ },
120
+ fontSize: {
121
+ h1: "26px",
122
+ h2: "20px",
123
+ h3: "16px",
124
+ h4: "14px",
125
+ h5: "12px",
126
+ h6: "11px",
127
+ bodySm: "12px",
128
+ body: "14px",
129
+ bodyLg: "16px",
130
+ icon: "13px",
131
+ iconSm: "11px",
132
+ },
133
+ fontWeight: {
134
+ regular: 400,
135
+ medium: 500,
136
+ bold: 600,
137
+ },
138
+ height: {
139
+ 0: "0",
140
+ 1: "4px",
141
+ 2: "8px",
142
+ 3: "12px",
143
+ 4: "16px",
144
+ 5: "20px",
145
+ 6: "24px",
146
+ 7: "28px",
147
+ 8: "32px",
148
+ 9: "36px",
149
+ 10: "40px",
150
+ 11: "44px",
151
+ 12: "48px",
152
+ 13: "52px",
153
+ 14: "56px",
154
+ 15: "60px",
155
+ 16: "64px",
156
+ 17: "68px",
157
+ 18: "72px",
158
+ 19: "76px",
159
+ 20: "80px",
160
+ 21: "84px",
161
+ 22: "88px",
162
+ 23: "92px",
163
+ 24: "96px",
164
+ 25: "100px",
165
+ 26: "104px",
166
+ 27: "108px",
167
+ 28: "112px",
168
+ 29: "116px",
169
+ 30: "120px",
170
+ 31: "124px",
171
+ 32: "128px",
172
+ 33: "132px",
173
+ 34: "136px",
174
+ 35: "140px",
175
+ 36: "144px",
176
+ 37: "148px",
177
+ 38: "152px",
178
+ 39: "156px",
179
+ 40: "160px",
180
+ 41: "164px",
181
+ 42: "168px",
182
+ 43: "172px",
183
+ 44: "176px",
184
+ 45: "180px",
185
+ 46: "184px",
186
+ 47: "188px",
187
+ 48: "192px",
188
+ 49: "196px",
189
+ 50: "200px",
190
+ 51: "204px",
191
+ 52: "208px",
192
+ 53: "212px",
193
+ 54: "216px",
194
+ 55: "220px",
195
+ 56: "224px",
196
+ 57: "228px",
197
+ 58: "232px",
198
+ 59: "236px",
199
+ 60: "240px",
200
+ 61: "244px",
201
+ 62: "248px",
202
+ 63: "252px",
203
+ 64: "256px",
204
+ auto: "auto",
205
+ px: "1px",
206
+ full: "100%",
207
+ screen: "100vh",
208
+ appbar: "48px",
209
+ cell: "34px",
210
+ },
211
+ leading: {
212
+ none: 1,
213
+ tight: 1.25,
214
+ normal: 1.5,
215
+ loose: 2,
216
+ },
217
+ screenWidth: {
218
+ sm: "576px",
219
+ md: "768px",
220
+ lg: "992px",
221
+ xl: "1200px",
222
+ },
223
+ shadow: {
224
+ "DEFAULT": "0 2px 4px 0 rgba(0,0,0,0.10)",
225
+ up: "0 -2px 4px 0 rgba(0,0,0,0.10)",
226
+ md: "0 4px 8px 0 rgba(0,0,0,0.12), 0 2px 4px 0 rgba(0,0,0,0.08)",
227
+ lg: "0 15px 30px 0 rgba(0,0,0,0.11), 0 5px 15px 0 rgba(0,0,0,0.08)",
228
+ inner: "inset 0 2px 4px 0 rgba(0,0,0,0.06)",
229
+ glow: "rgba(7,114,239,0.2) 0 0 1rem",
230
+ none: "none",
231
+ focus: "rgba(7, 114, 239, 0.2) 0 0 1px 3px",
232
+ focusInside: "rgba(7, 114, 239, 0.2) 0 0 1px 3px inset",
233
+ focusBrand: "rgba(125, 229, 202, 0.2) 0 0 1px 3px",
234
+ popover: "0 0 3px rgba(0, 0, 0, 0.1), 0 10px 20px rgba(0, 0, 0, 0.1)",
235
+ buttonPrimary: "0 4px 8px rgba(255, 255, 255, 0.1) inset, 0 2px 5px rgba(0, 0, 0, 0.1)",
236
+ buttonSecondary: "0 1px 3px rgba(0, 0, 0, 0.05)",
237
+ paper: "0 0 3px rgba(0,0,0,0.1), 9px 9px rgba(0,0,0,0.04)",
238
+ tile: "0 10px 20px rgba(0, 0, 0, 0.1), 0 0 3px rgba(0, 0, 0, 0.1)",
239
+ },
240
+ spacing: {
241
+ 0: "0",
242
+ 1: "4px",
243
+ 2: "8px",
244
+ 3: "12px",
245
+ 4: "16px",
246
+ 5: "20px",
247
+ 6: "24px",
248
+ 7: "28px",
249
+ 8: "32px",
250
+ 9: "36px",
251
+ 10: "40px",
252
+ 11: "44px",
253
+ 12: "48px",
254
+ 13: "52px",
255
+ 14: "56px",
256
+ 15: "60px",
257
+ 16: "64px",
258
+ 17: "68px",
259
+ 18: "72px",
260
+ 19: "76px",
261
+ 20: "80px",
262
+ 21: "84px",
263
+ 22: "88px",
264
+ 23: "92px",
265
+ 24: "96px",
266
+ 25: "100px",
267
+ 26: "104px",
268
+ 27: "108px",
269
+ 28: "112px",
270
+ 29: "116px",
271
+ 30: "120px",
272
+ 31: "124px",
273
+ 32: "128px",
274
+ 33: "132px",
275
+ 34: "136px",
276
+ 35: "140px",
277
+ 36: "144px",
278
+ 37: "148px",
279
+ 38: "152px",
280
+ 39: "156px",
281
+ 40: "160px",
282
+ 41: "164px",
283
+ 42: "168px",
284
+ 43: "172px",
285
+ 44: "176px",
286
+ 45: "180px",
287
+ 46: "184px",
288
+ 47: "188px",
289
+ 48: "192px",
290
+ 49: "196px",
291
+ 50: "200px",
292
+ 51: "204px",
293
+ 52: "208px",
294
+ 53: "212px",
295
+ 54: "216px",
296
+ 55: "220px",
297
+ 56: "224px",
298
+ 57: "228px",
299
+ 58: "232px",
300
+ 59: "236px",
301
+ 60: "240px",
302
+ 61: "244px",
303
+ 62: "248px",
304
+ 63: "252px",
305
+ 64: "256px",
306
+ },
307
+ tracking: {
308
+ tight: "-0.05em",
309
+ normal: "0",
310
+ wide: "0.05em",
311
+ },
312
+ type: {
313
+ sans: "'Neue Montreal', system-ui, BlinkMacSystemFont, -apple-system, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', sans-serif",
314
+ serif: "'Copernicus', serif",
315
+ mono: "'Menlo', 'Monaco', 'Consolas', 'Liberation Mono', 'Courier New', monospace",
316
+ },
317
+ width: {
318
+ 0: "0",
319
+ 1: "4px",
320
+ 2: "8px",
321
+ 3: "12px",
322
+ 4: "16px",
323
+ 5: "20px",
324
+ 6: "24px",
325
+ 7: "28px",
326
+ 8: "32px",
327
+ 9: "36px",
328
+ 10: "40px",
329
+ 11: "44px",
330
+ 12: "48px",
331
+ 13: "52px",
332
+ 14: "56px",
333
+ 15: "60px",
334
+ 16: "64px",
335
+ 17: "68px",
336
+ 18: "72px",
337
+ 19: "76px",
338
+ 20: "80px",
339
+ 21: "84px",
340
+ 22: "88px",
341
+ 23: "92px",
342
+ 24: "96px",
343
+ 25: "100px",
344
+ 26: "104px",
345
+ 27: "108px",
346
+ 28: "112px",
347
+ 29: "116px",
348
+ 30: "120px",
349
+ 31: "124px",
350
+ 32: "128px",
351
+ 33: "132px",
352
+ 34: "136px",
353
+ 35: "140px",
354
+ 36: "144px",
355
+ 37: "148px",
356
+ 38: "152px",
357
+ 39: "156px",
358
+ 40: "160px",
359
+ 41: "164px",
360
+ 42: "168px",
361
+ 43: "172px",
362
+ 44: "176px",
363
+ 45: "180px",
364
+ 46: "184px",
365
+ 47: "188px",
366
+ 48: "192px",
367
+ 49: "196px",
368
+ 50: "200px",
369
+ 51: "204px",
370
+ 52: "208px",
371
+ 53: "212px",
372
+ 54: "216px",
373
+ 55: "220px",
374
+ 56: "224px",
375
+ 57: "228px",
376
+ 58: "232px",
377
+ 59: "236px",
378
+ 60: "240px",
379
+ 61: "244px",
380
+ 62: "248px",
381
+ 63: "252px",
382
+ 64: "256px",
383
+ "1/2": "50%",
384
+ "1/3": "33.33333%",
385
+ "2/3": "66.66667%",
386
+ "1/4": "25%",
387
+ "3/4": "75%",
388
+ "1/5": "20%",
389
+ "2/5": "40%",
390
+ "3/5": "60%",
391
+ "4/5": "80%",
392
+ "1/6": "16.66667%",
393
+ "5/6": "83.33333%",
394
+ auto: "auto",
395
+ px: "1px",
396
+ full: "100%",
397
+ screen: "100vw",
398
+ maxContent: "max-content",
399
+ xs: "20rem",
400
+ sm: "30rem",
401
+ md: "40rem",
402
+ lg: "50rem",
403
+ xl: "60rem",
404
+ "2xl": "70rem",
405
+ "3xl": "80rem",
406
+ "4xl": "90rem",
407
+ "5xl": "100rem",
408
+ },
409
+ zIndex: {
410
+ 0: 0,
411
+ 10: 10,
412
+ 20: 20,
413
+ 30: 30,
414
+ 40: 40,
415
+ 50: 50,
416
+ auto: "auto",
417
+ below: -1,
418
+ default: 1,
419
+ popup: 400,
420
+ dialog: 500,
421
+ dropdown: 600,
422
+ overlay: 700,
423
+ menu: 800,
424
+ modal: 900,
425
+ toast: 1000,
426
+ max: 2147483647,
427
+ },
428
+ };