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