@atlaskit/tokens 5.6.3 → 6.1.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.
Files changed (113) hide show
  1. package/CHANGELOG.md +17 -0
  2. package/babel-plugin/package.json +1 -1
  3. package/codemods/theme-to-design-tokens/transform.tsx +1 -0
  4. package/css-type-schema/package.json +1 -1
  5. package/custom-themes/package.json +1 -1
  6. package/dist/cjs/artifacts/palettes-raw/shape-palette.js +53 -23
  7. package/dist/cjs/artifacts/replacement-mapping.js +29 -2
  8. package/dist/cjs/artifacts/theme-import-map.js +13 -1
  9. package/dist/cjs/artifacts/themes/atlassian-shape-rounder.js +12 -0
  10. package/dist/cjs/artifacts/themes/atlassian-shape-roundest.js +12 -0
  11. package/dist/cjs/artifacts/themes/atlassian-shape.js +2 -2
  12. package/dist/cjs/artifacts/token-default-values.js +21 -13
  13. package/dist/cjs/artifacts/token-names.js +21 -13
  14. package/dist/cjs/artifacts/tokens-raw/atlassian-shape-rounder.js +469 -0
  15. package/dist/cjs/artifacts/tokens-raw/atlassian-shape-roundest.js +469 -0
  16. package/dist/cjs/artifacts/tokens-raw/atlassian-shape.js +249 -41
  17. package/dist/cjs/constants.js +1 -1
  18. package/dist/cjs/entry-points/token-metadata.codegen.js +96 -51
  19. package/dist/cjs/theme-config.js +19 -6
  20. package/dist/cjs/theme-state-transformer.js +3 -1
  21. package/dist/cjs/utils/token-order.js +6 -3
  22. package/dist/es2019/artifacts/palettes-raw/shape-palette.js +53 -23
  23. package/dist/es2019/artifacts/replacement-mapping.js +29 -2
  24. package/dist/es2019/artifacts/theme-import-map.js +5 -1
  25. package/dist/es2019/artifacts/themes/atlassian-shape-rounder.js +28 -0
  26. package/dist/es2019/artifacts/themes/atlassian-shape-roundest.js +28 -0
  27. package/dist/es2019/artifacts/themes/atlassian-shape.js +11 -3
  28. package/dist/es2019/artifacts/token-default-values.js +21 -13
  29. package/dist/es2019/artifacts/token-names.js +21 -13
  30. package/dist/es2019/artifacts/tokens-raw/atlassian-shape-rounder.js +463 -0
  31. package/dist/es2019/artifacts/tokens-raw/atlassian-shape-roundest.js +463 -0
  32. package/dist/es2019/artifacts/tokens-raw/atlassian-shape.js +249 -41
  33. package/dist/es2019/constants.js +1 -1
  34. package/dist/es2019/entry-points/token-metadata.codegen.js +96 -51
  35. package/dist/es2019/theme-config.js +19 -6
  36. package/dist/es2019/theme-state-transformer.js +3 -1
  37. package/dist/es2019/utils/token-order.js +6 -3
  38. package/dist/esm/artifacts/palettes-raw/shape-palette.js +53 -23
  39. package/dist/esm/artifacts/replacement-mapping.js +29 -2
  40. package/dist/esm/artifacts/theme-import-map.js +9 -1
  41. package/dist/esm/artifacts/themes/atlassian-shape-rounder.js +6 -0
  42. package/dist/esm/artifacts/themes/atlassian-shape-roundest.js +6 -0
  43. package/dist/esm/artifacts/themes/atlassian-shape.js +2 -2
  44. package/dist/esm/artifacts/token-default-values.js +21 -13
  45. package/dist/esm/artifacts/token-names.js +21 -13
  46. package/dist/esm/artifacts/tokens-raw/atlassian-shape-rounder.js +463 -0
  47. package/dist/esm/artifacts/tokens-raw/atlassian-shape-roundest.js +463 -0
  48. package/dist/esm/artifacts/tokens-raw/atlassian-shape.js +249 -41
  49. package/dist/esm/constants.js +1 -1
  50. package/dist/esm/entry-points/token-metadata.codegen.js +96 -51
  51. package/dist/esm/theme-config.js +19 -6
  52. package/dist/esm/theme-state-transformer.js +3 -1
  53. package/dist/esm/utils/token-order.js +6 -3
  54. package/dist/types/artifacts/palettes-raw/shape-palette.d.ts +1 -1
  55. package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
  56. package/dist/types/artifacts/theme-import-map.d.ts +1 -1
  57. package/dist/types/artifacts/themes/atlassian-shape-rounder.d.ts +7 -0
  58. package/dist/types/artifacts/themes/atlassian-shape-roundest.d.ts +7 -0
  59. package/dist/types/artifacts/themes/atlassian-shape.d.ts +2 -2
  60. package/dist/types/artifacts/token-default-values.d.ts +20 -12
  61. package/dist/types/artifacts/token-names.d.ts +39 -23
  62. package/dist/types/artifacts/tokens-raw/atlassian-shape-rounder.d.ts +59 -0
  63. package/dist/types/artifacts/tokens-raw/atlassian-shape-roundest.d.ts +59 -0
  64. package/dist/types/artifacts/tokens-raw/atlassian-shape.d.ts +9 -5
  65. package/dist/types/artifacts/types-internal.d.ts +2 -2
  66. package/dist/types/artifacts/types.d.ts +2 -2
  67. package/dist/types/enable-global-theme.d.ts +1 -1
  68. package/dist/types/entry-points/css-type-schema.codegen.d.ts +3 -3
  69. package/dist/types/entry-points/token-metadata.codegen.d.ts +1 -1
  70. package/dist/types/get-ssr-auto-script.d.ts +1 -1
  71. package/dist/types/get-theme-styles.d.ts +1 -1
  72. package/dist/types/set-global-theme.d.ts +1 -1
  73. package/dist/types/theme-config.d.ts +4 -4
  74. package/dist/types/types.d.ts +12 -2
  75. package/dist/types/utils/color-detection.d.ts +1 -1
  76. package/dist/types/utils/custom-theme-token-contrast-check.d.ts +2 -2
  77. package/dist/types/utils/generate-custom-color-ramp.d.ts +2 -8
  78. package/dist/types-ts4.5/artifacts/palettes-raw/shape-palette.d.ts +1 -1
  79. package/dist/types-ts4.5/artifacts/replacement-mapping.d.ts +1 -1
  80. package/dist/types-ts4.5/artifacts/theme-import-map.d.ts +1 -1
  81. package/dist/types-ts4.5/artifacts/themes/atlassian-shape-rounder.d.ts +7 -0
  82. package/dist/types-ts4.5/artifacts/themes/atlassian-shape-roundest.d.ts +7 -0
  83. package/dist/types-ts4.5/artifacts/themes/atlassian-shape.d.ts +2 -2
  84. package/dist/types-ts4.5/artifacts/token-default-values.d.ts +20 -12
  85. package/dist/types-ts4.5/artifacts/token-names.d.ts +39 -23
  86. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-shape-rounder.d.ts +59 -0
  87. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-shape-roundest.d.ts +59 -0
  88. package/dist/types-ts4.5/artifacts/tokens-raw/atlassian-shape.d.ts +9 -5
  89. package/dist/types-ts4.5/artifacts/types-internal.d.ts +2 -2
  90. package/dist/types-ts4.5/artifacts/types.d.ts +2 -2
  91. package/dist/types-ts4.5/enable-global-theme.d.ts +1 -1
  92. package/dist/types-ts4.5/entry-points/css-type-schema.codegen.d.ts +3 -3
  93. package/dist/types-ts4.5/entry-points/token-metadata.codegen.d.ts +1 -1
  94. package/dist/types-ts4.5/get-ssr-auto-script.d.ts +1 -1
  95. package/dist/types-ts4.5/get-theme-styles.d.ts +1 -1
  96. package/dist/types-ts4.5/set-global-theme.d.ts +1 -1
  97. package/dist/types-ts4.5/theme-config.d.ts +6 -2
  98. package/dist/types-ts4.5/types.d.ts +12 -2
  99. package/dist/types-ts4.5/utils/color-detection.d.ts +1 -1
  100. package/dist/types-ts4.5/utils/custom-theme-token-contrast-check.d.ts +2 -2
  101. package/dist/types-ts4.5/utils/generate-custom-color-ramp.d.ts +2 -4
  102. package/figma/atlassian-shape-rounder.json +114 -0
  103. package/figma/atlassian-shape-roundest.json +114 -0
  104. package/figma/atlassian-shape.json +44 -46
  105. package/package.json +8 -9
  106. package/palettes-raw/package.json +1 -1
  107. package/rename-mapping/package.json +1 -1
  108. package/token-default-values/package.json +1 -1
  109. package/token-ids/package.json +1 -1
  110. package/token-metadata/package.json +1 -1
  111. package/token-names/package.json +1 -1
  112. package/token-order/package.json +1 -1
  113. package/tokens-raw/package.json +1 -1
@@ -0,0 +1,463 @@
1
+ /**
2
+ * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
+ * @codegen <<SignedSource::70683a619511de03d801680b44fe3e86>>
4
+ * @codegenCommand yarn build tokens
5
+ */
6
+ const tokens = [{
7
+ "attributes": {
8
+ "group": "shape",
9
+ "state": "active",
10
+ "suggest": ["2px"],
11
+ "introduced": "6.1.0",
12
+ "description": "Used for small containers such as badges."
13
+ },
14
+ "value": "2px",
15
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
16
+ "isSource": true,
17
+ "original": {
18
+ "attributes": {
19
+ "group": "shape",
20
+ "state": "active",
21
+ "suggest": ["2px"],
22
+ "introduced": "6.1.0",
23
+ "description": "Used for small containers such as badges."
24
+ },
25
+ "value": "Radius02"
26
+ },
27
+ "name": "radius.xsmall",
28
+ "path": ["radius", "xsmall"],
29
+ "cleanName": "radius.xsmall"
30
+ }, {
31
+ "attributes": {
32
+ "group": "shape",
33
+ "state": "active",
34
+ "suggest": ["4px"],
35
+ "introduced": "6.1.0",
36
+ "description": "Used for labels."
37
+ },
38
+ "value": "4px",
39
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
40
+ "isSource": true,
41
+ "original": {
42
+ "attributes": {
43
+ "group": "shape",
44
+ "state": "active",
45
+ "suggest": ["4px"],
46
+ "introduced": "6.1.0",
47
+ "description": "Used for labels."
48
+ },
49
+ "value": "Radius04"
50
+ },
51
+ "name": "radius.small",
52
+ "path": ["radius", "small"],
53
+ "cleanName": "radius.small"
54
+ }, {
55
+ "attributes": {
56
+ "group": "shape",
57
+ "state": "active",
58
+ "suggest": ["6px"],
59
+ "introduced": "6.1.0",
60
+ "description": "Used for buttons and inputs."
61
+ },
62
+ "value": "6px",
63
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
64
+ "isSource": true,
65
+ "original": {
66
+ "attributes": {
67
+ "group": "shape",
68
+ "state": "active",
69
+ "suggest": ["6px"],
70
+ "introduced": "6.1.0",
71
+ "description": "Used for buttons and inputs."
72
+ },
73
+ "value": "Radius06"
74
+ },
75
+ "name": "radius.medium",
76
+ "path": ["radius", "medium"],
77
+ "cleanName": "radius.medium"
78
+ }, {
79
+ "attributes": {
80
+ "group": "shape",
81
+ "state": "active",
82
+ "suggest": ["8px"],
83
+ "introduced": "6.1.0",
84
+ "description": "Used for cards and small containers."
85
+ },
86
+ "value": "12px",
87
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
88
+ "isSource": true,
89
+ "original": {
90
+ "attributes": {
91
+ "group": "shape",
92
+ "state": "active",
93
+ "suggest": ["8px"],
94
+ "introduced": "6.1.0",
95
+ "description": "Used for cards and small containers."
96
+ },
97
+ "value": "Radius12"
98
+ },
99
+ "name": "radius.large",
100
+ "path": ["radius", "large"],
101
+ "cleanName": "radius.large"
102
+ }, {
103
+ "attributes": {
104
+ "group": "shape",
105
+ "state": "active",
106
+ "suggest": ["12px"],
107
+ "introduced": "6.1.0",
108
+ "description": "Used for modals and large containers."
109
+ },
110
+ "value": "16px",
111
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
112
+ "isSource": true,
113
+ "original": {
114
+ "attributes": {
115
+ "group": "shape",
116
+ "state": "active",
117
+ "suggest": ["12px"],
118
+ "introduced": "6.1.0",
119
+ "description": "Used for modals and large containers."
120
+ },
121
+ "value": "Radius16"
122
+ },
123
+ "name": "radius.xlarge",
124
+ "path": ["radius", "xlarge"],
125
+ "cleanName": "radius.xlarge"
126
+ }, {
127
+ "attributes": {
128
+ "group": "shape",
129
+ "state": "active",
130
+ "suggest": ["50%"],
131
+ "introduced": "6.1.0",
132
+ "description": "Used for circular containers, like a rounded button."
133
+ },
134
+ "value": "9999px",
135
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
136
+ "isSource": true,
137
+ "original": {
138
+ "attributes": {
139
+ "group": "shape",
140
+ "state": "active",
141
+ "suggest": ["50%"],
142
+ "introduced": "6.1.0",
143
+ "description": "Used for circular containers, like a rounded button."
144
+ },
145
+ "value": "Radius99"
146
+ },
147
+ "name": "radius.full",
148
+ "path": ["radius", "full"],
149
+ "cleanName": "radius.full"
150
+ }, {
151
+ "attributes": {
152
+ "group": "shape",
153
+ "state": "deprecated",
154
+ "introduced": "1.5.2",
155
+ "deprecated": "6.1.0",
156
+ "description": "The default border radius."
157
+ },
158
+ "value": "4px",
159
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
160
+ "isSource": true,
161
+ "original": {
162
+ "attributes": {
163
+ "group": "shape",
164
+ "state": "deprecated",
165
+ "introduced": "1.5.2",
166
+ "deprecated": "6.1.0",
167
+ "description": "The default border radius."
168
+ },
169
+ "value": "Radius04"
170
+ },
171
+ "name": "border.radius.[default]",
172
+ "path": ["border", "radius", "[default]"],
173
+ "cleanName": "border.radius"
174
+ }, {
175
+ "attributes": {
176
+ "group": "shape",
177
+ "state": "deprecated",
178
+ "introduced": "1.1.0",
179
+ "deprecated": "6.1.0",
180
+ "description": "Used for selection indicators, like tabs."
181
+ },
182
+ "value": "2px",
183
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
184
+ "isSource": true,
185
+ "original": {
186
+ "attributes": {
187
+ "group": "shape",
188
+ "state": "deprecated",
189
+ "introduced": "1.1.0",
190
+ "deprecated": "6.1.0",
191
+ "description": "Used for selection indicators, like tabs."
192
+ },
193
+ "value": "Radius02"
194
+ },
195
+ "name": "border.radius.050",
196
+ "path": ["border", "radius", "050"],
197
+ "cleanName": "border.radius.050"
198
+ }, {
199
+ "attributes": {
200
+ "group": "shape",
201
+ "state": "deprecated",
202
+ "introduced": "1.1.0",
203
+ "deprecated": "6.1.0",
204
+ "description": "Used for buttons and inputs."
205
+ },
206
+ "value": "4px",
207
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
208
+ "isSource": true,
209
+ "original": {
210
+ "attributes": {
211
+ "group": "shape",
212
+ "state": "deprecated",
213
+ "introduced": "1.1.0",
214
+ "deprecated": "6.1.0",
215
+ "description": "Used for buttons and inputs."
216
+ },
217
+ "value": "Radius04"
218
+ },
219
+ "name": "border.radius.100",
220
+ "path": ["border", "radius", "100"],
221
+ "cleanName": "border.radius.100"
222
+ }, {
223
+ "attributes": {
224
+ "group": "shape",
225
+ "state": "deprecated",
226
+ "introduced": "1.1.0",
227
+ "deprecated": "6.1.0",
228
+ "description": "Used for smaller cards."
229
+ },
230
+ "value": "8px",
231
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
232
+ "isSource": true,
233
+ "original": {
234
+ "attributes": {
235
+ "group": "shape",
236
+ "state": "deprecated",
237
+ "introduced": "1.1.0",
238
+ "deprecated": "6.1.0",
239
+ "description": "Used for smaller cards."
240
+ },
241
+ "value": "Radius08"
242
+ },
243
+ "name": "border.radius.200",
244
+ "path": ["border", "radius", "200"],
245
+ "cleanName": "border.radius.200"
246
+ }, {
247
+ "attributes": {
248
+ "group": "shape",
249
+ "state": "deprecated",
250
+ "introduced": "1.1.0",
251
+ "deprecated": "6.1.0",
252
+ "description": "Used for cards and larger containers."
253
+ },
254
+ "value": "12px",
255
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
256
+ "isSource": true,
257
+ "original": {
258
+ "attributes": {
259
+ "group": "shape",
260
+ "state": "deprecated",
261
+ "introduced": "1.1.0",
262
+ "deprecated": "6.1.0",
263
+ "description": "Used for cards and larger containers."
264
+ },
265
+ "value": "Radius12"
266
+ },
267
+ "name": "border.radius.300",
268
+ "path": ["border", "radius", "300"],
269
+ "cleanName": "border.radius.300"
270
+ }, {
271
+ "attributes": {
272
+ "group": "shape",
273
+ "state": "deprecated",
274
+ "introduced": "1.1.0",
275
+ "deprecated": "6.1.0",
276
+ "description": "Used for modals."
277
+ },
278
+ "value": "16px",
279
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
280
+ "isSource": true,
281
+ "original": {
282
+ "attributes": {
283
+ "group": "shape",
284
+ "state": "deprecated",
285
+ "introduced": "1.1.0",
286
+ "deprecated": "6.1.0",
287
+ "description": "Used for modals."
288
+ },
289
+ "value": "Radius16"
290
+ },
291
+ "name": "border.radius.400",
292
+ "path": ["border", "radius", "400"],
293
+ "cleanName": "border.radius.400"
294
+ }, {
295
+ "attributes": {
296
+ "group": "shape",
297
+ "state": "deprecated",
298
+ "introduced": "1.1.0",
299
+ "deprecated": "6.1.0",
300
+ "description": "Used for circular containers, like a rounded button."
301
+ },
302
+ "value": "9999px",
303
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
304
+ "isSource": true,
305
+ "original": {
306
+ "attributes": {
307
+ "group": "shape",
308
+ "state": "deprecated",
309
+ "introduced": "1.1.0",
310
+ "deprecated": "6.1.0",
311
+ "description": "Used for circular containers, like a rounded button."
312
+ },
313
+ "value": "Radius99"
314
+ },
315
+ "name": "border.radius.circle",
316
+ "path": ["border", "radius", "circle"],
317
+ "cleanName": "border.radius.circle"
318
+ }, {
319
+ "attributes": {
320
+ "group": "shape",
321
+ "state": "active",
322
+ "suggest": ["1px"],
323
+ "introduced": "1.5.2",
324
+ "description": "The default border width. Used for all borders."
325
+ },
326
+ "value": "1px",
327
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
328
+ "isSource": true,
329
+ "original": {
330
+ "attributes": {
331
+ "group": "shape",
332
+ "state": "active",
333
+ "suggest": ["1px"],
334
+ "introduced": "1.5.2",
335
+ "description": "The default border width. Used for all borders."
336
+ },
337
+ "value": "BorderWidth1"
338
+ },
339
+ "name": "border.width.[default]",
340
+ "path": ["border", "width", "[default]"],
341
+ "cleanName": "border.width"
342
+ }, {
343
+ "attributes": {
344
+ "group": "shape",
345
+ "state": "deprecated",
346
+ "introduced": "1.2.1",
347
+ "deprecated": "6.1.0",
348
+ "description": "Used for zero width borders."
349
+ },
350
+ "value": "0px",
351
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
352
+ "isSource": true,
353
+ "original": {
354
+ "attributes": {
355
+ "group": "shape",
356
+ "state": "deprecated",
357
+ "introduced": "1.2.1",
358
+ "deprecated": "6.1.0",
359
+ "description": "Used for zero width borders."
360
+ },
361
+ "value": "Size0"
362
+ },
363
+ "name": "border.width.0",
364
+ "path": ["border", "width", "0"],
365
+ "cleanName": "border.width.0"
366
+ }, {
367
+ "attributes": {
368
+ "group": "shape",
369
+ "state": "deprecated",
370
+ "introduced": "1.5.2",
371
+ "deprecated": "6.1.0",
372
+ "description": "Used for indicators like tab and menu selected states."
373
+ },
374
+ "value": "3px",
375
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
376
+ "isSource": true,
377
+ "original": {
378
+ "attributes": {
379
+ "group": "shape",
380
+ "state": "deprecated",
381
+ "introduced": "1.5.2",
382
+ "deprecated": "6.1.0",
383
+ "description": "Used for indicators like tab and menu selected states."
384
+ },
385
+ "value": "Size200"
386
+ },
387
+ "name": "border.width.indicator",
388
+ "path": ["border", "width", "indicator"],
389
+ "cleanName": "border.width.indicator"
390
+ }, {
391
+ "attributes": {
392
+ "group": "shape",
393
+ "state": "deprecated",
394
+ "introduced": "1.5.2",
395
+ "deprecated": "6.1.0",
396
+ "description": "Used for focus, active or selected inputs."
397
+ },
398
+ "value": "2px",
399
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
400
+ "isSource": true,
401
+ "original": {
402
+ "attributes": {
403
+ "group": "shape",
404
+ "state": "deprecated",
405
+ "introduced": "1.5.2",
406
+ "deprecated": "6.1.0",
407
+ "description": "Used for focus, active or selected inputs."
408
+ },
409
+ "value": "BorderWidth2"
410
+ },
411
+ "name": "border.width.outline",
412
+ "path": ["border", "width", "outline"],
413
+ "cleanName": "border.width.outline"
414
+ }, {
415
+ "attributes": {
416
+ "group": "shape",
417
+ "state": "active",
418
+ "suggest": ["2px"],
419
+ "introduced": "6.1.0",
420
+ "description": "Use for selected states."
421
+ },
422
+ "value": "2px",
423
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
424
+ "isSource": true,
425
+ "original": {
426
+ "attributes": {
427
+ "group": "shape",
428
+ "state": "active",
429
+ "suggest": ["2px"],
430
+ "introduced": "6.1.0",
431
+ "description": "Use for selected states."
432
+ },
433
+ "value": "BorderWidth2"
434
+ },
435
+ "name": "border.width.selected",
436
+ "path": ["border", "width", "selected"],
437
+ "cleanName": "border.width.selected"
438
+ }, {
439
+ "attributes": {
440
+ "group": "shape",
441
+ "state": "active",
442
+ "suggest": ["2px"],
443
+ "introduced": "6.1.0",
444
+ "description": "Use for focused states."
445
+ },
446
+ "value": "2px",
447
+ "filePath": "schema/themes/atlassian-shape-rounder/shape.tsx",
448
+ "isSource": true,
449
+ "original": {
450
+ "attributes": {
451
+ "group": "shape",
452
+ "state": "active",
453
+ "suggest": ["2px"],
454
+ "introduced": "6.1.0",
455
+ "description": "Use for focused states."
456
+ },
457
+ "value": "BorderWidth2"
458
+ },
459
+ "name": "border.width.focused",
460
+ "path": ["border", "width", "focused"],
461
+ "cleanName": "border.width.focused"
462
+ }];
463
+ export default tokens;