@atlaskit/tokens 1.36.0 → 1.37.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/CHANGELOG.md +12 -0
- package/codemods/css-to-design-tokens/__tests__/css-to-design-tokens.test.tsx +489 -0
- package/codemods/css-to-design-tokens/__tests__/utils.test.tsx +145 -0
- package/codemods/css-to-design-tokens/lib/colors.tsx +71 -0
- package/codemods/css-to-design-tokens/lib/declaration.tsx +43 -0
- package/codemods/css-to-design-tokens/lib/legacy-colors.tsx +336 -0
- package/codemods/css-to-design-tokens/lib/meta.tsx +173 -0
- package/codemods/css-to-design-tokens/lib/tokens.tsx +54 -0
- package/codemods/css-to-design-tokens/lib/value.tsx +85 -0
- package/codemods/css-to-design-tokens/transform.tsx +99 -0
- package/codemods/hypermod.config.tsx +9 -0
- package/codemods/theme-to-design-tokens/__tests__/theme-to-design-tokens.test.tsx +1104 -0
- package/codemods/theme-to-design-tokens/transform.tsx +628 -0
- package/codemods/theme-to-design-tokens/utils/ast-meta.tsx +159 -0
- package/codemods/theme-to-design-tokens/utils/ast.tsx +46 -0
- package/codemods/theme-to-design-tokens/utils/color.tsx +45 -0
- package/codemods/theme-to-design-tokens/utils/css-utils.tsx +38 -0
- package/codemods/theme-to-design-tokens/utils/fuzzy-search.tsx +326 -0
- package/codemods/theme-to-design-tokens/utils/legacy-colors.tsx +232 -0
- package/codemods/theme-to-design-tokens/utils/named-colors.tsx +150 -0
- package/codemods/theme-to-design-tokens/utils/string-utils.tsx +22 -0
- package/codemods/utils/tokens.tsx +376 -0
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +3 -3
- package/dist/cjs/artifacts/themes/atlassian-typography-adg3.js +2 -2
- package/dist/cjs/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +15 -15
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-adg3.js +15 -15
- package/dist/cjs/artifacts/tokens-raw/atlassian-typography-minor3.js +16 -16
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +3 -3
- package/dist/es2019/artifacts/themes/atlassian-typography-adg3.js +15 -15
- package/dist/es2019/artifacts/themes/atlassian-typography-minor3.js +20 -20
- package/dist/es2019/artifacts/token-default-values.js +15 -15
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-adg3.js +15 -15
- package/dist/es2019/artifacts/tokens-raw/atlassian-typography-minor3.js +16 -16
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +3 -3
- package/dist/esm/artifacts/themes/atlassian-typography-adg3.js +2 -2
- package/dist/esm/artifacts/themes/atlassian-typography-minor3.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +15 -15
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-adg3.js +15 -15
- package/dist/esm/artifacts/tokens-raw/atlassian-typography-minor3.js +16 -16
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
- package/dist/types/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +15 -15
- package/dist/types/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-adg3.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/themes/atlassian-typography-minor3.d.ts +2 -2
- package/dist/types-ts4.5/artifacts/token-default-values.d.ts +15 -15
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-adg3.d.ts +1 -1
- package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-typography-minor3.d.ts +1 -1
- package/package.json +5 -1
|
@@ -0,0 +1,376 @@
|
|
|
1
|
+
export const activeTokens = [
|
|
2
|
+
'color.text',
|
|
3
|
+
'color.text.accent.lime',
|
|
4
|
+
'color.text.accent.lime.bolder',
|
|
5
|
+
'color.text.accent.red',
|
|
6
|
+
'color.text.accent.red.bolder',
|
|
7
|
+
'color.text.accent.orange',
|
|
8
|
+
'color.text.accent.orange.bolder',
|
|
9
|
+
'color.text.accent.yellow',
|
|
10
|
+
'color.text.accent.yellow.bolder',
|
|
11
|
+
'color.text.accent.green',
|
|
12
|
+
'color.text.accent.green.bolder',
|
|
13
|
+
'color.text.accent.teal',
|
|
14
|
+
'color.text.accent.teal.bolder',
|
|
15
|
+
'color.text.accent.blue',
|
|
16
|
+
'color.text.accent.blue.bolder',
|
|
17
|
+
'color.text.accent.purple',
|
|
18
|
+
'color.text.accent.purple.bolder',
|
|
19
|
+
'color.text.accent.magenta',
|
|
20
|
+
'color.text.accent.magenta.bolder',
|
|
21
|
+
'color.text.accent.gray',
|
|
22
|
+
'color.text.accent.gray.bolder',
|
|
23
|
+
'color.text.disabled',
|
|
24
|
+
'color.text.inverse',
|
|
25
|
+
'color.text.selected',
|
|
26
|
+
'color.text.brand',
|
|
27
|
+
'color.text.danger',
|
|
28
|
+
'color.text.warning',
|
|
29
|
+
'color.text.warning.inverse',
|
|
30
|
+
'color.text.success',
|
|
31
|
+
'color.text.discovery',
|
|
32
|
+
'color.text.information',
|
|
33
|
+
'color.text.subtlest',
|
|
34
|
+
'color.text.subtle',
|
|
35
|
+
'color.link',
|
|
36
|
+
'color.link.pressed',
|
|
37
|
+
'color.link.visited',
|
|
38
|
+
'color.icon',
|
|
39
|
+
'color.icon.accent.lime',
|
|
40
|
+
'color.icon.accent.red',
|
|
41
|
+
'color.icon.accent.orange',
|
|
42
|
+
'color.icon.accent.yellow',
|
|
43
|
+
'color.icon.accent.green',
|
|
44
|
+
'color.icon.accent.teal',
|
|
45
|
+
'color.icon.accent.blue',
|
|
46
|
+
'color.icon.accent.purple',
|
|
47
|
+
'color.icon.accent.magenta',
|
|
48
|
+
'color.icon.accent.gray',
|
|
49
|
+
'color.icon.disabled',
|
|
50
|
+
'color.icon.inverse',
|
|
51
|
+
'color.icon.selected',
|
|
52
|
+
'color.icon.brand',
|
|
53
|
+
'color.icon.danger',
|
|
54
|
+
'color.icon.warning',
|
|
55
|
+
'color.icon.warning.inverse',
|
|
56
|
+
'color.icon.success',
|
|
57
|
+
'color.icon.discovery',
|
|
58
|
+
'color.icon.information',
|
|
59
|
+
'color.icon.subtle',
|
|
60
|
+
'color.border',
|
|
61
|
+
'color.border.accent.lime',
|
|
62
|
+
'color.border.accent.red',
|
|
63
|
+
'color.border.accent.orange',
|
|
64
|
+
'color.border.accent.yellow',
|
|
65
|
+
'color.border.accent.green',
|
|
66
|
+
'color.border.accent.teal',
|
|
67
|
+
'color.border.accent.blue',
|
|
68
|
+
'color.border.accent.purple',
|
|
69
|
+
'color.border.accent.magenta',
|
|
70
|
+
'color.border.accent.gray',
|
|
71
|
+
'color.border.disabled',
|
|
72
|
+
'color.border.focused',
|
|
73
|
+
'color.border.input',
|
|
74
|
+
'color.border.inverse',
|
|
75
|
+
'color.border.selected',
|
|
76
|
+
'color.border.brand',
|
|
77
|
+
'color.border.danger',
|
|
78
|
+
'color.border.warning',
|
|
79
|
+
'color.border.success',
|
|
80
|
+
'color.border.discovery',
|
|
81
|
+
'color.border.information',
|
|
82
|
+
'color.border.bold',
|
|
83
|
+
'color.background.accent.lime.subtlest',
|
|
84
|
+
'color.background.accent.lime.subtlest.hovered',
|
|
85
|
+
'color.background.accent.lime.subtlest.pressed',
|
|
86
|
+
'color.background.accent.lime.subtler',
|
|
87
|
+
'color.background.accent.lime.subtler.hovered',
|
|
88
|
+
'color.background.accent.lime.subtler.pressed',
|
|
89
|
+
'color.background.accent.lime.subtle',
|
|
90
|
+
'color.background.accent.lime.subtle.hovered',
|
|
91
|
+
'color.background.accent.lime.subtle.pressed',
|
|
92
|
+
'color.background.accent.lime.bolder',
|
|
93
|
+
'color.background.accent.lime.bolder.hovered',
|
|
94
|
+
'color.background.accent.lime.bolder.pressed',
|
|
95
|
+
'color.background.accent.red.subtlest',
|
|
96
|
+
'color.background.accent.red.subtlest.hovered',
|
|
97
|
+
'color.background.accent.red.subtlest.pressed',
|
|
98
|
+
'color.background.accent.red.subtler',
|
|
99
|
+
'color.background.accent.red.subtler.hovered',
|
|
100
|
+
'color.background.accent.red.subtler.pressed',
|
|
101
|
+
'color.background.accent.red.subtle',
|
|
102
|
+
'color.background.accent.red.subtle.hovered',
|
|
103
|
+
'color.background.accent.red.subtle.pressed',
|
|
104
|
+
'color.background.accent.red.bolder',
|
|
105
|
+
'color.background.accent.red.bolder.hovered',
|
|
106
|
+
'color.background.accent.red.bolder.pressed',
|
|
107
|
+
'color.background.accent.orange.subtlest',
|
|
108
|
+
'color.background.accent.orange.subtlest.hovered',
|
|
109
|
+
'color.background.accent.orange.subtlest.pressed',
|
|
110
|
+
'color.background.accent.orange.subtler',
|
|
111
|
+
'color.background.accent.orange.subtler.hovered',
|
|
112
|
+
'color.background.accent.orange.subtler.pressed',
|
|
113
|
+
'color.background.accent.orange.subtle',
|
|
114
|
+
'color.background.accent.orange.subtle.hovered',
|
|
115
|
+
'color.background.accent.orange.subtle.pressed',
|
|
116
|
+
'color.background.accent.orange.bolder',
|
|
117
|
+
'color.background.accent.orange.bolder.hovered',
|
|
118
|
+
'color.background.accent.orange.bolder.pressed',
|
|
119
|
+
'color.background.accent.yellow.subtlest',
|
|
120
|
+
'color.background.accent.yellow.subtlest.hovered',
|
|
121
|
+
'color.background.accent.yellow.subtlest.pressed',
|
|
122
|
+
'color.background.accent.yellow.subtler',
|
|
123
|
+
'color.background.accent.yellow.subtler.hovered',
|
|
124
|
+
'color.background.accent.yellow.subtler.pressed',
|
|
125
|
+
'color.background.accent.yellow.subtle',
|
|
126
|
+
'color.background.accent.yellow.subtle.hovered',
|
|
127
|
+
'color.background.accent.yellow.subtle.pressed',
|
|
128
|
+
'color.background.accent.yellow.bolder',
|
|
129
|
+
'color.background.accent.yellow.bolder.hovered',
|
|
130
|
+
'color.background.accent.yellow.bolder.pressed',
|
|
131
|
+
'color.background.accent.green.subtlest',
|
|
132
|
+
'color.background.accent.green.subtlest.hovered',
|
|
133
|
+
'color.background.accent.green.subtlest.pressed',
|
|
134
|
+
'color.background.accent.green.subtler',
|
|
135
|
+
'color.background.accent.green.subtler.hovered',
|
|
136
|
+
'color.background.accent.green.subtler.pressed',
|
|
137
|
+
'color.background.accent.green.subtle',
|
|
138
|
+
'color.background.accent.green.subtle.hovered',
|
|
139
|
+
'color.background.accent.green.subtle.pressed',
|
|
140
|
+
'color.background.accent.green.bolder',
|
|
141
|
+
'color.background.accent.green.bolder.hovered',
|
|
142
|
+
'color.background.accent.green.bolder.pressed',
|
|
143
|
+
'color.background.accent.teal.subtlest',
|
|
144
|
+
'color.background.accent.teal.subtlest.hovered',
|
|
145
|
+
'color.background.accent.teal.subtlest.pressed',
|
|
146
|
+
'color.background.accent.teal.subtler',
|
|
147
|
+
'color.background.accent.teal.subtler.hovered',
|
|
148
|
+
'color.background.accent.teal.subtler.pressed',
|
|
149
|
+
'color.background.accent.teal.subtle',
|
|
150
|
+
'color.background.accent.teal.subtle.hovered',
|
|
151
|
+
'color.background.accent.teal.subtle.pressed',
|
|
152
|
+
'color.background.accent.teal.bolder',
|
|
153
|
+
'color.background.accent.teal.bolder.hovered',
|
|
154
|
+
'color.background.accent.teal.bolder.pressed',
|
|
155
|
+
'color.background.accent.blue.subtlest',
|
|
156
|
+
'color.background.accent.blue.subtlest.hovered',
|
|
157
|
+
'color.background.accent.blue.subtlest.pressed',
|
|
158
|
+
'color.background.accent.blue.subtler',
|
|
159
|
+
'color.background.accent.blue.subtler.hovered',
|
|
160
|
+
'color.background.accent.blue.subtler.pressed',
|
|
161
|
+
'color.background.accent.blue.subtle',
|
|
162
|
+
'color.background.accent.blue.subtle.hovered',
|
|
163
|
+
'color.background.accent.blue.subtle.pressed',
|
|
164
|
+
'color.background.accent.blue.bolder',
|
|
165
|
+
'color.background.accent.blue.bolder.hovered',
|
|
166
|
+
'color.background.accent.blue.bolder.pressed',
|
|
167
|
+
'color.background.accent.purple.subtlest',
|
|
168
|
+
'color.background.accent.purple.subtlest.hovered',
|
|
169
|
+
'color.background.accent.purple.subtlest.pressed',
|
|
170
|
+
'color.background.accent.purple.subtler',
|
|
171
|
+
'color.background.accent.purple.subtler.hovered',
|
|
172
|
+
'color.background.accent.purple.subtler.pressed',
|
|
173
|
+
'color.background.accent.purple.subtle',
|
|
174
|
+
'color.background.accent.purple.subtle.hovered',
|
|
175
|
+
'color.background.accent.purple.subtle.pressed',
|
|
176
|
+
'color.background.accent.purple.bolder',
|
|
177
|
+
'color.background.accent.purple.bolder.hovered',
|
|
178
|
+
'color.background.accent.purple.bolder.pressed',
|
|
179
|
+
'color.background.accent.magenta.subtlest',
|
|
180
|
+
'color.background.accent.magenta.subtlest.hovered',
|
|
181
|
+
'color.background.accent.magenta.subtlest.pressed',
|
|
182
|
+
'color.background.accent.magenta.subtler',
|
|
183
|
+
'color.background.accent.magenta.subtler.hovered',
|
|
184
|
+
'color.background.accent.magenta.subtler.pressed',
|
|
185
|
+
'color.background.accent.magenta.subtle',
|
|
186
|
+
'color.background.accent.magenta.subtle.hovered',
|
|
187
|
+
'color.background.accent.magenta.subtle.pressed',
|
|
188
|
+
'color.background.accent.magenta.bolder',
|
|
189
|
+
'color.background.accent.magenta.bolder.hovered',
|
|
190
|
+
'color.background.accent.magenta.bolder.pressed',
|
|
191
|
+
'color.background.accent.gray.subtlest',
|
|
192
|
+
'color.background.accent.gray.subtlest.hovered',
|
|
193
|
+
'color.background.accent.gray.subtlest.pressed',
|
|
194
|
+
'color.background.accent.gray.subtler',
|
|
195
|
+
'color.background.accent.gray.subtler.hovered',
|
|
196
|
+
'color.background.accent.gray.subtler.pressed',
|
|
197
|
+
'color.background.accent.gray.subtle',
|
|
198
|
+
'color.background.accent.gray.subtle.hovered',
|
|
199
|
+
'color.background.accent.gray.subtle.pressed',
|
|
200
|
+
'color.background.accent.gray.bolder',
|
|
201
|
+
'color.background.accent.gray.bolder.hovered',
|
|
202
|
+
'color.background.accent.gray.bolder.pressed',
|
|
203
|
+
'color.background.disabled',
|
|
204
|
+
'color.background.input',
|
|
205
|
+
'color.background.input.hovered',
|
|
206
|
+
'color.background.input.pressed',
|
|
207
|
+
'color.background.inverse.subtle',
|
|
208
|
+
'color.background.inverse.subtle.hovered',
|
|
209
|
+
'color.background.inverse.subtle.pressed',
|
|
210
|
+
'color.background.neutral',
|
|
211
|
+
'color.background.neutral.hovered',
|
|
212
|
+
'color.background.neutral.pressed',
|
|
213
|
+
'color.background.neutral.subtle',
|
|
214
|
+
'color.background.neutral.subtle.hovered',
|
|
215
|
+
'color.background.neutral.subtle.pressed',
|
|
216
|
+
'color.background.neutral.bold',
|
|
217
|
+
'color.background.neutral.bold.hovered',
|
|
218
|
+
'color.background.neutral.bold.pressed',
|
|
219
|
+
'color.background.selected',
|
|
220
|
+
'color.background.selected.hovered',
|
|
221
|
+
'color.background.selected.pressed',
|
|
222
|
+
'color.background.selected.bold',
|
|
223
|
+
'color.background.selected.bold.hovered',
|
|
224
|
+
'color.background.selected.bold.pressed',
|
|
225
|
+
'color.background.brand.subtlest',
|
|
226
|
+
'color.background.brand.subtlest.hovered',
|
|
227
|
+
'color.background.brand.subtlest.pressed',
|
|
228
|
+
'color.background.brand.bold',
|
|
229
|
+
'color.background.brand.bold.hovered',
|
|
230
|
+
'color.background.brand.bold.pressed',
|
|
231
|
+
'color.background.brand.boldest',
|
|
232
|
+
'color.background.brand.boldest.hovered',
|
|
233
|
+
'color.background.brand.boldest.pressed',
|
|
234
|
+
'color.background.danger',
|
|
235
|
+
'color.background.danger.hovered',
|
|
236
|
+
'color.background.danger.pressed',
|
|
237
|
+
'color.background.danger.bold',
|
|
238
|
+
'color.background.danger.bold.hovered',
|
|
239
|
+
'color.background.danger.bold.pressed',
|
|
240
|
+
'color.background.warning',
|
|
241
|
+
'color.background.warning.hovered',
|
|
242
|
+
'color.background.warning.pressed',
|
|
243
|
+
'color.background.warning.bold',
|
|
244
|
+
'color.background.warning.bold.hovered',
|
|
245
|
+
'color.background.warning.bold.pressed',
|
|
246
|
+
'color.background.success',
|
|
247
|
+
'color.background.success.hovered',
|
|
248
|
+
'color.background.success.pressed',
|
|
249
|
+
'color.background.success.bold',
|
|
250
|
+
'color.background.success.bold.hovered',
|
|
251
|
+
'color.background.success.bold.pressed',
|
|
252
|
+
'color.background.discovery',
|
|
253
|
+
'color.background.discovery.hovered',
|
|
254
|
+
'color.background.discovery.pressed',
|
|
255
|
+
'color.background.discovery.bold',
|
|
256
|
+
'color.background.discovery.bold.hovered',
|
|
257
|
+
'color.background.discovery.bold.pressed',
|
|
258
|
+
'color.background.information',
|
|
259
|
+
'color.background.information.hovered',
|
|
260
|
+
'color.background.information.pressed',
|
|
261
|
+
'color.background.information.bold',
|
|
262
|
+
'color.background.information.bold.hovered',
|
|
263
|
+
'color.background.information.bold.pressed',
|
|
264
|
+
'color.blanket',
|
|
265
|
+
'color.blanket.selected',
|
|
266
|
+
'color.blanket.danger',
|
|
267
|
+
'color.skeleton',
|
|
268
|
+
'color.skeleton.subtle',
|
|
269
|
+
'elevation.surface',
|
|
270
|
+
'elevation.surface.hovered',
|
|
271
|
+
'elevation.surface.pressed',
|
|
272
|
+
'elevation.surface.overlay',
|
|
273
|
+
'elevation.surface.overlay.hovered',
|
|
274
|
+
'elevation.surface.overlay.pressed',
|
|
275
|
+
'elevation.surface.raised',
|
|
276
|
+
'elevation.surface.raised.hovered',
|
|
277
|
+
'elevation.surface.raised.pressed',
|
|
278
|
+
'elevation.surface.sunken',
|
|
279
|
+
'elevation.shadow.overlay',
|
|
280
|
+
'elevation.shadow.raised',
|
|
281
|
+
'opacity.disabled',
|
|
282
|
+
'opacity.loading',
|
|
283
|
+
'utility.elevation.surface.current',
|
|
284
|
+
];
|
|
285
|
+
|
|
286
|
+
export const uniqueWordsFromTokens = [
|
|
287
|
+
'color',
|
|
288
|
+
'text',
|
|
289
|
+
'accent',
|
|
290
|
+
'lime',
|
|
291
|
+
'bolder',
|
|
292
|
+
'red',
|
|
293
|
+
'orange',
|
|
294
|
+
'yellow',
|
|
295
|
+
'green',
|
|
296
|
+
'teal',
|
|
297
|
+
'blue',
|
|
298
|
+
'purple',
|
|
299
|
+
'magenta',
|
|
300
|
+
'gray',
|
|
301
|
+
'disabled',
|
|
302
|
+
'inverse',
|
|
303
|
+
'selected',
|
|
304
|
+
'brand',
|
|
305
|
+
'danger',
|
|
306
|
+
'warning',
|
|
307
|
+
'success',
|
|
308
|
+
'discovery',
|
|
309
|
+
'information',
|
|
310
|
+
'subtlest',
|
|
311
|
+
'subtle',
|
|
312
|
+
'link',
|
|
313
|
+
'pressed',
|
|
314
|
+
'visited',
|
|
315
|
+
'icon',
|
|
316
|
+
'border',
|
|
317
|
+
'focused',
|
|
318
|
+
'input',
|
|
319
|
+
'bold',
|
|
320
|
+
'background',
|
|
321
|
+
'hovered',
|
|
322
|
+
'subtler',
|
|
323
|
+
'neutral',
|
|
324
|
+
'boldest',
|
|
325
|
+
'blanket',
|
|
326
|
+
'interaction',
|
|
327
|
+
'skeleton',
|
|
328
|
+
'chart',
|
|
329
|
+
'categorical',
|
|
330
|
+
'elevation',
|
|
331
|
+
'surface',
|
|
332
|
+
'overlay',
|
|
333
|
+
'raised',
|
|
334
|
+
'sunken',
|
|
335
|
+
'shadow',
|
|
336
|
+
'overflow',
|
|
337
|
+
'perimeter',
|
|
338
|
+
'spread',
|
|
339
|
+
'opacity',
|
|
340
|
+
'loading',
|
|
341
|
+
'utility',
|
|
342
|
+
'transform',
|
|
343
|
+
'uppercase',
|
|
344
|
+
'transparent',
|
|
345
|
+
'current',
|
|
346
|
+
'radius',
|
|
347
|
+
'circle',
|
|
348
|
+
'width',
|
|
349
|
+
'indicator',
|
|
350
|
+
'outline',
|
|
351
|
+
'space',
|
|
352
|
+
'negative',
|
|
353
|
+
'font',
|
|
354
|
+
'heading',
|
|
355
|
+
'xxlarge',
|
|
356
|
+
'xlarge',
|
|
357
|
+
'large',
|
|
358
|
+
'medium',
|
|
359
|
+
'small',
|
|
360
|
+
'xsmall',
|
|
361
|
+
'xxsmall',
|
|
362
|
+
'body',
|
|
363
|
+
'ui',
|
|
364
|
+
'code',
|
|
365
|
+
'letter',
|
|
366
|
+
'spacing',
|
|
367
|
+
'family',
|
|
368
|
+
'monospace',
|
|
369
|
+
'sans',
|
|
370
|
+
'size',
|
|
371
|
+
'weight',
|
|
372
|
+
'regular',
|
|
373
|
+
'semibold',
|
|
374
|
+
'line',
|
|
375
|
+
'height',
|
|
376
|
+
];
|
|
@@ -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::7e7682a077bd4735a11d99a880446147>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
12
|
var tokens = [{
|
|
@@ -70,14 +70,14 @@ var tokens = [{
|
|
|
70
70
|
"name": "typography.fontFamily.FontFamilyWebMono",
|
|
71
71
|
"path": ["typography", "fontFamily", "FontFamilyWebMono"]
|
|
72
72
|
}, {
|
|
73
|
-
"value": "ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
73
|
+
"value": "ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
74
74
|
"attributes": {
|
|
75
75
|
"group": "fontFamily"
|
|
76
76
|
},
|
|
77
77
|
"filePath": "schema/palettes/typography-palette.tsx",
|
|
78
78
|
"isSource": true,
|
|
79
79
|
"original": {
|
|
80
|
-
"value": "ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
80
|
+
"value": "ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
81
81
|
"attributes": {
|
|
82
82
|
"group": "fontFamily"
|
|
83
83
|
}
|
|
@@ -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::8805a9363c77bb3681dad874e8097353>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
|
-
var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-adg3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 500 2.1875rem/2.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 600 1.8125rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 500 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 500 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 600 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 600 0.875rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 600 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.6875rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.6875rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\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-family-body: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\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";
|
|
12
|
+
var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-adg3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 500 2.1875rem/2.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 600 1.8125rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 500 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 500 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 600 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 600 0.875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 600 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.6875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.6875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\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-family-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\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";
|
|
@@ -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::7c5ec982604c24a59432d3e7d47d1419>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
|
-
var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\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-family-body: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\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 @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
|
|
12
|
+
var _default = exports.default = "\nhtml[data-theme~=\"typography:typography-minor3\"] {\n --ds-UNSAFE-textTransformUppercase: uppercase;\n --ds-font-heading-xxlarge: normal 700 2rem/2.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.75rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-small: normal 700 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xsmall: normal 700 0.875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xxsmall: normal 700 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-large: normal 400 1rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body: normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-body-small: normal 400 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui: normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-ui-small: normal 400 0.75rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-code: normal 400 0.875em/1 ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\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-family-body: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-code: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-heading: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-monospace: ui-monospace, Menlo, \"Segoe UI Mono\", \"Ubuntu Mono\", monospace;\n --ds-font-family-sans: ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-family-brand: Charlie Sans;\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 @media not all and (min-width: 64rem) {\n --ds-font-heading-xxlarge: normal 700 1.75rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-xlarge: normal 700 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-large: normal 700 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n --ds-font-heading-medium: normal 700 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif;\n }\n}\n";
|
|
@@ -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::0be8396ce2b2c338731e309ec56b045d>>
|
|
17
17
|
* @codegenCommand yarn build tokens
|
|
18
18
|
*/
|
|
19
19
|
var defaultTokenValues = {
|
|
@@ -440,27 +440,27 @@ var defaultTokenValues = {
|
|
|
440
440
|
'space.negative.250': '-1.25rem',
|
|
441
441
|
'space.negative.300': '-1.5rem',
|
|
442
442
|
'space.negative.400': '-2rem',
|
|
443
|
-
'font.heading.xxlarge': 'normal 500 2.1875rem/2.5rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
444
|
-
'font.heading.xlarge': 'normal 600 1.8125rem/2rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
445
|
-
'font.heading.large': 'normal 500 1.5rem/1.75rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
446
|
-
'font.heading.medium': 'normal 500 1.25rem/1.5rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
447
|
-
'font.heading.small': 'normal 600 1rem/1.25rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
448
|
-
'font.heading.xsmall': 'normal 600 0.875rem/1rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
449
|
-
'font.heading.xxsmall': 'normal 600 0.75rem/1rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
450
|
-
'font.body.large': 'normal 400 1rem/1.5rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
451
|
-
'font.body': 'normal 400 0.875rem/1.25rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
452
|
-
'font.body.small': 'normal 400 0.6875rem/1rem ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
453
|
-
'font.ui': 'normal 500 0.875rem/1 ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
454
|
-
'font.ui.small': 'normal 400 0.6875rem/1 ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
443
|
+
'font.heading.xxlarge': 'normal 500 2.1875rem/2.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
444
|
+
'font.heading.xlarge': 'normal 600 1.8125rem/2rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
445
|
+
'font.heading.large': 'normal 500 1.5rem/1.75rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
446
|
+
'font.heading.medium': 'normal 500 1.25rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
447
|
+
'font.heading.small': 'normal 600 1rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
448
|
+
'font.heading.xsmall': 'normal 600 0.875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
449
|
+
'font.heading.xxsmall': 'normal 600 0.75rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
450
|
+
'font.body.large': 'normal 400 1rem/1.5rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
451
|
+
'font.body': 'normal 400 0.875rem/1.25rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
452
|
+
'font.body.small': 'normal 400 0.6875rem/1rem ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
453
|
+
'font.ui': 'normal 500 0.875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
454
|
+
'font.ui.small': 'normal 400 0.6875rem/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
455
455
|
'font.code': 'normal 400 0.875em/1 ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
456
456
|
'font.letterSpacing.0': '0',
|
|
457
457
|
'font.letterSpacing.100': '-0.003em',
|
|
458
458
|
'font.letterSpacing.200': '-0.006em',
|
|
459
459
|
'font.letterSpacing.300': '-0.008em',
|
|
460
460
|
'font.letterSpacing.400': '-0.01em',
|
|
461
|
-
'font.family.body': 'ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
461
|
+
'font.family.body': 'ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
462
462
|
'font.family.code': 'ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
463
|
-
'font.family.heading': 'ui-sans-serif, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
463
|
+
'font.family.heading': 'ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Ubuntu, system-ui, "Helvetica Neue", sans-serif',
|
|
464
464
|
'font.family.monospace': 'ui-monospace, Menlo, "Segoe UI Mono", "Ubuntu Mono", monospace',
|
|
465
465
|
'font.family.sans': '-apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif',
|
|
466
466
|
'font.family.brand': 'Charlie Sans',
|
|
@@ -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::70af860fac3168f1ea8797320fe6b8a5>>
|
|
10
10
|
* @codegenCommand yarn build tokens
|
|
11
11
|
*/
|
|
12
12
|
var tokens = [{
|
|
@@ -39,7 +39,7 @@ var tokens = [{
|
|
|
39
39
|
"description": "ALPHA - Use with caution. Use for main headings.",
|
|
40
40
|
"responsiveSmallerVariant": "font.heading.xlarge"
|
|
41
41
|
},
|
|
42
|
-
"value": "normal 500 35px/40px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
42
|
+
"value": "normal 500 35px/40px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
43
43
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
44
44
|
"isSource": true,
|
|
45
45
|
"original": {
|
|
@@ -70,7 +70,7 @@ var tokens = [{
|
|
|
70
70
|
"description": "ALPHA - Use with caution. Use for main headings.",
|
|
71
71
|
"responsiveSmallerVariant": "font.heading.large"
|
|
72
72
|
},
|
|
73
|
-
"value": "normal 600 29px/32px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
73
|
+
"value": "normal 600 29px/32px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
74
74
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
75
75
|
"isSource": true,
|
|
76
76
|
"original": {
|
|
@@ -101,7 +101,7 @@ var tokens = [{
|
|
|
101
101
|
"description": "ALPHA - Use with caution. Use for main headings.",
|
|
102
102
|
"responsiveSmallerVariant": "font.heading.medium"
|
|
103
103
|
},
|
|
104
|
-
"value": "normal 500 24px/28px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
104
|
+
"value": "normal 500 24px/28px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
105
105
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
106
106
|
"isSource": true,
|
|
107
107
|
"original": {
|
|
@@ -132,7 +132,7 @@ var tokens = [{
|
|
|
132
132
|
"description": "ALPHA - Use with caution. Use for less important headings.",
|
|
133
133
|
"responsiveSmallerVariant": "font.heading.small"
|
|
134
134
|
},
|
|
135
|
-
"value": "normal 500 20px/24px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
135
|
+
"value": "normal 500 20px/24px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
136
136
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
137
137
|
"isSource": true,
|
|
138
138
|
"original": {
|
|
@@ -162,7 +162,7 @@ var tokens = [{
|
|
|
162
162
|
"introduced": "1.14.0",
|
|
163
163
|
"description": "ALPHA - Use with caution. Use for less important headings."
|
|
164
164
|
},
|
|
165
|
-
"value": "normal 600 16px/20px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
165
|
+
"value": "normal 600 16px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
166
166
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
167
167
|
"isSource": true,
|
|
168
168
|
"original": {
|
|
@@ -191,7 +191,7 @@ var tokens = [{
|
|
|
191
191
|
"introduced": "1.14.0",
|
|
192
192
|
"description": "ALPHA - Use with caution. Use for smaller headings."
|
|
193
193
|
},
|
|
194
|
-
"value": "normal 600 14px/16px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
194
|
+
"value": "normal 600 14px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
195
195
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
196
196
|
"isSource": true,
|
|
197
197
|
"original": {
|
|
@@ -220,7 +220,7 @@ var tokens = [{
|
|
|
220
220
|
"introduced": "1.14.0",
|
|
221
221
|
"description": "ALPHA - Use with caution. Smallest heading size available."
|
|
222
222
|
},
|
|
223
|
-
"value": "normal 600 12px/16px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
223
|
+
"value": "normal 600 12px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
224
224
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
225
225
|
"isSource": true,
|
|
226
226
|
"original": {
|
|
@@ -249,7 +249,7 @@ var tokens = [{
|
|
|
249
249
|
"introduced": "1.14.0",
|
|
250
250
|
"description": "ALPHA - Use with caution. Larger body font or default body font for text rich experiences."
|
|
251
251
|
},
|
|
252
|
-
"value": "normal 400 16px/24px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
252
|
+
"value": "normal 400 16px/24px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
253
253
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
254
254
|
"isSource": true,
|
|
255
255
|
"original": {
|
|
@@ -278,7 +278,7 @@ var tokens = [{
|
|
|
278
278
|
"introduced": "1.14.0",
|
|
279
279
|
"description": "ALPHA - Use with caution. The default body font."
|
|
280
280
|
},
|
|
281
|
-
"value": "normal 400 14px/20px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
281
|
+
"value": "normal 400 14px/20px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
282
282
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
283
283
|
"isSource": true,
|
|
284
284
|
"original": {
|
|
@@ -307,7 +307,7 @@ var tokens = [{
|
|
|
307
307
|
"introduced": "1.14.0",
|
|
308
308
|
"description": "ALPHA - Use with caution. Smaller body font."
|
|
309
309
|
},
|
|
310
|
-
"value": "normal 400 11px/16px ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
310
|
+
"value": "normal 400 11px/16px ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
311
311
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
312
312
|
"isSource": true,
|
|
313
313
|
"original": {
|
|
@@ -336,7 +336,7 @@ var tokens = [{
|
|
|
336
336
|
"introduced": "1.14.0",
|
|
337
337
|
"description": "ALPHA - Use with caution. Single-line non-wrapping text like that in a button."
|
|
338
338
|
},
|
|
339
|
-
"value": "normal 500 14px/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
339
|
+
"value": "normal 500 14px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
340
340
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
341
341
|
"isSource": true,
|
|
342
342
|
"original": {
|
|
@@ -365,7 +365,7 @@ var tokens = [{
|
|
|
365
365
|
"introduced": "1.14.0",
|
|
366
366
|
"description": "ALPHA - Use with caution. Single-line non-wrapping supporting text like that in a smaller label."
|
|
367
367
|
},
|
|
368
|
-
"value": "normal 400 11px/1 ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
368
|
+
"value": "normal 400 11px/1 ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
369
369
|
"filePath": "schema/themes/atlassian-typography-adg3/theme.tsx",
|
|
370
370
|
"isSource": true,
|
|
371
371
|
"original": {
|
|
@@ -544,7 +544,7 @@ var tokens = [{
|
|
|
544
544
|
"description": "Helpful guidance goes here",
|
|
545
545
|
"deprecated": "1.29.0"
|
|
546
546
|
},
|
|
547
|
-
"value": "ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
547
|
+
"value": "ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
548
548
|
"filePath": "schema/themes/atlassian-typography-adg3/font-family.tsx",
|
|
549
549
|
"isSource": true,
|
|
550
550
|
"original": {
|
|
@@ -592,7 +592,7 @@ var tokens = [{
|
|
|
592
592
|
"description": "Helpful guidance goes here",
|
|
593
593
|
"deprecated": "1.29.0"
|
|
594
594
|
},
|
|
595
|
-
"value": "ui-sans-serif, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
595
|
+
"value": "ui-sans-serif, -apple-system, BlinkMacSystemFont, \"Segoe UI\", Ubuntu, system-ui, \"Helvetica Neue\", sans-serif",
|
|
596
596
|
"filePath": "schema/themes/atlassian-typography-adg3/font-family.tsx",
|
|
597
597
|
"isSource": true,
|
|
598
598
|
"original": {
|