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