@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.
- package/.eslintignore +2 -1
- package/.prettierignore +1 -0
- package/.storybook/decorators/withBoundingBox.tsx +30 -4
- package/.storybook/decorators/withColorMode.tsx +5 -5
- package/CONTRIBUTING.md +1 -1
- package/build/system/Accordion/Accordion.js +6 -6
- package/build/system/Accordion/Accordion.stories.js +1 -1
- package/build/system/Accordion/Accordion.test.js +7 -5
- package/build/system/Avatar/Avatar.js +3 -2
- package/build/system/Badge/Badge.js +1 -0
- package/build/system/Button/Button.d.ts +11 -0
- package/build/system/Button/Button.js +12 -1
- package/build/system/Button/Button.stories.d.ts +2 -1
- package/build/system/Button/Button.stories.js +1 -2
- package/build/system/Button/Button.test.js +72 -45
- package/build/system/Button/ButtonSubmit.d.ts +17 -1
- package/build/system/Button/ButtonSubmit.js +58 -65
- package/build/system/Button/ButtonSubmit.stories.d.ts +17 -37
- package/build/system/Button/ButtonSubmit.stories.js +52 -0
- package/build/system/Button/ButtonSubmit.test.js +55 -35
- package/build/system/Button/index.d.ts +7 -3
- package/build/system/Button/index.js +8 -7
- package/build/system/Dropdown/DropdownContent.js +1 -1
- package/build/system/Dropdown/DropdownItem.js +1 -1
- package/build/system/Dropdown/DropdownLabel.js +1 -1
- package/build/system/Form/Checkbox.d.ts +9 -9
- package/build/system/Form/Checkbox.js +56 -61
- package/build/system/Form/Checkbox.stories.d.ts +6 -6
- package/build/system/Form/Checkbox.stories.js +71 -0
- package/build/system/Form/Input.d.ts +14 -1
- package/build/system/Form/Input.js +59 -72
- package/build/system/Form/Input.stories.d.ts +6 -4
- package/build/system/Form/Input.stories.js +53 -0
- package/build/system/Form/Input.styles.d.ts +23 -14
- package/build/system/Form/Input.styles.js +40 -28
- package/build/system/Form/InputWithCopyButton.stories.jsx +7 -0
- package/build/system/Form/Label.d.ts +19 -8
- package/build/system/Form/Label.js +39 -43
- package/build/system/Form/Label.stories.d.ts +7 -5
- package/build/system/Form/Label.stories.js +32 -0
- package/build/system/Form/Radio.js +4 -4
- package/build/system/Form/Radio.stories.jsx +1 -1
- package/build/system/Form/RadioBoxGroup.js +1 -1
- package/build/system/Form/RequiredLabel.d.ts +2 -1
- package/build/system/Form/RequiredLabel.js +16 -7
- package/build/system/Form/Toggle.js +2 -2
- package/build/system/Form/Validation.d.ts +8 -13
- package/build/system/Form/Validation.js +39 -35
- package/build/system/Heading/Heading.stories.js +3 -0
- package/build/system/Link/Link.js +1 -1
- package/build/system/NewDialog/DialogClose.js +2 -2
- package/build/system/NewDialog/DialogContent.js +3 -3
- package/build/system/NewDialog/DialogTitle.js +3 -1
- package/build/system/NewDialog/NewDialog.stories.d.ts +0 -1
- package/build/system/NewDialog/NewDialog.stories.jsx +0 -27
- package/build/system/NewForm/Fieldset.d.ts +12 -1
- package/build/system/NewForm/Fieldset.js +38 -40
- package/build/system/NewForm/Form.d.ts +8 -1
- package/build/system/NewForm/Form.js +24 -23
- package/build/system/NewForm/FormAutocomplete.css +0 -11
- package/build/system/NewForm/FormAutocomplete.js +8 -8
- package/build/system/NewForm/FormAutocomplete.stories.jsx +1 -3
- package/build/system/NewForm/FormAutocompleteMultiselect.js +10 -10
- package/build/system/NewForm/FormSelect.js +1 -1
- package/build/system/NewForm/FormSelectArrow.js +1 -1
- package/build/system/NewForm/FormSelectInline.js +1 -1
- package/build/system/NewForm/FormSelectLoading.js +1 -1
- package/build/system/NewForm/FormSelectSearch.js +2 -2
- package/build/system/NewForm/Legend.d.ts +12 -1
- package/build/system/NewForm/Legend.js +32 -34
- package/build/system/NewForm/index.d.ts +1 -1
- package/build/system/OptionRow/OptionRow.js +1 -1
- package/build/system/Progress/Progress.d.ts +9 -2
- package/build/system/Progress/Progress.js +75 -70
- package/build/system/Progress/Progress.stories.d.ts +9 -7
- package/build/system/Progress/Progress.stories.js +34 -0
- package/build/system/Progress/Progress.test.d.ts +1 -0
- package/build/system/Progress/Progress.test.js +65 -0
- package/build/system/Progress/index.d.ts +4 -2
- package/build/system/Progress/index.js +5 -5
- package/build/system/ScreenReaderText/ScreenReaderText.js +1 -2
- package/build/system/Tabs/TabsTrigger.js +0 -1
- package/build/system/Text/Text.js +1 -1
- package/build/system/Text/Text.stories.js +36 -0
- package/build/system/Tooltip/Tooltip.css +6 -2
- package/build/system/Tooltip/Tooltip.stories.js +2 -2
- package/build/system/Wizard/Wizard.d.ts +14 -1
- package/build/system/Wizard/Wizard.js +62 -93
- package/build/system/Wizard/Wizard.stories.d.ts +11 -8
- package/build/system/Wizard/Wizard.stories.js +167 -0
- package/build/system/Wizard/WizardStep.d.ts +24 -1
- package/build/system/Wizard/WizardStep.js +180 -190
- package/build/system/Wizard/index.d.ts +4 -2
- package/build/system/Wizard/index.js +6 -7
- package/build/system/index.d.ts +2 -2
- package/build/system/index.js +2 -1
- package/build/system/theme/generated/valet-theme-dark.json +1219 -476
- package/build/system/theme/generated/valet-theme-light.json +1217 -474
- package/build/system/theme/{getColor.d.ts → getPropValue.d.ts} +2 -1
- package/{src/system/theme/getColor.js → build/system/theme/getPropValue.js} +36 -4
- package/build/system/theme/index.d.ts +20 -65
- package/build/system/theme/index.js +27 -57
- package/package.json +4 -4
- package/src/system/Accordion/Accordion.stories.tsx +1 -1
- package/src/system/Accordion/Accordion.test.tsx +3 -0
- package/src/system/Accordion/Accordion.tsx +6 -6
- package/src/system/Avatar/Avatar.tsx +3 -3
- package/src/system/Badge/Badge.tsx +1 -1
- package/src/system/Button/Button.stories.tsx +2 -3
- package/src/system/Button/{Button.test.js → Button.test.tsx} +2 -2
- package/src/system/Button/Button.tsx +12 -0
- package/src/system/Button/ButtonSubmit.stories.tsx +31 -0
- package/src/system/Button/{ButtonSubmit.test.js → ButtonSubmit.test.tsx} +4 -4
- package/src/system/Button/{ButtonSubmit.js → ButtonSubmit.tsx} +21 -27
- package/src/system/Button/index.ts +8 -0
- package/src/system/Dropdown/DropdownContent.js +1 -1
- package/src/system/Dropdown/DropdownItem.js +1 -1
- package/src/system/Dropdown/DropdownLabel.js +1 -1
- package/src/system/Form/{Checkbox.stories.jsx → Checkbox.stories.tsx} +3 -2
- package/src/system/Form/{Checkbox.js → Checkbox.tsx} +6 -10
- package/src/system/Form/{Input.stories.jsx → Input.stories.tsx} +1 -0
- package/src/system/Form/{Input.styles.js → Input.styles.ts} +14 -5
- package/src/system/Form/{Input.js → Input.tsx} +10 -19
- package/src/system/Form/InputWithCopyButton.stories.jsx +7 -0
- package/src/system/Form/{Label.js → Label.tsx} +8 -13
- package/src/system/Form/Radio.js +4 -4
- package/src/system/Form/Radio.stories.jsx +1 -1
- package/src/system/Form/RadioBoxGroup.js +1 -1
- package/src/system/Form/{RequiredLabel.js → RequiredLabel.tsx} +1 -3
- package/src/system/Form/Toggle.js +2 -2
- package/src/system/Form/{Validation.js → Validation.tsx} +11 -12
- package/src/system/Heading/Heading.stories.tsx +1 -0
- package/src/system/Link/Link.tsx +1 -1
- package/src/system/NewDialog/DialogClose.js +2 -2
- package/src/system/NewDialog/DialogContent.js +3 -3
- package/src/system/NewDialog/DialogTitle.js +3 -1
- package/src/system/NewDialog/NewDialog.stories.jsx +0 -27
- package/src/system/NewForm/Fieldset.tsx +46 -0
- package/src/system/NewForm/Form.tsx +23 -0
- package/src/system/NewForm/FormAutocomplete.css +0 -11
- package/src/system/NewForm/FormAutocomplete.js +8 -8
- package/src/system/NewForm/FormAutocomplete.stories.jsx +1 -3
- package/src/system/NewForm/FormAutocompleteMultiselect.js +10 -10
- package/src/system/NewForm/FormSelect.js +1 -1
- package/src/system/NewForm/FormSelectArrow.js +1 -1
- package/src/system/NewForm/FormSelectInline.js +1 -1
- package/src/system/NewForm/FormSelectLoading.js +1 -1
- package/src/system/NewForm/FormSelectSearch.js +2 -2
- package/src/system/NewForm/Legend.tsx +40 -0
- package/src/system/OptionRow/OptionRow.js +1 -1
- package/src/system/Progress/Progress.test.tsx +33 -0
- package/src/system/Progress/{Progress.js → Progress.tsx} +16 -19
- package/src/system/Progress/index.ts +4 -0
- package/src/system/ScreenReaderText/ScreenReaderText.tsx +0 -2
- package/src/system/Tabs/TabsTrigger.js +0 -1
- package/src/system/Text/Text.stories.tsx +7 -0
- package/src/system/Text/Text.tsx +1 -1
- package/src/system/Tooltip/Tooltip.css +6 -2
- package/src/system/Tooltip/Tooltip.stories.tsx +4 -4
- package/{build/system/Wizard/Wizard.stories.jsx → src/system/Wizard/Wizard.stories.tsx} +18 -23
- package/src/system/Wizard/Wizard.tsx +62 -0
- package/src/system/Wizard/{WizardStep.js → WizardStep.tsx} +38 -41
- package/src/system/Wizard/index.ts +7 -0
- package/src/system/index.js +2 -1
- package/src/system/theme/generated/valet-theme-dark.json +1219 -476
- package/src/system/theme/generated/valet-theme-light.json +1217 -474
- package/{build/system/theme/getColor.js → src/system/theme/getPropValue.js} +36 -4
- package/src/system/theme/index.js +27 -57
- package/tokens/utilities/colors/color output/blue.json +305 -0
- package/tokens/utilities/colors/color output/gold.json +305 -0
- package/tokens/utilities/colors/color output/gray.json +305 -0
- package/tokens/utilities/colors/color output/green.json +305 -0
- package/tokens/utilities/colors/color output/orange.json +305 -0
- package/tokens/utilities/colors/color output/pink.json +305 -0
- package/tokens/utilities/colors/color output/red.json +305 -0
- package/tokens/utilities/colors/color output/salmon.json +305 -0
- package/tokens/utilities/colors/color output/yellow.json +305 -0
- package/tokens/utilities/colors/colorOutput.json +4062 -0
- package/tokens/utilities/colors/color_3d_plot.js +43 -0
- package/tokens/utilities/colors/color_graph.js +31 -0
- package/tokens/utilities/colors/colors.json +1981 -0
- package/tokens/utilities/colors/index.js +118 -0
- package/tokens/utilities/colors/package-lock.json +6749 -0
- package/tokens/utilities/colors/package.json +21 -0
- package/tokens/utilities/figma-type-calculator/responsive-type.js +98 -0
- package/tokens/valet-core/$metadata.json +19 -15
- package/tokens/valet-core/$themes.json +3323 -419
- package/tokens/valet-core/{figma-parsely-expressive-type.json → figma-parsely-web-type.json} +128 -128
- package/tokens/valet-core/{figma-valet-expressive-type.json → figma-valet-web-type.json} +126 -126
- package/tokens/valet-core/figma-wpvip-services-web-type.json +1267 -0
- package/tokens/valet-core/{figma-wpvip-expressive-type.json → figma-wpvip-web-type.json} +162 -162
- package/tokens/valet-core/{parsely-expressive-color.json → parsely-web-color.json} +1 -1
- package/tokens/valet-core/{wpvip-expressive-core.json → parsely-web-core.json} +73 -23
- package/tokens/valet-core/{parsely-expressive-type.json → parsely-web-type.json} +21 -9
- package/tokens/valet-core/valet-core.json +331 -232
- package/tokens/valet-core/{valet-expressive-color.json → valet-web-color.json} +1 -1
- package/tokens/valet-core/{parsely-expressive-core.json → valet-web-core.json} +72 -22
- package/tokens/valet-core/{wpvip-productive-color.json → wpvip-product-core.json} +663 -7
- package/tokens/valet-core/{wpvip-productive-color-dark.json → wpvip-product-dark.json} +332 -10
- package/tokens/valet-core/{wpvip-expressive-color.json → wpvip-services-web-color.json} +1 -1
- package/tokens/valet-core/{valet-expressive-core.json → wpvip-services-web-core.json} +72 -22
- package/tokens/valet-core/wpvip-services-web-type.json +412 -0
- package/tokens/valet-core/{wpvip-expressive-color-dark.json → wpvip-web-color-dark.json} +1 -1
- package/tokens/valet-core/wpvip-web-color.json +730 -0
- package/tokens/valet-core/{wpvip-expressive-type.json → wpvip-web-type.json} +24 -12
- package/tokens/valet-core/wpvip-web.json +1310 -0
- package/tsconfig.json +2 -1
- package/build/system/Button/ButtonSubmit.stories.jsx +0 -40
- package/build/system/Button/variants.d.ts +0 -2
- package/build/system/Button/variants.js +0 -1
- package/build/system/Form/Checkbox.stories.jsx +0 -54
- package/build/system/Form/Input.stories.jsx +0 -38
- package/build/system/Wizard/WizardStepHorizontal.d.ts +0 -2
- package/build/system/Wizard/WizardStepHorizontal.js +0 -55
- package/build/system/theme/textStyles.d.ts +0 -71
- package/build/system/theme/textStyles.js +0 -46
- package/src/system/Button/ButtonSubmit.stories.jsx +0 -40
- package/src/system/Button/index.js +0 -8
- package/src/system/Button/variants.js +0 -1
- package/src/system/Form/Label.stories.jsx +0 -36
- package/src/system/NewForm/Fieldset.js +0 -47
- package/src/system/NewForm/Form.js +0 -26
- package/src/system/NewForm/Legend.js +0 -41
- package/src/system/Progress/Progress.stories.jsx +0 -25
- package/src/system/Progress/index.js +0 -6
- package/src/system/Wizard/Wizard.js +0 -103
- package/src/system/Wizard/Wizard.stories.jsx +0 -145
- package/src/system/Wizard/WizardStepHorizontal.js +0 -55
- package/src/system/Wizard/index.js +0 -8
- package/src/system/theme/textStyles.js +0 -46
- /package/{build/system/Form/Label.stories.jsx → src/system/Form/Label.stories.tsx} +0 -0
- /package/{build/system/Progress/Progress.stories.jsx → src/system/Progress/Progress.stories.tsx} +0 -0
|
@@ -0,0 +1,412 @@
|
|
|
1
|
+
{
|
|
2
|
+
"body": {
|
|
3
|
+
"1-short": {
|
|
4
|
+
"value": {
|
|
5
|
+
"fontFamily": "{fontFamily.sans}",
|
|
6
|
+
"fontWeight": "{fontWeight.regular}",
|
|
7
|
+
"lineHeight": "{lineHeight.4}",
|
|
8
|
+
"fontSize": "{fontSize.static.2}"
|
|
9
|
+
},
|
|
10
|
+
"type": "typography"
|
|
11
|
+
},
|
|
12
|
+
"1-short-medium": {
|
|
13
|
+
"value": {
|
|
14
|
+
"fontFamily": "{fontFamily.sans}",
|
|
15
|
+
"fontWeight": "{fontWeight.medium}",
|
|
16
|
+
"lineHeight": "{lineHeight.4}",
|
|
17
|
+
"fontSize": "{fontSize.static.2}"
|
|
18
|
+
},
|
|
19
|
+
"type": "typography"
|
|
20
|
+
},
|
|
21
|
+
"1-short-caps": {
|
|
22
|
+
"value": {
|
|
23
|
+
"fontFamily": "{fontFamily.sans}",
|
|
24
|
+
"fontWeight": "{fontWeight.regular}",
|
|
25
|
+
"lineHeight": "{lineHeight.4}",
|
|
26
|
+
"fontSize": "{fontSize.static.2}",
|
|
27
|
+
"textCase": "uppercase"
|
|
28
|
+
},
|
|
29
|
+
"type": "typography"
|
|
30
|
+
},
|
|
31
|
+
"2-short": {
|
|
32
|
+
"value": {
|
|
33
|
+
"fontFamily": "{fontFamily.sans}",
|
|
34
|
+
"fontWeight": "{fontWeight.regular}",
|
|
35
|
+
"lineHeight": "{lineHeight.4}",
|
|
36
|
+
"fontSize": "{fontSize.static.3}"
|
|
37
|
+
},
|
|
38
|
+
"type": "typography"
|
|
39
|
+
},
|
|
40
|
+
"2-short-medium": {
|
|
41
|
+
"value": {
|
|
42
|
+
"fontFamily": "{fontFamily.sans}",
|
|
43
|
+
"fontWeight": "{fontWeight.medium}",
|
|
44
|
+
"lineHeight": "{lineHeight.4}",
|
|
45
|
+
"fontSize": "{fontSize.static.3}"
|
|
46
|
+
},
|
|
47
|
+
"type": "typography"
|
|
48
|
+
},
|
|
49
|
+
"3-short": {
|
|
50
|
+
"value": {
|
|
51
|
+
"fontFamily": "{fontFamily.sans}",
|
|
52
|
+
"fontWeight": "{fontWeight.regular}",
|
|
53
|
+
"lineHeight": "{lineHeight.4}",
|
|
54
|
+
"fontSize": "{fontSize.static.4}"
|
|
55
|
+
},
|
|
56
|
+
"type": "typography"
|
|
57
|
+
},
|
|
58
|
+
"4-short": {
|
|
59
|
+
"value": {
|
|
60
|
+
"fontFamily": "{fontFamily.sans}",
|
|
61
|
+
"fontWeight": "{fontWeight.regular}",
|
|
62
|
+
"lineHeight": "{lineHeight.4}",
|
|
63
|
+
"fontSize": "{fontSize.static.5}"
|
|
64
|
+
},
|
|
65
|
+
"type": "typography"
|
|
66
|
+
},
|
|
67
|
+
"4-serif": {
|
|
68
|
+
"value": {
|
|
69
|
+
"fontFamily": "{fontFamily.serif}",
|
|
70
|
+
"fontWeight": "{fontWeight.regular}",
|
|
71
|
+
"lineHeight": "{lineHeight.5}",
|
|
72
|
+
"fontSize": "{fontSize.static.5}"
|
|
73
|
+
},
|
|
74
|
+
"type": "typography"
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
"heading": {
|
|
78
|
+
"1": {
|
|
79
|
+
"value": {
|
|
80
|
+
"fontFamily": "{fontFamily.sans}",
|
|
81
|
+
"fontWeight": "{fontWeight.medium}",
|
|
82
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
83
|
+
"fontSize": "{fontSize.responsive.6}",
|
|
84
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
85
|
+
},
|
|
86
|
+
"type": "typography"
|
|
87
|
+
},
|
|
88
|
+
"2": {
|
|
89
|
+
"value": {
|
|
90
|
+
"fontFamily": "{fontFamily.sans}",
|
|
91
|
+
"fontWeight": "{fontWeight.medium}",
|
|
92
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
93
|
+
"fontSize": "{fontSize.responsive.7}",
|
|
94
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
95
|
+
},
|
|
96
|
+
"type": "typography"
|
|
97
|
+
},
|
|
98
|
+
"3": {
|
|
99
|
+
"value": {
|
|
100
|
+
"fontFamily": "{fontFamily.sans}",
|
|
101
|
+
"fontWeight": "{fontWeight.medium}",
|
|
102
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
103
|
+
"fontSize": "{fontSize.responsive.9}",
|
|
104
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
105
|
+
},
|
|
106
|
+
"type": "typography"
|
|
107
|
+
},
|
|
108
|
+
"4": {
|
|
109
|
+
"value": {
|
|
110
|
+
"fontFamily": "{fontFamily.sans}",
|
|
111
|
+
"fontWeight": "{fontWeight.medium}",
|
|
112
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
113
|
+
"fontSize": "{fontSize.responsive.10}",
|
|
114
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
115
|
+
},
|
|
116
|
+
"type": "typography"
|
|
117
|
+
},
|
|
118
|
+
"5": {
|
|
119
|
+
"value": {
|
|
120
|
+
"fontFamily": "{fontFamily.sans}",
|
|
121
|
+
"fontWeight": "{fontWeight.medium}",
|
|
122
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
123
|
+
"fontSize": "{fontSize.responsive.11}",
|
|
124
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
125
|
+
},
|
|
126
|
+
"type": "typography"
|
|
127
|
+
},
|
|
128
|
+
"6": {
|
|
129
|
+
"value": {
|
|
130
|
+
"fontFamily": "{fontFamily.sans}",
|
|
131
|
+
"fontWeight": "{fontWeight.medium}",
|
|
132
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
133
|
+
"fontSize": "{fontSize.responsive.12}",
|
|
134
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
135
|
+
},
|
|
136
|
+
"type": "typography"
|
|
137
|
+
},
|
|
138
|
+
"7": {
|
|
139
|
+
"value": {
|
|
140
|
+
"fontFamily": "{fontFamily.sans}",
|
|
141
|
+
"fontWeight": "{fontWeight.medium}",
|
|
142
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
143
|
+
"fontSize": "{fontSize.responsive.13}",
|
|
144
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
145
|
+
},
|
|
146
|
+
"type": "typography"
|
|
147
|
+
},
|
|
148
|
+
"1-light": {
|
|
149
|
+
"value": {
|
|
150
|
+
"fontFamily": "{fontFamily.sans}",
|
|
151
|
+
"fontWeight": "{fontWeight.light}",
|
|
152
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
153
|
+
"fontSize": "{fontSize.responsive.6}",
|
|
154
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
155
|
+
},
|
|
156
|
+
"type": "typography"
|
|
157
|
+
},
|
|
158
|
+
"2-light": {
|
|
159
|
+
"value": {
|
|
160
|
+
"fontFamily": "{fontFamily.sans}",
|
|
161
|
+
"fontWeight": "{fontWeight.light}",
|
|
162
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
163
|
+
"fontSize": "{fontSize.responsive.8}",
|
|
164
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
165
|
+
},
|
|
166
|
+
"type": "typography"
|
|
167
|
+
},
|
|
168
|
+
"3-light": {
|
|
169
|
+
"value": {
|
|
170
|
+
"fontFamily": "{fontFamily.sans}",
|
|
171
|
+
"fontWeight": "{fontWeight.light}",
|
|
172
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
173
|
+
"fontSize": "{fontSize.responsive.9}",
|
|
174
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
175
|
+
},
|
|
176
|
+
"type": "typography"
|
|
177
|
+
},
|
|
178
|
+
"4-light": {
|
|
179
|
+
"value": {
|
|
180
|
+
"fontFamily": "{fontFamily.sans}",
|
|
181
|
+
"fontWeight": "{fontWeight.light}",
|
|
182
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
183
|
+
"fontSize": "{fontSize.responsive.10}",
|
|
184
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
185
|
+
},
|
|
186
|
+
"type": "typography"
|
|
187
|
+
},
|
|
188
|
+
"5-light": {
|
|
189
|
+
"value": {
|
|
190
|
+
"fontFamily": "{fontFamily.sans}",
|
|
191
|
+
"fontWeight": "{fontWeight.light}",
|
|
192
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
193
|
+
"fontSize": "{fontSize.responsive.11}",
|
|
194
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
195
|
+
},
|
|
196
|
+
"type": "typography"
|
|
197
|
+
},
|
|
198
|
+
"5-serif": {
|
|
199
|
+
"value": {
|
|
200
|
+
"fontFamily": "{fontFamily.serif}",
|
|
201
|
+
"fontWeight": "{fontWeight.regular}",
|
|
202
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
203
|
+
"fontSize": "{fontSize.responsive.11}",
|
|
204
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
205
|
+
},
|
|
206
|
+
"type": "typography"
|
|
207
|
+
},
|
|
208
|
+
"6-serif": {
|
|
209
|
+
"value": {
|
|
210
|
+
"fontFamily": "{fontFamily.serif}",
|
|
211
|
+
"fontWeight": "{fontWeight.regular}",
|
|
212
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
213
|
+
"fontSize": "{fontSize.responsive.12}",
|
|
214
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
215
|
+
},
|
|
216
|
+
"type": "typography"
|
|
217
|
+
},
|
|
218
|
+
"7-serif": {
|
|
219
|
+
"value": {
|
|
220
|
+
"fontFamily": "{fontFamily.serif}",
|
|
221
|
+
"fontWeight": "{fontWeight.regular}",
|
|
222
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
223
|
+
"fontSize": "{fontSize.responsive.13}",
|
|
224
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
225
|
+
},
|
|
226
|
+
"type": "typography"
|
|
227
|
+
}
|
|
228
|
+
},
|
|
229
|
+
"paragraph": {
|
|
230
|
+
"1": {
|
|
231
|
+
"value": {
|
|
232
|
+
"fontFamily": "{fontFamily.sans}",
|
|
233
|
+
"fontWeight": "{fontWeight.regular}",
|
|
234
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
235
|
+
"fontSize": "{fontSize.responsive.7}",
|
|
236
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
237
|
+
},
|
|
238
|
+
"type": "typography"
|
|
239
|
+
}
|
|
240
|
+
},
|
|
241
|
+
"quotation": {
|
|
242
|
+
"1": {
|
|
243
|
+
"value": {
|
|
244
|
+
"fontFamily": "{fontFamily.serif}",
|
|
245
|
+
"fontWeight": "{fontWeight.regular}",
|
|
246
|
+
"lineHeight": "{lineHeight.4}",
|
|
247
|
+
"fontSize": "{fontSize.responsive.8}",
|
|
248
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
249
|
+
},
|
|
250
|
+
"type": "typography"
|
|
251
|
+
},
|
|
252
|
+
"2": {
|
|
253
|
+
"value": {
|
|
254
|
+
"fontFamily": "{fontFamily.serif}",
|
|
255
|
+
"fontWeight": "{fontWeight.regular}",
|
|
256
|
+
"lineHeight": "{lineHeight.4}",
|
|
257
|
+
"fontSize": "{fontSize.responsive.10}",
|
|
258
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
259
|
+
},
|
|
260
|
+
"type": "typography"
|
|
261
|
+
},
|
|
262
|
+
"3": {
|
|
263
|
+
"value": {
|
|
264
|
+
"fontFamily": "{fontFamily.serif}",
|
|
265
|
+
"fontWeight": "{fontWeight.regular}",
|
|
266
|
+
"lineHeight": "{lineHeight.3}",
|
|
267
|
+
"fontSize": "{fontSize.responsive.11}",
|
|
268
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
269
|
+
},
|
|
270
|
+
"type": "typography"
|
|
271
|
+
}
|
|
272
|
+
},
|
|
273
|
+
"caption": {
|
|
274
|
+
"1": {
|
|
275
|
+
"value": {
|
|
276
|
+
"fontFamily": "{fontFamily.sans}",
|
|
277
|
+
"fontWeight": "{fontWeight.regular}",
|
|
278
|
+
"lineHeight": "{lineHeight.4}",
|
|
279
|
+
"fontSize": "{fontSize.static.1}",
|
|
280
|
+
"letterSpacing": "{letterSpacing.loose}"
|
|
281
|
+
},
|
|
282
|
+
"type": "typography"
|
|
283
|
+
},
|
|
284
|
+
"2": {
|
|
285
|
+
"value": {
|
|
286
|
+
"fontFamily": "{fontFamily.sans}",
|
|
287
|
+
"fontWeight": "{fontWeight.regular}",
|
|
288
|
+
"lineHeight": "{lineHeight.4}",
|
|
289
|
+
"fontSize": "{fontSize.static.2}",
|
|
290
|
+
"letterSpacing": "{letterSpacing.loose}"
|
|
291
|
+
},
|
|
292
|
+
"type": "typography"
|
|
293
|
+
}
|
|
294
|
+
},
|
|
295
|
+
"code": {
|
|
296
|
+
"1": {
|
|
297
|
+
"value": {
|
|
298
|
+
"fontFamily": "{fontFamily.monospace}",
|
|
299
|
+
"fontWeight": "{fontWeight.regular}",
|
|
300
|
+
"lineHeight": "{lineHeight.4}",
|
|
301
|
+
"fontSize": "{fontSize.static.2}"
|
|
302
|
+
},
|
|
303
|
+
"type": "typography"
|
|
304
|
+
},
|
|
305
|
+
"2": {
|
|
306
|
+
"value": {
|
|
307
|
+
"fontFamily": "{fontFamily.monospace}",
|
|
308
|
+
"fontWeight": "{fontWeight.regular}",
|
|
309
|
+
"lineHeight": "{lineHeight.4}",
|
|
310
|
+
"fontSize": "{fontSize.static.3}"
|
|
311
|
+
},
|
|
312
|
+
"type": "typography"
|
|
313
|
+
}
|
|
314
|
+
},
|
|
315
|
+
"supporting": {
|
|
316
|
+
"helper-text": {
|
|
317
|
+
"1": {
|
|
318
|
+
"value": {
|
|
319
|
+
"fontFamily": "{fontFamily.sans}",
|
|
320
|
+
"fontWeight": "{fontWeight.regular}",
|
|
321
|
+
"lineHeight": "{lineHeight.4}",
|
|
322
|
+
"fontSize": "{fontSize.static.1}",
|
|
323
|
+
"letterSpacing": "{letterSpacing.loose}"
|
|
324
|
+
},
|
|
325
|
+
"type": "typography"
|
|
326
|
+
},
|
|
327
|
+
"1-caps": {
|
|
328
|
+
"value": {
|
|
329
|
+
"fontFamily": "{fontFamily.sans}",
|
|
330
|
+
"fontWeight": "{fontWeight.regular}",
|
|
331
|
+
"lineHeight": "{lineHeight.4}",
|
|
332
|
+
"fontSize": "{fontSize.static.1}",
|
|
333
|
+
"letterSpacing": "{letterSpacing.loose}",
|
|
334
|
+
"textCase": "{textCase.uppercase}"
|
|
335
|
+
},
|
|
336
|
+
"type": "typography"
|
|
337
|
+
}
|
|
338
|
+
},
|
|
339
|
+
"support-text": {
|
|
340
|
+
"1": {
|
|
341
|
+
"value": {
|
|
342
|
+
"fontFamily": "{fontFamily.accent}",
|
|
343
|
+
"fontWeight": "{fontWeight.medium}",
|
|
344
|
+
"lineHeight": "{lineHeight.4}",
|
|
345
|
+
"fontSize": "{fontSize.static.1}",
|
|
346
|
+
"letterSpacing": "{letterSpacing.loose}",
|
|
347
|
+
"textCase": "{textCase.uppercase}"
|
|
348
|
+
},
|
|
349
|
+
"type": "typography"
|
|
350
|
+
},
|
|
351
|
+
"2": {
|
|
352
|
+
"value": {
|
|
353
|
+
"fontFamily": "{fontFamily.accent}",
|
|
354
|
+
"fontWeight": "{fontWeight.medium}",
|
|
355
|
+
"lineHeight": "{lineHeight.4}",
|
|
356
|
+
"fontSize": "{fontSize.static.3}",
|
|
357
|
+
"letterSpacing": "{letterSpacing.loose}",
|
|
358
|
+
"textCase": "{textCase.uppercase}"
|
|
359
|
+
},
|
|
360
|
+
"type": "typography"
|
|
361
|
+
}
|
|
362
|
+
}
|
|
363
|
+
},
|
|
364
|
+
"fontFamily": {
|
|
365
|
+
"sans": {
|
|
366
|
+
"value": "Aktiv Grotesk VF",
|
|
367
|
+
"type": "fontFamilies"
|
|
368
|
+
},
|
|
369
|
+
"serif": {
|
|
370
|
+
"value": "IvarText-Regular",
|
|
371
|
+
"type": "fontFamilies"
|
|
372
|
+
},
|
|
373
|
+
"display": {
|
|
374
|
+
"value": "Recoleta",
|
|
375
|
+
"type": "fontFamilies"
|
|
376
|
+
},
|
|
377
|
+
"accent": {
|
|
378
|
+
"value": "Aktiv Grotesk EX",
|
|
379
|
+
"type": "fontFamilies"
|
|
380
|
+
},
|
|
381
|
+
"mono": {
|
|
382
|
+
"value": "AkkuratMonoLLWeb-Regular",
|
|
383
|
+
"type": "fontFamilies"
|
|
384
|
+
}
|
|
385
|
+
},
|
|
386
|
+
"letterSpacing": {
|
|
387
|
+
"tight": {
|
|
388
|
+
"value": "-0.01em",
|
|
389
|
+
"type": "letterSpacing"
|
|
390
|
+
},
|
|
391
|
+
"none": {
|
|
392
|
+
"value": "0em",
|
|
393
|
+
"type": "letterSpacing"
|
|
394
|
+
},
|
|
395
|
+
"loose": {
|
|
396
|
+
"value": "0.03em",
|
|
397
|
+
"type": "letterSpacing"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"statistic": {
|
|
401
|
+
"1": {
|
|
402
|
+
"value": {
|
|
403
|
+
"fontFamily": "{fontFamily.sans}",
|
|
404
|
+
"fontWeight": "{fontWeight.regular}",
|
|
405
|
+
"lineHeight": "{lineHeight.responsive}",
|
|
406
|
+
"fontSize": "{fontSize.responsive.12b}",
|
|
407
|
+
"letterSpacing": "{letterSpacing.tight}"
|
|
408
|
+
},
|
|
409
|
+
"type": "typography"
|
|
410
|
+
}
|
|
411
|
+
}
|
|
412
|
+
}
|