@atlaskit/tokens 1.14.2 → 1.15.0
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/CHANGELOG.md +6 -0
- package/dist/cjs/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/cjs/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +277 -37
- package/dist/cjs/artifacts/theme-import-map.js +10 -4
- package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +13 -0
- package/dist/cjs/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +23 -2
- package/dist/cjs/artifacts/token-names.js +22 -1
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +1084 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/cjs/entry-points/tokens-raw.js +2 -2
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/typography-palette.js +121 -16
- package/dist/cjs/theme-config.js +12 -4
- package/dist/cjs/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/cjs/tokens/atlassian-typography/theme.js +140 -0
- package/dist/cjs/tokens/atlassian-typography/utils.js +29 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/font-family.js +29 -0
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.js +8 -8
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.js +4 -4
- package/dist/cjs/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/theme.js +140 -0
- package/dist/cjs/tokens/atlassian-typography-adg3/utils.js +29 -0
- package/dist/cjs/tokens/default/typography/font-family.js +24 -0
- package/dist/cjs/tokens/default/typography/font.js +133 -0
- package/dist/cjs/tokens/default/typography/letter-spacing.js +54 -0
- package/dist/cjs/tokens/default/typography/line-height.js +8 -0
- package/dist/es2019/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/es2019/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +277 -37
- package/dist/es2019/artifacts/theme-import-map.js +6 -4
- package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +50 -0
- package/dist/es2019/artifacts/themes/atlassian-typography.js +23 -21
- package/dist/es2019/artifacts/token-default-values.js +23 -2
- package/dist/es2019/artifacts/token-names.js +22 -1
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/es2019/entry-points/tokens-raw.js +1 -1
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/typography-palette.js +123 -17
- package/dist/es2019/theme-config.js +12 -4
- package/dist/es2019/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/es2019/tokens/atlassian-typography/theme.js +133 -0
- package/dist/es2019/tokens/atlassian-typography/utils.js +22 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-family.js +22 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-size.js +31 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/font-weight.js +19 -0
- package/dist/es2019/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/theme.js +133 -0
- package/dist/es2019/tokens/atlassian-typography-adg3/utils.js +22 -0
- package/dist/es2019/tokens/default/typography/font-family.js +24 -0
- package/dist/es2019/tokens/default/typography/font.js +126 -0
- package/dist/es2019/tokens/default/typography/letter-spacing.js +47 -0
- package/dist/es2019/tokens/default/typography/line-height.js +8 -0
- package/dist/esm/artifacts/atlassian-dark-token-value-for-contrast-check.js +2 -2
- package/dist/esm/artifacts/atlassian-light-token-value-for-contrast-check.js +2 -2
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +277 -37
- package/dist/esm/artifacts/theme-import-map.js +8 -4
- package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +6 -0
- package/dist/esm/artifacts/themes/atlassian-typography.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +23 -2
- package/dist/esm/artifacts/token-names.js +22 -1
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +1077 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-typography.js +465 -253
- package/dist/esm/entry-points/tokens-raw.js +1 -1
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/typography-palette.js +121 -16
- package/dist/esm/theme-config.js +12 -4
- package/dist/esm/tokens/atlassian-typography/font-family.js +11 -2
- package/dist/esm/tokens/atlassian-typography/theme.js +133 -0
- package/dist/esm/tokens/atlassian-typography/utils.js +22 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-family.js +22 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-size.js +31 -0
- package/dist/esm/tokens/atlassian-typography-adg3/font-weight.js +19 -0
- package/dist/esm/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.js +3 -0
- package/dist/esm/tokens/atlassian-typography-adg3/theme.js +133 -0
- package/dist/esm/tokens/atlassian-typography-adg3/utils.js +22 -0
- package/dist/esm/tokens/default/typography/font-family.js +24 -0
- package/dist/esm/tokens/default/typography/font.js +126 -0
- package/dist/esm/tokens/default/typography/letter-spacing.js +47 -0
- package/dist/esm/tokens/default/typography/line-height.js +8 -0
- package/dist/types/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
- package/dist/types/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +23 -2
- package/dist/types/artifacts/token-names.d.ts +43 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
- package/dist/types/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/entry-points/tokens-raw.d.ts +1 -1
- package/dist/types/palettes/typography-palette.d.ts +8 -6
- package/dist/types/theme-config.d.ts +4 -4
- package/dist/types/tokens/atlassian-typography/theme.d.ts +10 -0
- package/dist/types/tokens/atlassian-typography/utils.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
- package/dist/types/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
- package/dist/types/tokens/atlassian-typography-adg3/utils.d.ts +4 -0
- package/dist/types/tokens/default/typography/font.d.ts +20 -0
- package/dist/types/tokens/default/typography/letter-spacing.d.ts +4 -0
- package/dist/types/types.d.ts +111 -22
- package/dist/types-ts4.5/artifacts/atlassian-dark-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/atlassian-light-token-value-for-contrast-check.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +7 -0
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +23 -2
- package/dist/types-ts4.5/artifacts/token-names.d.ts +43 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +101 -0
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography.d.ts +111 -3
- package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
- package/dist/types-ts4.5/entry-points/tokens-raw.d.ts +1 -1
- package/dist/types-ts4.5/palettes/typography-palette.d.ts +8 -6
- package/dist/types-ts4.5/theme-config.d.ts +5 -3
- package/dist/types-ts4.5/tokens/atlassian-typography/theme.d.ts +10 -0
- package/dist/types-ts4.5/tokens/atlassian-typography/utils.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/font-family.d.ts +4 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/theme.d.ts +10 -0
- package/dist/types-ts4.5/tokens/atlassian-typography-adg3/utils.d.ts +4 -0
- package/dist/types-ts4.5/tokens/default/typography/font.d.ts +20 -0
- package/dist/types-ts4.5/tokens/default/typography/letter-spacing.d.ts +4 -0
- package/dist/types-ts4.5/types.d.ts +111 -22
- package/figma/atlassian-typography-adg3.json +150 -0
- package/figma/atlassian-typography.json +19 -82
- package/package.json +1 -1
- package/report.api.md +60 -2
- package/tmp/api-report-tmp.d.ts +49 -7
- package/dist/es2019/tokens/atlassian-typography/font-size.js +0 -31
- package/dist/es2019/tokens/atlassian-typography/font-weight.js +0 -19
- package/dist/esm/tokens/atlassian-typography/font-size.js +0 -31
- package/dist/esm/tokens/atlassian-typography/font-weight.js +0 -19
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
- /package/dist/types/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-size.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/font-weight.d.ts +0 -0
- /package/dist/types-ts4.5/tokens/{atlassian-typography → atlassian-typography-adg3}/line-height.d.ts +0 -0
package/CHANGELOG.md
CHANGED
|
@@ -9,14 +9,14 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* Token names mapped to their values, used for contrast checking when generating custom themes
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::5aed53e696137cdd59ece99fb9755c09>>
|
|
13
13
|
* @codegenCommand yarn build tokens
|
|
14
14
|
*/
|
|
15
15
|
var tokenValues = {
|
|
16
16
|
'color.text.brand': '#579DFF',
|
|
17
17
|
'elevation.surface.overlay': '#282E33',
|
|
18
|
-
'color.text.selected': '#579DFF',
|
|
19
18
|
'color.background.selected': '#092957',
|
|
19
|
+
'color.text.selected': '#579DFF',
|
|
20
20
|
'color.border.brand': '#579DFF',
|
|
21
21
|
'color.chart.brand': '#388BFF',
|
|
22
22
|
'color.text.inverse': '#1D2125'
|
|
@@ -9,14 +9,14 @@ exports.default = void 0;
|
|
|
9
9
|
*
|
|
10
10
|
* Token names mapped to their values, used for contrast checking when generating custom themes
|
|
11
11
|
*
|
|
12
|
-
* @codegen <<SignedSource::
|
|
12
|
+
* @codegen <<SignedSource::2e18f7ef8f76f499aeeb6d93e94be25e>>
|
|
13
13
|
* @codegenCommand yarn build tokens
|
|
14
14
|
*/
|
|
15
15
|
var tokenValues = {
|
|
16
16
|
'color.text.brand': '#0C66E4',
|
|
17
17
|
'elevation.surface.sunken': '#F7F8F9',
|
|
18
|
-
'color.text.selected': '#0C66E4',
|
|
19
18
|
'color.background.selected': '#E9F2FF',
|
|
19
|
+
'color.text.selected': '#0C66E4',
|
|
20
20
|
'color.border.brand': '#0C66E4',
|
|
21
21
|
'color.chart.brand': '#1D7AFC',
|
|
22
22
|
'color.text.inverse': '#FFFFFF'
|
|
@@ -6,24 +6,114 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
/**
|
|
8
8
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
9
|
-
* @codegen <<SignedSource::
|
|
9
|
+
* @codegen <<SignedSource::89e4530c84e484a163c9df048290ecf5>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
12
|
var tokens = [{
|
|
13
|
-
"value": "
|
|
13
|
+
"value": "Roboto Mono",
|
|
14
14
|
"attributes": {
|
|
15
15
|
"group": "typography"
|
|
16
16
|
},
|
|
17
17
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
18
18
|
"isSource": true,
|
|
19
19
|
"original": {
|
|
20
|
-
"value": "
|
|
20
|
+
"value": "Roboto Mono",
|
|
21
21
|
"attributes": {
|
|
22
22
|
"group": "typography"
|
|
23
23
|
}
|
|
24
24
|
},
|
|
25
|
-
"name": "typography.fontFamily.
|
|
26
|
-
"path": ["typography", "fontFamily", "
|
|
25
|
+
"name": "typography.fontFamily.FontFamilyAndroidMono",
|
|
26
|
+
"path": ["typography", "fontFamily", "FontFamilyAndroidMono"]
|
|
27
|
+
}, {
|
|
28
|
+
"value": "Roboto",
|
|
29
|
+
"attributes": {
|
|
30
|
+
"group": "typography"
|
|
31
|
+
},
|
|
32
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
33
|
+
"isSource": true,
|
|
34
|
+
"original": {
|
|
35
|
+
"value": "Roboto",
|
|
36
|
+
"attributes": {
|
|
37
|
+
"group": "typography"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"name": "typography.fontFamily.FontFamilyAndroidSans",
|
|
41
|
+
"path": ["typography", "fontFamily", "FontFamilyAndroidSans"]
|
|
42
|
+
}, {
|
|
43
|
+
"value": "Charlie Sans",
|
|
44
|
+
"attributes": {
|
|
45
|
+
"group": "typography"
|
|
46
|
+
},
|
|
47
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
48
|
+
"isSource": true,
|
|
49
|
+
"original": {
|
|
50
|
+
"value": "Charlie Sans",
|
|
51
|
+
"attributes": {
|
|
52
|
+
"group": "typography"
|
|
53
|
+
}
|
|
54
|
+
},
|
|
55
|
+
"name": "typography.fontFamily.FontFamilyCharlie",
|
|
56
|
+
"path": ["typography", "fontFamily", "FontFamilyCharlie"]
|
|
57
|
+
}, {
|
|
58
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
|
|
59
|
+
"attributes": {
|
|
60
|
+
"group": "typography"
|
|
61
|
+
},
|
|
62
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
63
|
+
"isSource": true,
|
|
64
|
+
"original": {
|
|
65
|
+
"value": "ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace",
|
|
66
|
+
"attributes": {
|
|
67
|
+
"group": "typography"
|
|
68
|
+
}
|
|
69
|
+
},
|
|
70
|
+
"name": "typography.fontFamily.FontFamilyWebMono",
|
|
71
|
+
"path": ["typography", "fontFamily", "FontFamilyWebMono"]
|
|
72
|
+
}, {
|
|
73
|
+
"value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
|
|
74
|
+
"attributes": {
|
|
75
|
+
"group": "typography"
|
|
76
|
+
},
|
|
77
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
78
|
+
"isSource": true,
|
|
79
|
+
"original": {
|
|
80
|
+
"value": "ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif",
|
|
81
|
+
"attributes": {
|
|
82
|
+
"group": "typography"
|
|
83
|
+
}
|
|
84
|
+
},
|
|
85
|
+
"name": "typography.fontFamily.FontFamilyWebSans",
|
|
86
|
+
"path": ["typography", "fontFamily", "FontFamilyWebSans"]
|
|
87
|
+
}, {
|
|
88
|
+
"value": "SF Mono",
|
|
89
|
+
"attributes": {
|
|
90
|
+
"group": "typography"
|
|
91
|
+
},
|
|
92
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
93
|
+
"isSource": true,
|
|
94
|
+
"original": {
|
|
95
|
+
"value": "SF Mono",
|
|
96
|
+
"attributes": {
|
|
97
|
+
"group": "typography"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
"name": "typography.fontFamily.FontFamilyiOSMono",
|
|
101
|
+
"path": ["typography", "fontFamily", "FontFamilyiOSMono"]
|
|
102
|
+
}, {
|
|
103
|
+
"value": "SF Pro",
|
|
104
|
+
"attributes": {
|
|
105
|
+
"group": "typography"
|
|
106
|
+
},
|
|
107
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
108
|
+
"isSource": true,
|
|
109
|
+
"original": {
|
|
110
|
+
"value": "SF Pro",
|
|
111
|
+
"attributes": {
|
|
112
|
+
"group": "typography"
|
|
113
|
+
}
|
|
114
|
+
},
|
|
115
|
+
"name": "typography.fontFamily.FontFamilyiOSSans",
|
|
116
|
+
"path": ["typography", "fontFamily", "FontFamilyiOSSans"]
|
|
27
117
|
}, {
|
|
28
118
|
"value": "-apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif",
|
|
29
119
|
"attributes": {
|
|
@@ -37,8 +127,8 @@ var tokens = [{
|
|
|
37
127
|
"group": "typography"
|
|
38
128
|
}
|
|
39
129
|
},
|
|
40
|
-
"name": "typography.fontFamily.
|
|
41
|
-
"path": ["typography", "fontFamily", "
|
|
130
|
+
"name": "typography.fontFamily.LegacyFontFamilyWebSans",
|
|
131
|
+
"path": ["typography", "fontFamily", "LegacyFontFamilyWebSans"]
|
|
42
132
|
}, {
|
|
43
133
|
"value": "11px",
|
|
44
134
|
"attributes": {
|
|
@@ -52,8 +142,8 @@ var tokens = [{
|
|
|
52
142
|
"group": "typography"
|
|
53
143
|
}
|
|
54
144
|
},
|
|
55
|
-
"name": "typography.fontSize.
|
|
56
|
-
"path": ["typography", "fontSize", "
|
|
145
|
+
"name": "typography.fontSize.FontSize11",
|
|
146
|
+
"path": ["typography", "fontSize", "FontSize11"]
|
|
57
147
|
}, {
|
|
58
148
|
"value": "12px",
|
|
59
149
|
"attributes": {
|
|
@@ -67,8 +157,8 @@ var tokens = [{
|
|
|
67
157
|
"group": "typography"
|
|
68
158
|
}
|
|
69
159
|
},
|
|
70
|
-
"name": "typography.fontSize.
|
|
71
|
-
"path": ["typography", "fontSize", "
|
|
160
|
+
"name": "typography.fontSize.FontSize12",
|
|
161
|
+
"path": ["typography", "fontSize", "FontSize12"]
|
|
72
162
|
}, {
|
|
73
163
|
"value": "14px",
|
|
74
164
|
"attributes": {
|
|
@@ -82,8 +172,8 @@ var tokens = [{
|
|
|
82
172
|
"group": "typography"
|
|
83
173
|
}
|
|
84
174
|
},
|
|
85
|
-
"name": "typography.fontSize.
|
|
86
|
-
"path": ["typography", "fontSize", "
|
|
175
|
+
"name": "typography.fontSize.FontSize14",
|
|
176
|
+
"path": ["typography", "fontSize", "FontSize14"]
|
|
87
177
|
}, {
|
|
88
178
|
"value": "16px",
|
|
89
179
|
"attributes": {
|
|
@@ -97,8 +187,8 @@ var tokens = [{
|
|
|
97
187
|
"group": "typography"
|
|
98
188
|
}
|
|
99
189
|
},
|
|
100
|
-
"name": "typography.fontSize.
|
|
101
|
-
"path": ["typography", "fontSize", "
|
|
190
|
+
"name": "typography.fontSize.FontSize16",
|
|
191
|
+
"path": ["typography", "fontSize", "FontSize16"]
|
|
102
192
|
}, {
|
|
103
193
|
"value": "20px",
|
|
104
194
|
"attributes": {
|
|
@@ -112,8 +202,8 @@ var tokens = [{
|
|
|
112
202
|
"group": "typography"
|
|
113
203
|
}
|
|
114
204
|
},
|
|
115
|
-
"name": "typography.fontSize.
|
|
116
|
-
"path": ["typography", "fontSize", "
|
|
205
|
+
"name": "typography.fontSize.FontSize20",
|
|
206
|
+
"path": ["typography", "fontSize", "FontSize20"]
|
|
117
207
|
}, {
|
|
118
208
|
"value": "24px",
|
|
119
209
|
"attributes": {
|
|
@@ -127,8 +217,68 @@ var tokens = [{
|
|
|
127
217
|
"group": "typography"
|
|
128
218
|
}
|
|
129
219
|
},
|
|
130
|
-
"name": "typography.fontSize.
|
|
131
|
-
"path": ["typography", "fontSize", "
|
|
220
|
+
"name": "typography.fontSize.FontSize24",
|
|
221
|
+
"path": ["typography", "fontSize", "FontSize24"]
|
|
222
|
+
}, {
|
|
223
|
+
"value": "28px",
|
|
224
|
+
"attributes": {
|
|
225
|
+
"group": "typography"
|
|
226
|
+
},
|
|
227
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
228
|
+
"isSource": true,
|
|
229
|
+
"original": {
|
|
230
|
+
"value": 28,
|
|
231
|
+
"attributes": {
|
|
232
|
+
"group": "typography"
|
|
233
|
+
}
|
|
234
|
+
},
|
|
235
|
+
"name": "typography.fontSize.FontSize28",
|
|
236
|
+
"path": ["typography", "fontSize", "FontSize28"]
|
|
237
|
+
}, {
|
|
238
|
+
"value": "36px",
|
|
239
|
+
"attributes": {
|
|
240
|
+
"group": "typography"
|
|
241
|
+
},
|
|
242
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
243
|
+
"isSource": true,
|
|
244
|
+
"original": {
|
|
245
|
+
"value": 36,
|
|
246
|
+
"attributes": {
|
|
247
|
+
"group": "typography"
|
|
248
|
+
}
|
|
249
|
+
},
|
|
250
|
+
"name": "typography.fontSize.FontSize36",
|
|
251
|
+
"path": ["typography", "fontSize", "FontSize36"]
|
|
252
|
+
}, {
|
|
253
|
+
"value": "48px",
|
|
254
|
+
"attributes": {
|
|
255
|
+
"group": "typography"
|
|
256
|
+
},
|
|
257
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
258
|
+
"isSource": true,
|
|
259
|
+
"original": {
|
|
260
|
+
"value": 48,
|
|
261
|
+
"attributes": {
|
|
262
|
+
"group": "typography"
|
|
263
|
+
}
|
|
264
|
+
},
|
|
265
|
+
"name": "typography.fontSize.FontSize48",
|
|
266
|
+
"path": ["typography", "fontSize", "FontSize48"]
|
|
267
|
+
}, {
|
|
268
|
+
"value": "0.875em",
|
|
269
|
+
"attributes": {
|
|
270
|
+
"group": "typography"
|
|
271
|
+
},
|
|
272
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
273
|
+
"isSource": true,
|
|
274
|
+
"original": {
|
|
275
|
+
"value": "0.875em",
|
|
276
|
+
"attributes": {
|
|
277
|
+
"group": "typography"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"name": "typography.fontSize.FontSizeCode",
|
|
281
|
+
"path": ["typography", "fontSize", "FontSizeCode"]
|
|
132
282
|
}, {
|
|
133
283
|
"value": "29px",
|
|
134
284
|
"attributes": {
|
|
@@ -142,8 +292,8 @@ var tokens = [{
|
|
|
142
292
|
"group": "typography"
|
|
143
293
|
}
|
|
144
294
|
},
|
|
145
|
-
"name": "typography.fontSize.
|
|
146
|
-
"path": ["typography", "fontSize", "
|
|
295
|
+
"name": "typography.fontSize.LegacyFontSize29",
|
|
296
|
+
"path": ["typography", "fontSize", "LegacyFontSize29"]
|
|
147
297
|
}, {
|
|
148
298
|
"value": "35px",
|
|
149
299
|
"attributes": {
|
|
@@ -157,23 +307,23 @@ var tokens = [{
|
|
|
157
307
|
"group": "typography"
|
|
158
308
|
}
|
|
159
309
|
},
|
|
160
|
-
"name": "typography.fontSize.
|
|
161
|
-
"path": ["typography", "fontSize", "
|
|
310
|
+
"name": "typography.fontSize.LegacyFontSize35",
|
|
311
|
+
"path": ["typography", "fontSize", "LegacyFontSize35"]
|
|
162
312
|
}, {
|
|
163
|
-
"value": "
|
|
313
|
+
"value": "400",
|
|
164
314
|
"attributes": {
|
|
165
315
|
"group": "typography"
|
|
166
316
|
},
|
|
167
317
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
168
318
|
"isSource": true,
|
|
169
319
|
"original": {
|
|
170
|
-
"value": "
|
|
320
|
+
"value": "400",
|
|
171
321
|
"attributes": {
|
|
172
322
|
"group": "typography"
|
|
173
323
|
}
|
|
174
324
|
},
|
|
175
|
-
"name": "typography.fontWeight.
|
|
176
|
-
"path": ["typography", "fontWeight", "
|
|
325
|
+
"name": "typography.fontWeight.FontWeight400",
|
|
326
|
+
"path": ["typography", "fontWeight", "FontWeight400"]
|
|
177
327
|
}, {
|
|
178
328
|
"value": "500",
|
|
179
329
|
"attributes": {
|
|
@@ -187,38 +337,128 @@ var tokens = [{
|
|
|
187
337
|
"group": "typography"
|
|
188
338
|
}
|
|
189
339
|
},
|
|
190
|
-
"name": "typography.fontWeight.
|
|
191
|
-
"path": ["typography", "fontWeight", "
|
|
340
|
+
"name": "typography.fontWeight.FontWeight500",
|
|
341
|
+
"path": ["typography", "fontWeight", "FontWeight500"]
|
|
192
342
|
}, {
|
|
193
|
-
"value": "
|
|
343
|
+
"value": "600",
|
|
194
344
|
"attributes": {
|
|
195
345
|
"group": "typography"
|
|
196
346
|
},
|
|
197
347
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
198
348
|
"isSource": true,
|
|
199
349
|
"original": {
|
|
200
|
-
"value": "
|
|
350
|
+
"value": "600",
|
|
201
351
|
"attributes": {
|
|
202
352
|
"group": "typography"
|
|
203
353
|
}
|
|
204
354
|
},
|
|
205
|
-
"name": "typography.fontWeight.
|
|
206
|
-
"path": ["typography", "fontWeight", "
|
|
355
|
+
"name": "typography.fontWeight.FontWeight600",
|
|
356
|
+
"path": ["typography", "fontWeight", "FontWeight600"]
|
|
207
357
|
}, {
|
|
208
|
-
"value": "
|
|
358
|
+
"value": "700",
|
|
209
359
|
"attributes": {
|
|
210
360
|
"group": "typography"
|
|
211
361
|
},
|
|
212
362
|
"filePath": "src/palettes/typography-palette.tsx",
|
|
213
363
|
"isSource": true,
|
|
214
364
|
"original": {
|
|
215
|
-
"value": "
|
|
365
|
+
"value": "700",
|
|
366
|
+
"attributes": {
|
|
367
|
+
"group": "typography"
|
|
368
|
+
}
|
|
369
|
+
},
|
|
370
|
+
"name": "typography.fontWeight.FontWeight700",
|
|
371
|
+
"path": ["typography", "fontWeight", "FontWeight700"]
|
|
372
|
+
}, {
|
|
373
|
+
"value": "0",
|
|
374
|
+
"attributes": {
|
|
375
|
+
"group": "typography"
|
|
376
|
+
},
|
|
377
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
378
|
+
"isSource": true,
|
|
379
|
+
"original": {
|
|
380
|
+
"value": "0",
|
|
381
|
+
"attributes": {
|
|
382
|
+
"group": "typography"
|
|
383
|
+
}
|
|
384
|
+
},
|
|
385
|
+
"name": "typography.letterSpacing.LetterSpacing0",
|
|
386
|
+
"path": ["typography", "letterSpacing", "LetterSpacing0"]
|
|
387
|
+
}, {
|
|
388
|
+
"value": "-0.003em",
|
|
389
|
+
"attributes": {
|
|
390
|
+
"group": "typography"
|
|
391
|
+
},
|
|
392
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
393
|
+
"isSource": true,
|
|
394
|
+
"original": {
|
|
395
|
+
"value": "-0.003em",
|
|
396
|
+
"attributes": {
|
|
397
|
+
"group": "typography"
|
|
398
|
+
}
|
|
399
|
+
},
|
|
400
|
+
"name": "typography.letterSpacing.LetterSpacing100",
|
|
401
|
+
"path": ["typography", "letterSpacing", "LetterSpacing100"]
|
|
402
|
+
}, {
|
|
403
|
+
"value": "-0.006em",
|
|
404
|
+
"attributes": {
|
|
405
|
+
"group": "typography"
|
|
406
|
+
},
|
|
407
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
408
|
+
"isSource": true,
|
|
409
|
+
"original": {
|
|
410
|
+
"value": "-0.006em",
|
|
411
|
+
"attributes": {
|
|
412
|
+
"group": "typography"
|
|
413
|
+
}
|
|
414
|
+
},
|
|
415
|
+
"name": "typography.letterSpacing.LetterSpacing200",
|
|
416
|
+
"path": ["typography", "letterSpacing", "LetterSpacing200"]
|
|
417
|
+
}, {
|
|
418
|
+
"value": "-0.008em",
|
|
419
|
+
"attributes": {
|
|
420
|
+
"group": "typography"
|
|
421
|
+
},
|
|
422
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
423
|
+
"isSource": true,
|
|
424
|
+
"original": {
|
|
425
|
+
"value": "-0.008em",
|
|
426
|
+
"attributes": {
|
|
427
|
+
"group": "typography"
|
|
428
|
+
}
|
|
429
|
+
},
|
|
430
|
+
"name": "typography.letterSpacing.LetterSpacing300",
|
|
431
|
+
"path": ["typography", "letterSpacing", "LetterSpacing300"]
|
|
432
|
+
}, {
|
|
433
|
+
"value": "-0.01em",
|
|
434
|
+
"attributes": {
|
|
435
|
+
"group": "typography"
|
|
436
|
+
},
|
|
437
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
438
|
+
"isSource": true,
|
|
439
|
+
"original": {
|
|
440
|
+
"value": "-0.01em",
|
|
441
|
+
"attributes": {
|
|
442
|
+
"group": "typography"
|
|
443
|
+
}
|
|
444
|
+
},
|
|
445
|
+
"name": "typography.letterSpacing.LetterSpacing400",
|
|
446
|
+
"path": ["typography", "letterSpacing", "LetterSpacing400"]
|
|
447
|
+
}, {
|
|
448
|
+
"value": "1",
|
|
449
|
+
"attributes": {
|
|
450
|
+
"group": "typography"
|
|
451
|
+
},
|
|
452
|
+
"filePath": "src/palettes/typography-palette.tsx",
|
|
453
|
+
"isSource": true,
|
|
454
|
+
"original": {
|
|
455
|
+
"value": "1",
|
|
216
456
|
"attributes": {
|
|
217
457
|
"group": "typography"
|
|
218
458
|
}
|
|
219
459
|
},
|
|
220
|
-
"name": "typography.
|
|
221
|
-
"path": ["typography", "
|
|
460
|
+
"name": "typography.lineHeight.LineHeight1",
|
|
461
|
+
"path": ["typography", "lineHeight", "LineHeight1"]
|
|
222
462
|
}, {
|
|
223
463
|
"value": "16px",
|
|
224
464
|
"attributes": {
|
|
@@ -16,7 +16,7 @@ function _interopRequireWildcard(obj, nodeInterop) { if (!nodeInterop && obj &&
|
|
|
16
16
|
* This allows users to compose their themes and only use the tokens that are requested.
|
|
17
17
|
* When a new theme is created, the import should automatically be added to the map
|
|
18
18
|
*
|
|
19
|
-
* @codegen <<SignedSource::
|
|
19
|
+
* @codegen <<SignedSource::82c355c08254a28b0727a63e17ee7698>>
|
|
20
20
|
* @codegenCommand yarn build tokens
|
|
21
21
|
*/
|
|
22
22
|
|
|
@@ -51,10 +51,10 @@ var themeImportsMap = {
|
|
|
51
51
|
'./themes/atlassian-spacing'));
|
|
52
52
|
});
|
|
53
53
|
},
|
|
54
|
-
'typography': function
|
|
54
|
+
'typography-adg3': function typographyAdg3() {
|
|
55
55
|
return Promise.resolve().then(function () {
|
|
56
|
-
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-typography" */
|
|
57
|
-
'./themes/atlassian-typography'));
|
|
56
|
+
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-typography-adg3" */
|
|
57
|
+
'./themes/atlassian-typography-adg3'));
|
|
58
58
|
});
|
|
59
59
|
},
|
|
60
60
|
'shape': function shape() {
|
|
@@ -74,6 +74,12 @@ var themeImportsMap = {
|
|
|
74
74
|
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-dark-new-input-border" */
|
|
75
75
|
'./themes/atlassian-dark-new-input-border'));
|
|
76
76
|
});
|
|
77
|
+
},
|
|
78
|
+
'typography': function typography() {
|
|
79
|
+
return Promise.resolve().then(function () {
|
|
80
|
+
return _interopRequireWildcard(require( /* webpackChunkName: "@atlaskit-internal_atlassian-typography" */
|
|
81
|
+
'./themes/atlassian-typography'));
|
|
82
|
+
});
|
|
77
83
|
}
|
|
78
84
|
};
|
|
79
85
|
var _default = themeImportsMap;
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.default = void 0;
|
|
7
|
+
/**
|
|
8
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
9
|
+
* @codegen <<SignedSource::5a962c81429544e05af6d55cf34c46a0>>
|
|
10
|
+
* @codegenCommand yarn build tokens
|
|
11
|
+
*/
|
|
12
|
+
var _default = "\nhtml[data-theme~=\"typography:typography-adg3\"] {\n --ds-font-body: normal 400 0.875rem/1.25rem var(--ds-font-family-product);\n --ds-font-body-sm: normal 400 0.6875rem/1.25rem var(--ds-font-family-product);\n --ds-font-code: normal 400 0.875em/1 var(--ds-font-family-monospace);\n --ds-font-heading-lg: normal 500 1.5rem/1.75rem var(--ds-font-family-product);\n --ds-font-heading-md: normal 500 1.25rem/1.5rem var(--ds-font-family-product);\n --ds-font-heading-sm: normal 600 1rem/1.25rem var(--ds-font-family-product);\n --ds-font-heading-xl: normal 600 1.8125rem/2rem var(--ds-font-family-product);\n --ds-font-heading-xs: normal 600 0.875rem/1rem var(--ds-font-family-product);\n --ds-font-heading-xxl: normal 500 2.1875rem/2.5rem var(--ds-font-family-product);\n --ds-font-heading-xxs: normal 600 0.75rem/1rem var(--ds-font-family-product);\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: -0.003em;\n --ds-font-letterSpacing-200: -0.006em;\n --ds-font-letterSpacing-300: -0.008em;\n --ds-font-letterSpacing-400: -0.01em;\n --ds-font-ui: normal 400 0.875rem/1rem var(--ds-font-family-product);\n --ds-font-ui-sm: normal 400 0.6875rem/1rem var(--ds-font-family-product);\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-product: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-sans: -apple-system, BlinkMacSystemFont, \"Segoe UI\", \"Roboto\", \"Oxygen\", \"Ubuntu\", \"Fira Sans\", \"Droid Sans\", \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n --ds-font-size-050: 0.6875rem;\n --ds-font-size-075: 0.75rem;\n --ds-font-size-100: 0.875rem;\n --ds-font-size-200: 1rem;\n --ds-font-size-300: 1.25rem;\n --ds-font-size-400: 1.5rem;\n --ds-font-size-500: 1.8125rem;\n --ds-font-size-600: 2.1875rem;\n --ds-font-weight-bold: 700;\n --ds-font-weight-medium: 500;\n --ds-font-weight-regular: 400;\n --ds-font-weight-semibold: 600;\n --ds-font-lineHeight-1: 1;\n --ds-font-lineHeight-100: 1rem;\n --ds-font-lineHeight-200: 1.25rem;\n --ds-font-lineHeight-300: 1.5rem;\n --ds-font-lineHeight-400: 1.75rem;\n --ds-font-lineHeight-500: 2rem;\n --ds-font-lineHeight-600: 2.5rem;\n}\n";
|
|
13
|
+
exports.default = _default;
|
|
@@ -6,8 +6,8 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
/**
|
|
8
8
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
9
|
-
* @codegen <<SignedSource::
|
|
9
|
+
* @codegen <<SignedSource::8a2c4f8f66783e1940d1aab250cf35a9>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
|
-
var _default = "\nhtml[data-theme~=\"typography:typography\"] {\n --ds-font-
|
|
12
|
+
var _default = "\nhtml[data-theme~=\"typography:typography\"] {\n --ds-font-body: normal 400 0.875rem/1.25rem var(--ds-font-family-sans);\n --ds-font-body-sm: normal 400 0.6875rem/1.25rem var(--ds-font-family-sans);\n --ds-font-code: normal 400 0.875em/1 var(--ds-font-family-monospace);\n --ds-font-heading-lg: normal 700 1.5rem/1.75rem var(--ds-font-family-sans);\n --ds-font-heading-md: normal 700 1.25rem/1.5rem var(--ds-font-family-sans);\n --ds-font-heading-sm: normal 700 1rem/1.25rem var(--ds-font-family-sans);\n --ds-font-heading-xl: normal 700 1.75rem/2rem var(--ds-font-family-sans);\n --ds-font-heading-xs: normal 700 0.875rem/1rem var(--ds-font-family-sans);\n --ds-font-heading-xxl: normal 700 2.25rem/2.5rem var(--ds-font-family-sans);\n --ds-font-heading-xxs: normal 700 0.75rem/1rem var(--ds-font-family-sans);\n --ds-font-letterSpacing-0: 0;\n --ds-font-letterSpacing-100: 0;\n --ds-font-letterSpacing-200: 0;\n --ds-font-letterSpacing-300: 0;\n --ds-font-letterSpacing-400: 0;\n --ds-font-ui: normal 400 0.875rem/1 var(--ds-font-family-sans);\n --ds-font-ui-sm: normal 400 0.6875rem/1 var(--ds-font-family-sans);\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-product: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", system-ui, Ubuntu, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\n}\n";
|
|
13
13
|
exports.default = _default;
|
|
@@ -13,7 +13,7 @@ exports.default = void 0;
|
|
|
13
13
|
* Token names mapped to their value in the default Atlassian themes ('light').
|
|
14
14
|
* These default values are used by the Babel plugin to optionally provide automatic fallbacks.
|
|
15
15
|
*
|
|
16
|
-
* @codegen <<SignedSource::
|
|
16
|
+
* @codegen <<SignedSource::7b0a463a4cd5463b13d98c47582631db>>
|
|
17
17
|
* @codegenCommand yarn build tokens
|
|
18
18
|
*/
|
|
19
19
|
var defaultTokenValues = {
|
|
@@ -348,8 +348,28 @@ var defaultTokenValues = {
|
|
|
348
348
|
'space.600': '3rem',
|
|
349
349
|
'space.800': '4rem',
|
|
350
350
|
'space.1000': '5rem',
|
|
351
|
-
'font.
|
|
351
|
+
'font.body': 'normal 400 0.875rem/1.25rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
352
|
+
'font.body.sm': 'normal 400 0.6875rem/1.25rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
353
|
+
'font.code': 'normal 400 0.875em/1 ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
354
|
+
'font.heading.lg': 'normal 500 1.5rem/1.75rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
355
|
+
'font.heading.md': 'normal 500 1.25rem/1.5rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
356
|
+
'font.heading.sm': 'normal 600 1rem/1.25rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
357
|
+
'font.heading.xl': 'normal 600 1.8125rem/2rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
358
|
+
'font.heading.xs': 'normal 600 0.875rem/1rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
359
|
+
'font.heading.xxl': 'normal 500 2.1875rem/2.5rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
360
|
+
'font.heading.xxs': 'normal 600 0.75rem/1rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
361
|
+
'font.letterSpacing.0': '0',
|
|
362
|
+
'font.letterSpacing.100': '-0.003em',
|
|
363
|
+
'font.letterSpacing.200': '-0.006em',
|
|
364
|
+
'font.letterSpacing.300': '-0.008em',
|
|
365
|
+
'font.letterSpacing.400': '-0.01em',
|
|
366
|
+
'font.ui': 'normal 400 0.875rem/1rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
367
|
+
'font.ui.sm': 'normal 400 0.6875rem/1rem ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
368
|
+
'font.family.code': 'ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
369
|
+
'font.family.monospace': 'ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
370
|
+
'font.family.product': 'ui-sans-serif, "Segoe UI", system-ui, Ubuntu, "Helvetica Neue", sans-serif',
|
|
352
371
|
'font.family.sans': '-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif',
|
|
372
|
+
'font.family.brand': 'Charlie Sans',
|
|
353
373
|
'font.size.050': '0.6875rem',
|
|
354
374
|
'font.size.075': '0.75rem',
|
|
355
375
|
'font.size.100': '0.875rem',
|
|
@@ -362,6 +382,7 @@ var defaultTokenValues = {
|
|
|
362
382
|
'font.weight.medium': '500',
|
|
363
383
|
'font.weight.regular': '400',
|
|
364
384
|
'font.weight.semibold': '600',
|
|
385
|
+
'font.lineHeight.1': '1',
|
|
365
386
|
'font.lineHeight.100': '1rem',
|
|
366
387
|
'font.lineHeight.200': '1.25rem',
|
|
367
388
|
'font.lineHeight.300': '1.5rem',
|
|
@@ -6,7 +6,7 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
6
6
|
exports.default = void 0;
|
|
7
7
|
/**
|
|
8
8
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
9
|
-
* @codegen <<SignedSource::
|
|
9
|
+
* @codegen <<SignedSource::941775f7937b33243f0409b0ddd4fcd1>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
12
|
var tokens = {
|
|
@@ -341,8 +341,28 @@ var tokens = {
|
|
|
341
341
|
'space.600': '--ds-space-600',
|
|
342
342
|
'space.800': '--ds-space-800',
|
|
343
343
|
'space.1000': '--ds-space-1000',
|
|
344
|
+
'font.body': '--ds-font-body',
|
|
345
|
+
'font.body.sm': '--ds-font-body-sm',
|
|
346
|
+
'font.code': '--ds-font-code',
|
|
347
|
+
'font.heading.lg': '--ds-font-heading-lg',
|
|
348
|
+
'font.heading.md': '--ds-font-heading-md',
|
|
349
|
+
'font.heading.sm': '--ds-font-heading-sm',
|
|
350
|
+
'font.heading.xl': '--ds-font-heading-xl',
|
|
351
|
+
'font.heading.xs': '--ds-font-heading-xs',
|
|
352
|
+
'font.heading.xxl': '--ds-font-heading-xxl',
|
|
353
|
+
'font.heading.xxs': '--ds-font-heading-xxs',
|
|
354
|
+
'font.letterSpacing.0': '--ds-font-letterSpacing-0',
|
|
355
|
+
'font.letterSpacing.100': '--ds-font-letterSpacing-100',
|
|
356
|
+
'font.letterSpacing.200': '--ds-font-letterSpacing-200',
|
|
357
|
+
'font.letterSpacing.300': '--ds-font-letterSpacing-300',
|
|
358
|
+
'font.letterSpacing.400': '--ds-font-letterSpacing-400',
|
|
359
|
+
'font.ui': '--ds-font-ui',
|
|
360
|
+
'font.ui.sm': '--ds-font-ui-sm',
|
|
361
|
+
'font.family.code': '--ds-font-family-code',
|
|
344
362
|
'font.family.monospace': '--ds-font-family-monospace',
|
|
363
|
+
'font.family.product': '--ds-font-family-product',
|
|
345
364
|
'font.family.sans': '--ds-font-family-sans',
|
|
365
|
+
'font.family.brand': '--ds-font-family-brand',
|
|
346
366
|
'font.size.050': '--ds-font-size-050',
|
|
347
367
|
'font.size.075': '--ds-font-size-075',
|
|
348
368
|
'font.size.100': '--ds-font-size-100',
|
|
@@ -355,6 +375,7 @@ var tokens = {
|
|
|
355
375
|
'font.weight.medium': '--ds-font-weight-medium',
|
|
356
376
|
'font.weight.regular': '--ds-font-weight-regular',
|
|
357
377
|
'font.weight.semibold': '--ds-font-weight-semibold',
|
|
378
|
+
'font.lineHeight.1': '--ds-font-lineHeight-1',
|
|
358
379
|
'font.lineHeight.100': '--ds-font-lineHeight-100',
|
|
359
380
|
'font.lineHeight.200': '--ds-font-lineHeight-200',
|
|
360
381
|
'font.lineHeight.300': '--ds-font-lineHeight-300',
|