@automattic/vip-design-system 1.2.3 → 1.3.1

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 (232) hide show
  1. package/.eslintignore +2 -1
  2. package/.prettierignore +1 -0
  3. package/.storybook/decorators/withBoundingBox.tsx +30 -4
  4. package/.storybook/decorators/withColorMode.tsx +5 -5
  5. package/CONTRIBUTING.md +1 -1
  6. package/build/system/Accordion/Accordion.js +6 -6
  7. package/build/system/Accordion/Accordion.stories.js +1 -1
  8. package/build/system/Accordion/Accordion.test.js +7 -5
  9. package/build/system/Avatar/Avatar.js +3 -2
  10. package/build/system/Badge/Badge.js +1 -0
  11. package/build/system/Button/Button.d.ts +11 -0
  12. package/build/system/Button/Button.js +12 -1
  13. package/build/system/Button/Button.stories.d.ts +2 -1
  14. package/build/system/Button/Button.stories.js +1 -2
  15. package/build/system/Button/Button.test.js +72 -45
  16. package/build/system/Button/ButtonSubmit.d.ts +17 -1
  17. package/build/system/Button/ButtonSubmit.js +58 -65
  18. package/build/system/Button/ButtonSubmit.stories.d.ts +17 -37
  19. package/build/system/Button/ButtonSubmit.stories.js +52 -0
  20. package/build/system/Button/ButtonSubmit.test.js +55 -35
  21. package/build/system/Button/index.d.ts +7 -3
  22. package/build/system/Button/index.js +8 -7
  23. package/build/system/Dropdown/DropdownContent.js +1 -1
  24. package/build/system/Dropdown/DropdownItem.js +1 -1
  25. package/build/system/Dropdown/DropdownLabel.js +1 -1
  26. package/build/system/Form/Checkbox.d.ts +9 -9
  27. package/build/system/Form/Checkbox.js +56 -61
  28. package/build/system/Form/Checkbox.stories.d.ts +6 -6
  29. package/build/system/Form/Checkbox.stories.js +71 -0
  30. package/build/system/Form/Input.d.ts +14 -1
  31. package/build/system/Form/Input.js +59 -72
  32. package/build/system/Form/Input.stories.d.ts +6 -4
  33. package/build/system/Form/Input.stories.js +53 -0
  34. package/build/system/Form/Input.styles.d.ts +23 -14
  35. package/build/system/Form/Input.styles.js +40 -28
  36. package/build/system/Form/InputWithCopyButton.stories.jsx +7 -0
  37. package/build/system/Form/Label.d.ts +19 -8
  38. package/build/system/Form/Label.js +39 -43
  39. package/build/system/Form/Label.stories.d.ts +7 -5
  40. package/build/system/Form/Label.stories.js +32 -0
  41. package/build/system/Form/Radio.js +4 -4
  42. package/build/system/Form/Radio.stories.jsx +1 -1
  43. package/build/system/Form/RadioBoxGroup.js +1 -1
  44. package/build/system/Form/RequiredLabel.d.ts +2 -1
  45. package/build/system/Form/RequiredLabel.js +16 -7
  46. package/build/system/Form/Toggle.js +2 -2
  47. package/build/system/Form/Validation.d.ts +8 -13
  48. package/build/system/Form/Validation.js +39 -35
  49. package/build/system/Heading/Heading.stories.js +3 -0
  50. package/build/system/Link/Link.js +1 -1
  51. package/build/system/NewDialog/DialogClose.js +2 -2
  52. package/build/system/NewDialog/DialogContent.js +3 -3
  53. package/build/system/NewDialog/DialogTitle.js +3 -1
  54. package/build/system/NewDialog/NewDialog.stories.d.ts +0 -1
  55. package/build/system/NewDialog/NewDialog.stories.jsx +0 -27
  56. package/build/system/NewForm/Fieldset.d.ts +12 -1
  57. package/build/system/NewForm/Fieldset.js +38 -40
  58. package/build/system/NewForm/Form.d.ts +8 -1
  59. package/build/system/NewForm/Form.js +24 -23
  60. package/build/system/NewForm/FormAutocomplete.css +0 -11
  61. package/build/system/NewForm/FormAutocomplete.js +8 -8
  62. package/build/system/NewForm/FormAutocomplete.stories.jsx +1 -3
  63. package/build/system/NewForm/FormAutocompleteMultiselect.js +10 -10
  64. package/build/system/NewForm/FormSelect.js +1 -1
  65. package/build/system/NewForm/FormSelectArrow.js +1 -1
  66. package/build/system/NewForm/FormSelectInline.js +1 -1
  67. package/build/system/NewForm/FormSelectLoading.js +1 -1
  68. package/build/system/NewForm/FormSelectSearch.js +2 -2
  69. package/build/system/NewForm/Legend.d.ts +12 -1
  70. package/build/system/NewForm/Legend.js +32 -34
  71. package/build/system/NewForm/index.d.ts +1 -1
  72. package/build/system/OptionRow/OptionRow.js +1 -1
  73. package/build/system/Progress/Progress.d.ts +9 -2
  74. package/build/system/Progress/Progress.js +75 -70
  75. package/build/system/Progress/Progress.stories.d.ts +9 -7
  76. package/build/system/Progress/Progress.stories.js +34 -0
  77. package/build/system/Progress/Progress.test.d.ts +1 -0
  78. package/build/system/Progress/Progress.test.js +65 -0
  79. package/build/system/Progress/index.d.ts +4 -2
  80. package/build/system/Progress/index.js +5 -5
  81. package/build/system/ScreenReaderText/ScreenReaderText.js +1 -2
  82. package/build/system/Tabs/TabsTrigger.js +0 -1
  83. package/build/system/Text/Text.js +1 -1
  84. package/build/system/Text/Text.stories.js +36 -0
  85. package/build/system/Tooltip/Tooltip.css +6 -2
  86. package/build/system/Tooltip/Tooltip.stories.js +2 -2
  87. package/build/system/Wizard/Wizard.d.ts +14 -1
  88. package/build/system/Wizard/Wizard.js +62 -93
  89. package/build/system/Wizard/Wizard.stories.d.ts +11 -8
  90. package/build/system/Wizard/Wizard.stories.js +167 -0
  91. package/build/system/Wizard/WizardStep.d.ts +24 -1
  92. package/build/system/Wizard/WizardStep.js +180 -190
  93. package/build/system/Wizard/index.d.ts +4 -2
  94. package/build/system/Wizard/index.js +6 -7
  95. package/build/system/index.d.ts +2 -2
  96. package/build/system/index.js +2 -1
  97. package/build/system/theme/generated/valet-theme-dark.json +1219 -476
  98. package/build/system/theme/generated/valet-theme-light.json +1217 -474
  99. package/build/system/theme/{getColor.d.ts → getPropValue.d.ts} +2 -1
  100. package/{src/system/theme/getColor.js → build/system/theme/getPropValue.js} +36 -4
  101. package/build/system/theme/index.d.ts +20 -65
  102. package/build/system/theme/index.js +27 -57
  103. package/package.json +4 -4
  104. package/src/system/Accordion/Accordion.stories.tsx +1 -1
  105. package/src/system/Accordion/Accordion.test.tsx +3 -0
  106. package/src/system/Accordion/Accordion.tsx +6 -6
  107. package/src/system/Avatar/Avatar.tsx +3 -3
  108. package/src/system/Badge/Badge.tsx +1 -1
  109. package/src/system/Button/Button.stories.tsx +2 -3
  110. package/src/system/Button/{Button.test.js → Button.test.tsx} +2 -2
  111. package/src/system/Button/Button.tsx +12 -0
  112. package/src/system/Button/ButtonSubmit.stories.tsx +31 -0
  113. package/src/system/Button/{ButtonSubmit.test.js → ButtonSubmit.test.tsx} +4 -4
  114. package/src/system/Button/{ButtonSubmit.js → ButtonSubmit.tsx} +21 -27
  115. package/src/system/Button/index.ts +8 -0
  116. package/src/system/Dropdown/DropdownContent.js +1 -1
  117. package/src/system/Dropdown/DropdownItem.js +1 -1
  118. package/src/system/Dropdown/DropdownLabel.js +1 -1
  119. package/src/system/Form/{Checkbox.stories.jsx → Checkbox.stories.tsx} +3 -2
  120. package/src/system/Form/{Checkbox.js → Checkbox.tsx} +6 -10
  121. package/src/system/Form/{Input.stories.jsx → Input.stories.tsx} +1 -0
  122. package/src/system/Form/{Input.styles.js → Input.styles.ts} +14 -5
  123. package/src/system/Form/{Input.js → Input.tsx} +10 -19
  124. package/src/system/Form/InputWithCopyButton.stories.jsx +7 -0
  125. package/src/system/Form/{Label.js → Label.tsx} +8 -13
  126. package/src/system/Form/Radio.js +4 -4
  127. package/src/system/Form/Radio.stories.jsx +1 -1
  128. package/src/system/Form/RadioBoxGroup.js +1 -1
  129. package/src/system/Form/{RequiredLabel.js → RequiredLabel.tsx} +1 -3
  130. package/src/system/Form/Toggle.js +2 -2
  131. package/src/system/Form/{Validation.js → Validation.tsx} +11 -12
  132. package/src/system/Heading/Heading.stories.tsx +1 -0
  133. package/src/system/Link/Link.tsx +1 -1
  134. package/src/system/NewDialog/DialogClose.js +2 -2
  135. package/src/system/NewDialog/DialogContent.js +3 -3
  136. package/src/system/NewDialog/DialogTitle.js +3 -1
  137. package/src/system/NewDialog/NewDialog.stories.jsx +0 -27
  138. package/src/system/NewForm/Fieldset.tsx +46 -0
  139. package/src/system/NewForm/Form.tsx +23 -0
  140. package/src/system/NewForm/FormAutocomplete.css +0 -11
  141. package/src/system/NewForm/FormAutocomplete.js +8 -8
  142. package/src/system/NewForm/FormAutocomplete.stories.jsx +1 -3
  143. package/src/system/NewForm/FormAutocompleteMultiselect.js +10 -10
  144. package/src/system/NewForm/FormSelect.js +1 -1
  145. package/src/system/NewForm/FormSelectArrow.js +1 -1
  146. package/src/system/NewForm/FormSelectInline.js +1 -1
  147. package/src/system/NewForm/FormSelectLoading.js +1 -1
  148. package/src/system/NewForm/FormSelectSearch.js +2 -2
  149. package/src/system/NewForm/Legend.tsx +40 -0
  150. package/src/system/OptionRow/OptionRow.js +1 -1
  151. package/src/system/Progress/Progress.test.tsx +33 -0
  152. package/src/system/Progress/{Progress.js → Progress.tsx} +16 -19
  153. package/src/system/Progress/index.ts +4 -0
  154. package/src/system/ScreenReaderText/ScreenReaderText.tsx +0 -2
  155. package/src/system/Tabs/TabsTrigger.js +0 -1
  156. package/src/system/Text/Text.stories.tsx +7 -0
  157. package/src/system/Text/Text.tsx +1 -1
  158. package/src/system/Tooltip/Tooltip.css +6 -2
  159. package/src/system/Tooltip/Tooltip.stories.tsx +4 -4
  160. package/{build/system/Wizard/Wizard.stories.jsx → src/system/Wizard/Wizard.stories.tsx} +18 -23
  161. package/src/system/Wizard/Wizard.tsx +62 -0
  162. package/src/system/Wizard/{WizardStep.js → WizardStep.tsx} +38 -41
  163. package/src/system/Wizard/index.ts +7 -0
  164. package/src/system/index.js +2 -1
  165. package/src/system/theme/generated/valet-theme-dark.json +1219 -476
  166. package/src/system/theme/generated/valet-theme-light.json +1217 -474
  167. package/{build/system/theme/getColor.js → src/system/theme/getPropValue.js} +36 -4
  168. package/src/system/theme/index.js +27 -57
  169. package/tokens/utilities/colors/color output/blue.json +305 -0
  170. package/tokens/utilities/colors/color output/gold.json +305 -0
  171. package/tokens/utilities/colors/color output/gray.json +305 -0
  172. package/tokens/utilities/colors/color output/green.json +305 -0
  173. package/tokens/utilities/colors/color output/orange.json +305 -0
  174. package/tokens/utilities/colors/color output/pink.json +305 -0
  175. package/tokens/utilities/colors/color output/red.json +305 -0
  176. package/tokens/utilities/colors/color output/salmon.json +305 -0
  177. package/tokens/utilities/colors/color output/yellow.json +305 -0
  178. package/tokens/utilities/colors/colorOutput.json +4062 -0
  179. package/tokens/utilities/colors/color_3d_plot.js +43 -0
  180. package/tokens/utilities/colors/color_graph.js +31 -0
  181. package/tokens/utilities/colors/colors.json +1981 -0
  182. package/tokens/utilities/colors/index.js +118 -0
  183. package/tokens/utilities/colors/package-lock.json +6749 -0
  184. package/tokens/utilities/colors/package.json +21 -0
  185. package/tokens/utilities/figma-type-calculator/responsive-type.js +98 -0
  186. package/tokens/valet-core/$metadata.json +19 -15
  187. package/tokens/valet-core/$themes.json +3323 -419
  188. package/tokens/valet-core/{figma-parsely-expressive-type.json → figma-parsely-web-type.json} +128 -128
  189. package/tokens/valet-core/{figma-valet-expressive-type.json → figma-valet-web-type.json} +126 -126
  190. package/tokens/valet-core/figma-wpvip-services-web-type.json +1267 -0
  191. package/tokens/valet-core/{figma-wpvip-expressive-type.json → figma-wpvip-web-type.json} +162 -162
  192. package/tokens/valet-core/{parsely-expressive-color.json → parsely-web-color.json} +1 -1
  193. package/tokens/valet-core/{wpvip-expressive-core.json → parsely-web-core.json} +73 -23
  194. package/tokens/valet-core/{parsely-expressive-type.json → parsely-web-type.json} +21 -9
  195. package/tokens/valet-core/valet-core.json +331 -232
  196. package/tokens/valet-core/{valet-expressive-color.json → valet-web-color.json} +1 -1
  197. package/tokens/valet-core/{parsely-expressive-core.json → valet-web-core.json} +72 -22
  198. package/tokens/valet-core/{wpvip-productive-color.json → wpvip-product-core.json} +663 -7
  199. package/tokens/valet-core/{wpvip-productive-color-dark.json → wpvip-product-dark.json} +332 -10
  200. package/tokens/valet-core/{wpvip-expressive-color.json → wpvip-services-web-color.json} +1 -1
  201. package/tokens/valet-core/{valet-expressive-core.json → wpvip-services-web-core.json} +72 -22
  202. package/tokens/valet-core/wpvip-services-web-type.json +412 -0
  203. package/tokens/valet-core/{wpvip-expressive-color-dark.json → wpvip-web-color-dark.json} +1 -1
  204. package/tokens/valet-core/wpvip-web-color.json +730 -0
  205. package/tokens/valet-core/{wpvip-expressive-type.json → wpvip-web-type.json} +24 -12
  206. package/tokens/valet-core/wpvip-web.json +1310 -0
  207. package/tsconfig.json +2 -1
  208. package/build/system/Button/ButtonSubmit.stories.jsx +0 -40
  209. package/build/system/Button/variants.d.ts +0 -2
  210. package/build/system/Button/variants.js +0 -1
  211. package/build/system/Form/Checkbox.stories.jsx +0 -54
  212. package/build/system/Form/Input.stories.jsx +0 -38
  213. package/build/system/Wizard/WizardStepHorizontal.d.ts +0 -2
  214. package/build/system/Wizard/WizardStepHorizontal.js +0 -55
  215. package/build/system/theme/textStyles.d.ts +0 -71
  216. package/build/system/theme/textStyles.js +0 -46
  217. package/src/system/Button/ButtonSubmit.stories.jsx +0 -40
  218. package/src/system/Button/index.js +0 -8
  219. package/src/system/Button/variants.js +0 -1
  220. package/src/system/Form/Label.stories.jsx +0 -36
  221. package/src/system/NewForm/Fieldset.js +0 -47
  222. package/src/system/NewForm/Form.js +0 -26
  223. package/src/system/NewForm/Legend.js +0 -41
  224. package/src/system/Progress/Progress.stories.jsx +0 -25
  225. package/src/system/Progress/index.js +0 -6
  226. package/src/system/Wizard/Wizard.js +0 -103
  227. package/src/system/Wizard/Wizard.stories.jsx +0 -145
  228. package/src/system/Wizard/WizardStepHorizontal.js +0 -55
  229. package/src/system/Wizard/index.js +0 -8
  230. package/src/system/theme/textStyles.js +0 -46
  231. /package/{build/system/Form/Label.stories.jsx → src/system/Form/Label.stories.tsx} +0 -0
  232. /package/{build/system/Progress/Progress.stories.jsx → src/system/Progress/Progress.stories.tsx} +0 -0
@@ -1,4 +1,115 @@
1
1
  {
2
+ "space": {
3
+ "0": {
4
+ "value": "0",
5
+ "type": "spacing"
6
+ },
7
+ "1": {
8
+ "value": "{space.static.1}",
9
+ "type": "spacing"
10
+ },
11
+ "2": {
12
+ "value": "{space.static.2}",
13
+ "type": "spacing"
14
+ },
15
+ "3": {
16
+ "value": "{space.static.3}",
17
+ "type": "spacing"
18
+ },
19
+ "4": {
20
+ "value": "{space.static.4}",
21
+ "type": "spacing"
22
+ },
23
+ "5": {
24
+ "value": "{space.static.5}",
25
+ "type": "spacing"
26
+ },
27
+ "6": {
28
+ "value": "{space.static.6}",
29
+ "type": "spacing"
30
+ },
31
+ "7": {
32
+ "value": "{space.static.7}",
33
+ "type": "spacing"
34
+ },
35
+ "8": {
36
+ "value": "{space.static.8}",
37
+ "type": "spacing"
38
+ },
39
+ "9": {
40
+ "value": "{space.static.10}",
41
+ "type": "spacing"
42
+ },
43
+ "responsive": {
44
+ "0": {
45
+ "value": "0",
46
+ "type": "spacing"
47
+ },
48
+ "1": {
49
+ "value": "{space.responsive.3-4}",
50
+ "type": "spacing"
51
+ },
52
+ "2": {
53
+ "value": "{space.responsive.4-5}",
54
+ "type": "spacing"
55
+ },
56
+ "3": {
57
+ "value": "{space.responsive.5-6}",
58
+ "type": "spacing"
59
+ },
60
+ "4": {
61
+ "value": "{space.responsive.6-7}",
62
+ "type": "spacing",
63
+ "description": "The default space between sequential blocks in a layout"
64
+ },
65
+ "5": {
66
+ "value": "{space.responsive.7-8}",
67
+ "type": "spacing"
68
+ },
69
+ "6": {
70
+ "value": "{space.responsive.8-9}",
71
+ "type": "spacing"
72
+ },
73
+ "7": {
74
+ "value": "{space.responsive.9-10}",
75
+ "type": "spacing"
76
+ }
77
+ }
78
+ },
79
+ "borderRadius": {
80
+ "0": {
81
+ "value": "0",
82
+ "type": "borderRadius"
83
+ },
84
+ "1": {
85
+ "value": "{borderRadius.static.0}",
86
+ "type": "borderRadius"
87
+ },
88
+ "2": {
89
+ "value": "{borderRadius.static.1}",
90
+ "type": "borderRadius"
91
+ },
92
+ "3": {
93
+ "value": "{borderRadius.static.2}",
94
+ "type": "borderRadius"
95
+ },
96
+ "4": {
97
+ "value": "{borderRadius.static.3}",
98
+ "type": "borderRadius"
99
+ },
100
+ "5": {
101
+ "value": "{borderRadius.static.4}",
102
+ "type": "borderRadius"
103
+ },
104
+ "6": {
105
+ "value": "{borderRadius.static.5}",
106
+ "type": "borderRadius"
107
+ },
108
+ "7": {
109
+ "value": "{borderRadius.static.6}",
110
+ "type": "borderRadius"
111
+ }
112
+ },
2
113
  "background": {
3
114
  "primary": {
4
115
  "type": "color",
@@ -40,8 +151,34 @@
40
151
  },
41
152
  "input": {
42
153
  "background": {
43
- "value": "{color.pure-white}",
44
- "type": "color"
154
+ "default": {
155
+ "value": "rgba({color.gray.0},0)",
156
+ "type": "color"
157
+ },
158
+ "primary": {
159
+ "value": "{color.black}",
160
+ "type": "color"
161
+ },
162
+ "success": {
163
+ "value": "{color.green.60}",
164
+ "type": "color"
165
+ },
166
+ "brand": {
167
+ "value": "{color.gold.60}",
168
+ "type": "color"
169
+ },
170
+ "inactive": {
171
+ "value": "{color.gray.50}",
172
+ "type": "color"
173
+ },
174
+ "disabled": {
175
+ "value": "{color.gray.20}",
176
+ "type": "color"
177
+ },
178
+ "read-only": {
179
+ "value": "{layer.1}",
180
+ "type": "color"
181
+ }
45
182
  },
46
183
  "label": {
47
184
  "default": {
@@ -73,6 +210,10 @@
73
210
  "value": "{color.red.55}",
74
211
  "type": "color",
75
212
  "description": "Use for inputs which are in an error state."
213
+ },
214
+ "read-only": {
215
+ "value": "{border.2}",
216
+ "type": "color"
76
217
  }
77
218
  },
78
219
  "switcher": {
@@ -94,11 +235,11 @@
94
235
  "type": "color"
95
236
  },
96
237
  "hover": {
97
- "value": "rgba({color.gray.0},0)",
238
+ "value": "{color.gray.3}",
98
239
  "type": "color"
99
240
  },
100
241
  "active": {
101
- "value": "{color.gray.3}",
242
+ "value": "rgba({color.gray.0},0)",
102
243
  "type": "color"
103
244
  },
104
245
  "disabled": {
@@ -150,7 +291,7 @@
150
291
  "type": "color"
151
292
  },
152
293
  "hover": {
153
- "value": "{color.gray.60}",
294
+ "value": "{color.gray.45}",
154
295
  "type": "color"
155
296
  },
156
297
  "active": {
@@ -162,6 +303,18 @@
162
303
  "type": "color"
163
304
  }
164
305
  }
306
+ },
307
+ "toggle": {
308
+ "switch": {
309
+ "default": {
310
+ "value": "{color.pure-white}",
311
+ "type": "color"
312
+ },
313
+ "disabled": {
314
+ "value": "{color.gray.7}",
315
+ "type": "color"
316
+ }
317
+ }
165
318
  }
166
319
  },
167
320
  "border": {
@@ -269,11 +422,19 @@
269
422
  },
270
423
  "inverse": {
271
424
  "type": "color",
272
- "value": "{color.gray.3}"
425
+ "value": "{color.pure-white}"
273
426
  },
274
427
  "disabled": {
275
428
  "type": "color",
276
429
  "value": "{color.gray.45}"
430
+ },
431
+ "brand": {
432
+ "value": "{color.gold.60}",
433
+ "type": "color"
434
+ },
435
+ "inverse-disabled": {
436
+ "value": "{color.gray.10}",
437
+ "type": "color"
277
438
  }
278
439
  },
279
440
  "button": {
@@ -698,6 +859,60 @@
698
859
  "value": "{color.green.70}"
699
860
  }
700
861
  }
862
+ },
863
+ "helper-text": {
864
+ "value": {
865
+ "fontFamily": "{fontFamily.body}",
866
+ "fontWeight": "{fontWeight.body}",
867
+ "fontSize": "{fontSize.1}",
868
+ "lineHeight": "150%"
869
+ },
870
+ "type": "typography"
871
+ },
872
+ "label-xs": {
873
+ "value": {
874
+ "fontFamily": "{fontFamily.body}",
875
+ "fontWeight": "{fontWeight.body}",
876
+ "lineHeight": "100%",
877
+ "fontSize": "11"
878
+ },
879
+ "type": "typography"
880
+ },
881
+ "label-small": {
882
+ "value": {
883
+ "fontFamily": "{fontFamily.body}",
884
+ "fontWeight": "{fontWeight.body}",
885
+ "lineHeight": "100%",
886
+ "fontSize": "{fontSize.1}"
887
+ },
888
+ "type": "typography"
889
+ },
890
+ "label-default": {
891
+ "value": {
892
+ "fontFamily": "{fontFamily.body}",
893
+ "fontWeight": "{fontWeight.heading}",
894
+ "lineHeight": "100%",
895
+ "fontSize": "{fontSize.2}"
896
+ },
897
+ "type": "typography"
898
+ },
899
+ "label-default-quiet": {
900
+ "value": {
901
+ "fontFamily": "{fontFamily.body}",
902
+ "fontWeight": "{fontWeight.body}",
903
+ "lineHeight": "100%",
904
+ "fontSize": "{fontSize.2}"
905
+ },
906
+ "type": "typography"
907
+ },
908
+ "label-default-loud": {
909
+ "value": {
910
+ "fontFamily": "{fontFamily.body}",
911
+ "fontWeight": "700",
912
+ "lineHeight": "100%",
913
+ "fontSize": "{fontSize.2}"
914
+ },
915
+ "type": "typography"
701
916
  }
702
917
  },
703
918
  "focus": {
@@ -910,6 +1125,278 @@
910
1125
  }
911
1126
  }
912
1127
  },
1128
+ "sticker": {
1129
+ "gray": {
1130
+ "background": {
1131
+ "type": "color",
1132
+ "value": "{color.gray.90}"
1133
+ },
1134
+ "background-secondary": {
1135
+ "type": "color",
1136
+ "value": "{color.gray.20}"
1137
+ },
1138
+ "text": {
1139
+ "type": "color",
1140
+ "value": "{color.pure-white}"
1141
+ },
1142
+ "text-secondary": {
1143
+ "type": "color",
1144
+ "value": "{color.black}"
1145
+ },
1146
+ "icon": {
1147
+ "type": "color",
1148
+ "value": "{color.pure-white}"
1149
+ },
1150
+ "hover": {
1151
+ "type": "color",
1152
+ "value": "{color.gray.80}"
1153
+ },
1154
+ "active": {
1155
+ "type": "color",
1156
+ "value": "{color.gray.75}"
1157
+ }
1158
+ },
1159
+ "blue": {
1160
+ "background": {
1161
+ "type": "color",
1162
+ "value": "{color.blue.30}"
1163
+ },
1164
+ "background-secondary": {
1165
+ "type": "color",
1166
+ "value": "{color.blue.7}"
1167
+ },
1168
+ "text": {
1169
+ "type": "color",
1170
+ "value": "{color.black}"
1171
+ },
1172
+ "text-secondary": {
1173
+ "type": "color",
1174
+ "value": "{color.black}"
1175
+ },
1176
+ "icon": {
1177
+ "type": "color",
1178
+ "value": "{color.black}"
1179
+ },
1180
+ "hover": {
1181
+ "type": "color",
1182
+ "value": "{color.blue.40}"
1183
+ },
1184
+ "active": {
1185
+ "type": "color",
1186
+ "value": "{color.blue.45}"
1187
+ }
1188
+ },
1189
+ "green": {
1190
+ "background": {
1191
+ "type": "color",
1192
+ "value": "{color.green.30}"
1193
+ },
1194
+ "background-secondary": {
1195
+ "type": "color",
1196
+ "value": "{color.green.7}"
1197
+ },
1198
+ "text": {
1199
+ "type": "color",
1200
+ "value": "{color.black}"
1201
+ },
1202
+ "text-secondary": {
1203
+ "type": "color",
1204
+ "value": "{color.black}"
1205
+ },
1206
+ "icon": {
1207
+ "type": "color",
1208
+ "value": "{color.black}"
1209
+ },
1210
+ "hover": {
1211
+ "type": "color",
1212
+ "value": "{color.green.40}"
1213
+ },
1214
+ "active": {
1215
+ "type": "color",
1216
+ "value": "{color.green.45}"
1217
+ }
1218
+ },
1219
+ "red": {
1220
+ "background": {
1221
+ "type": "color",
1222
+ "value": "{color.red.60}"
1223
+ },
1224
+ "background-secondary": {
1225
+ "type": "color",
1226
+ "value": "{color.red.7}"
1227
+ },
1228
+ "text": {
1229
+ "type": "color",
1230
+ "value": "{color.pure-white}"
1231
+ },
1232
+ "text-secondary": {
1233
+ "type": "color",
1234
+ "value": "{color.black}"
1235
+ },
1236
+ "icon": {
1237
+ "type": "color",
1238
+ "value": "{color.pure-white}"
1239
+ },
1240
+ "hover": {
1241
+ "type": "color",
1242
+ "value": "{color.red.70}"
1243
+ },
1244
+ "active": {
1245
+ "type": "color",
1246
+ "value": "{color.red.75}"
1247
+ }
1248
+ },
1249
+ "gold": {
1250
+ "background": {
1251
+ "type": "color",
1252
+ "value": "{color.gold.30}"
1253
+ },
1254
+ "background-secondary": {
1255
+ "type": "color",
1256
+ "value": "{color.gold.7}"
1257
+ },
1258
+ "text": {
1259
+ "type": "color",
1260
+ "value": "{color.black}"
1261
+ },
1262
+ "text-secondary": {
1263
+ "type": "color",
1264
+ "value": "{color.black}"
1265
+ },
1266
+ "icon": {
1267
+ "type": "color",
1268
+ "value": "{color.black}"
1269
+ },
1270
+ "hover": {
1271
+ "type": "color",
1272
+ "value": "{color.gold.40}"
1273
+ },
1274
+ "active": {
1275
+ "type": "color",
1276
+ "value": "{color.gold.45}"
1277
+ }
1278
+ },
1279
+ "yellow": {
1280
+ "background": {
1281
+ "type": "color",
1282
+ "value": "{color.yellow.30}"
1283
+ },
1284
+ "background-secondary": {
1285
+ "type": "color",
1286
+ "value": "{color.yellow.7}"
1287
+ },
1288
+ "text": {
1289
+ "type": "color",
1290
+ "value": "{color.black}"
1291
+ },
1292
+ "text-secondary": {
1293
+ "type": "color",
1294
+ "value": "{color.black}"
1295
+ },
1296
+ "icon": {
1297
+ "type": "color",
1298
+ "value": "{color.black}"
1299
+ },
1300
+ "hover": {
1301
+ "type": "color",
1302
+ "value": "{color.yellow.40}"
1303
+ },
1304
+ "active": {
1305
+ "type": "color",
1306
+ "value": "{color.yellow.45}"
1307
+ }
1308
+ },
1309
+ "orange": {
1310
+ "background": {
1311
+ "type": "color",
1312
+ "value": "{color.orange.35}"
1313
+ },
1314
+ "background-secondary": {
1315
+ "type": "color",
1316
+ "value": "{color.orange.7}"
1317
+ },
1318
+ "text": {
1319
+ "type": "color",
1320
+ "value": "{color.black}"
1321
+ },
1322
+ "text-secondary": {
1323
+ "type": "color",
1324
+ "value": "{color.black}"
1325
+ },
1326
+ "icon": {
1327
+ "type": "color",
1328
+ "value": "{color.black}"
1329
+ },
1330
+ "hover": {
1331
+ "type": "color",
1332
+ "value": "{color.orange.45}"
1333
+ },
1334
+ "active": {
1335
+ "type": "color",
1336
+ "value": "{color.orange.50}"
1337
+ }
1338
+ },
1339
+ "salmon": {
1340
+ "background": {
1341
+ "type": "color",
1342
+ "value": "{color.salmon.30}"
1343
+ },
1344
+ "background-secondary": {
1345
+ "type": "color",
1346
+ "value": "{color.salmon.7}"
1347
+ },
1348
+ "text": {
1349
+ "type": "color",
1350
+ "value": "{color.black}"
1351
+ },
1352
+ "text-secondary": {
1353
+ "type": "color",
1354
+ "value": "{color.black}"
1355
+ },
1356
+ "icon": {
1357
+ "type": "color",
1358
+ "value": "{color.black}"
1359
+ },
1360
+ "hover": {
1361
+ "type": "color",
1362
+ "value": "{color.salmon.40}"
1363
+ },
1364
+ "active": {
1365
+ "type": "color",
1366
+ "value": "{color.salmon.45}"
1367
+ }
1368
+ },
1369
+ "pink": {
1370
+ "background": {
1371
+ "type": "color",
1372
+ "value": "{color.pink.30}"
1373
+ },
1374
+ "background-secondary": {
1375
+ "type": "color",
1376
+ "value": "{color.pink.7}"
1377
+ },
1378
+ "text": {
1379
+ "type": "color",
1380
+ "value": "{color.black}"
1381
+ },
1382
+ "text-secondary": {
1383
+ "type": "color",
1384
+ "value": "{color.black}"
1385
+ },
1386
+ "icon": {
1387
+ "type": "color",
1388
+ "value": "{color.black}"
1389
+ },
1390
+ "hover": {
1391
+ "type": "color",
1392
+ "value": "{color.pink.40}"
1393
+ },
1394
+ "active": {
1395
+ "type": "color",
1396
+ "value": "{color.pink.45}"
1397
+ }
1398
+ }
1399
+ },
913
1400
  "toolbar": {
914
1401
  "background": {
915
1402
  "value": "{color.black}",
@@ -973,5 +1460,174 @@
973
1460
  "type": "color"
974
1461
  }
975
1462
  }
1463
+ },
1464
+ "fontFamily": {
1465
+ "body": {
1466
+ "value": "SF Pro Text",
1467
+ "type": "fontFamilies"
1468
+ },
1469
+ "serif": {
1470
+ "value": "Recoleta",
1471
+ "type": "fontFamilies"
1472
+ },
1473
+ "monospace": {
1474
+ "value": "SF Mono",
1475
+ "type": "fontFamilies"
1476
+ }
1477
+ },
1478
+ "fontSize": {
1479
+ "0": {
1480
+ "value": "{fontSize.static.0}",
1481
+ "type": "fontSizes"
1482
+ },
1483
+ "1": {
1484
+ "value": "{fontSize.static.1}",
1485
+ "type": "fontSizes"
1486
+ },
1487
+ "2": {
1488
+ "value": "{fontSize.static.2}",
1489
+ "type": "fontSizes"
1490
+ },
1491
+ "3": {
1492
+ "value": "19",
1493
+ "type": "fontSizes"
1494
+ },
1495
+ "4": {
1496
+ "value": "32",
1497
+ "type": "fontSizes"
1498
+ },
1499
+ "5": {
1500
+ "value": "40",
1501
+ "type": "fontSizes"
1502
+ }
1503
+ },
1504
+ "lineHeight": {
1505
+ "body": {
1506
+ "value": "{lineHeight.5}",
1507
+ "type": "lineHeights"
1508
+ },
1509
+ "heading": {
1510
+ "value": "113%",
1511
+ "type": "lineHeights"
1512
+ }
1513
+ },
1514
+ "heading": {
1515
+ "1": {
1516
+ "value": {
1517
+ "fontFamily": "{fontFamily.serif}",
1518
+ "fontWeight": "{fontWeight.body}",
1519
+ "lineHeight": "135%",
1520
+ "fontSize": "{fontSize.5}",
1521
+ "letterSpacing": "-1%"
1522
+ },
1523
+ "type": "typography"
1524
+ },
1525
+ "2": {
1526
+ "value": {
1527
+ "fontFamily": "{fontFamily.body}",
1528
+ "fontWeight": "{fontWeight.heading}",
1529
+ "lineHeight": "120%",
1530
+ "fontSize": "{fontSize.4}",
1531
+ "letterSpacing": "0%"
1532
+ },
1533
+ "type": "typography"
1534
+ },
1535
+ "3": {
1536
+ "value": {
1537
+ "fontFamily": "{fontFamily.body}",
1538
+ "fontWeight": "{fontWeight.heading}",
1539
+ "lineHeight": "150%",
1540
+ "fontSize": "{fontSize.3}",
1541
+ "letterSpacing": "0%"
1542
+ },
1543
+ "type": "typography"
1544
+ },
1545
+ "4": {
1546
+ "value": {
1547
+ "fontFamily": "{fontFamily.body}",
1548
+ "fontWeight": "{fontWeight.heading}",
1549
+ "lineHeight": "160%",
1550
+ "fontSize": "{fontSize.2}",
1551
+ "letterSpacing": "0%"
1552
+ },
1553
+ "type": "typography"
1554
+ },
1555
+ "5": {
1556
+ "value": {
1557
+ "fontFamily": "{fontFamily.body}",
1558
+ "fontWeight": "{fontWeight.heading}",
1559
+ "lineHeight": "150%",
1560
+ "fontSize": "{fontSize.1}"
1561
+ },
1562
+ "type": "typography"
1563
+ },
1564
+ "caps": {
1565
+ "value": {
1566
+ "fontFamily": "{fontFamily.body}",
1567
+ "fontWeight": "{fontWeight.bold}",
1568
+ "lineHeight": "150%",
1569
+ "fontSize": "{fontSize.1}",
1570
+ "letterSpacing": "5%",
1571
+ "textCase": "{textCase.uppercase}"
1572
+ },
1573
+ "type": "typography"
1574
+ }
1575
+ },
1576
+ "fontWeight": {
1577
+ "body": {
1578
+ "value": "{fontWeight.regular}",
1579
+ "type": "fontWeights"
1580
+ },
1581
+ "heading": {
1582
+ "value": "{fontWeight.medium}",
1583
+ "type": "fontWeights"
1584
+ }
1585
+ },
1586
+ "body": {
1587
+ "small": {
1588
+ "value": {
1589
+ "fontFamily": "{fontFamily.body}",
1590
+ "fontWeight": "{fontWeight.body}",
1591
+ "lineHeight": "{lineHeight.body}",
1592
+ "fontSize": "{fontSize.1}"
1593
+ },
1594
+ "type": "typography"
1595
+ },
1596
+ "default": {
1597
+ "value": {
1598
+ "fontFamily": "{fontFamily.body}",
1599
+ "fontWeight": "{fontWeight.body}",
1600
+ "lineHeight": "{lineHeight.body}",
1601
+ "fontSize": "{fontSize.2}"
1602
+ },
1603
+ "type": "typography"
1604
+ },
1605
+ "large": {
1606
+ "value": {
1607
+ "fontFamily": "{fontFamily.body}",
1608
+ "fontWeight": "{fontWeight.body}",
1609
+ "lineHeight": "{lineHeight.body}",
1610
+ "fontSize": "20"
1611
+ },
1612
+ "type": "typography"
1613
+ },
1614
+ "mono": {
1615
+ "value": {
1616
+ "fontFamily": "{fontFamily.monospace}",
1617
+ "fontWeight": "{fontWeight.body}",
1618
+ "lineHeight": "{lineHeight.body}",
1619
+ "fontSize": "{fontSize.2}"
1620
+ },
1621
+ "type": "typography"
1622
+ },
1623
+ "mono-bold": {
1624
+ "value": {
1625
+ "fontFamily": "{fontFamily.monospace}",
1626
+ "lineHeight": "{lineHeight.body}",
1627
+ "fontSize": "{fontSize.2}",
1628
+ "fontWeight": "{fontWeight.bold}"
1629
+ },
1630
+ "type": "typography"
1631
+ }
976
1632
  }
977
- }
1633
+ }