@atlaskit/tokens 1.0.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +24 -2
- package/dist/cjs/artifacts/palettes-raw/shape-palette.js +134 -0
- package/dist/cjs/artifacts/palettes-raw/spacing-scale.js +29 -243
- package/dist/cjs/artifacts/palettes-raw/typography-palette.js +41 -41
- package/dist/cjs/artifacts/replacement-mapping.js +2 -210
- package/dist/cjs/artifacts/theme-import-map.js +6 -1
- package/dist/cjs/artifacts/themes/atlassian-shape.js +13 -0
- package/dist/cjs/artifacts/themes/atlassian-spacing.js +2 -2
- package/dist/cjs/artifacts/token-default-values.js +9 -67
- package/dist/cjs/artifacts/token-names.js +9 -67
- package/dist/cjs/artifacts/tokens-raw/atlassian-shape.js +190 -0
- package/dist/cjs/artifacts/tokens-raw/atlassian-spacing.js +1 -1581
- package/dist/cjs/entry-points/tokens-raw.js +8 -1
- package/dist/cjs/get-token-value.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/shape-palette.js +70 -0
- package/dist/cjs/palettes/spacing-scale.js +14 -17
- package/dist/cjs/palettes/typography-palette.js +20 -20
- package/dist/cjs/theme-config.js +9 -1
- package/dist/cjs/tokens/atlassian-shape/shape.js +44 -0
- package/dist/cjs/tokens/atlassian-spacing/spacing.js +0 -227
- package/dist/cjs/tokens/default/shape/shape.js +80 -0
- package/dist/cjs/tokens/default/spacing/spacing.js +0 -620
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/palettes-raw/shape-palette.js +127 -0
- package/dist/es2019/artifacts/palettes-raw/spacing-scale.js +29 -243
- package/dist/es2019/artifacts/palettes-raw/typography-palette.js +41 -41
- package/dist/es2019/artifacts/replacement-mapping.js +2 -210
- package/dist/es2019/artifacts/theme-import-map.js +4 -2
- package/dist/es2019/artifacts/themes/atlassian-shape.js +17 -0
- package/dist/es2019/artifacts/themes/atlassian-spacing.js +1 -67
- package/dist/es2019/artifacts/token-default-values.js +9 -67
- package/dist/es2019/artifacts/token-names.js +9 -67
- package/dist/es2019/artifacts/tokens-raw/atlassian-shape.js +183 -0
- package/dist/es2019/artifacts/tokens-raw/atlassian-spacing.js +1 -1581
- package/dist/es2019/entry-points/tokens-raw.js +2 -1
- package/dist/es2019/get-token-value.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/shape-palette.js +63 -0
- package/dist/es2019/palettes/spacing-scale.js +14 -17
- package/dist/es2019/palettes/typography-palette.js +20 -20
- package/dist/es2019/theme-config.js +9 -1
- package/dist/es2019/tokens/atlassian-shape/shape.js +37 -0
- package/dist/es2019/tokens/atlassian-spacing/spacing.js +0 -227
- package/dist/es2019/tokens/default/shape/shape.js +73 -0
- package/dist/es2019/tokens/default/spacing/spacing.js +0 -620
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/palettes-raw/shape-palette.js +127 -0
- package/dist/esm/artifacts/palettes-raw/spacing-scale.js +29 -243
- package/dist/esm/artifacts/palettes-raw/typography-palette.js +41 -41
- package/dist/esm/artifacts/replacement-mapping.js +2 -210
- package/dist/esm/artifacts/theme-import-map.js +5 -1
- package/dist/esm/artifacts/themes/atlassian-shape.js +6 -0
- package/dist/esm/artifacts/themes/atlassian-spacing.js +2 -2
- package/dist/esm/artifacts/token-default-values.js +9 -67
- package/dist/esm/artifacts/token-names.js +9 -67
- package/dist/esm/artifacts/tokens-raw/atlassian-shape.js +183 -0
- package/dist/esm/artifacts/tokens-raw/atlassian-spacing.js +1 -1581
- package/dist/esm/entry-points/tokens-raw.js +2 -1
- package/dist/esm/get-token-value.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/shape-palette.js +63 -0
- package/dist/esm/palettes/spacing-scale.js +14 -17
- package/dist/esm/palettes/typography-palette.js +20 -20
- package/dist/esm/theme-config.js +9 -1
- package/dist/esm/tokens/atlassian-shape/shape.js +37 -0
- package/dist/esm/tokens/atlassian-spacing/spacing.js +0 -227
- package/dist/esm/tokens/default/shape/shape.js +73 -0
- package/dist/esm/tokens/default/spacing/spacing.js +0 -620
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/palettes-raw/shape-palette.d.ts +22 -0
- package/dist/types/artifacts/palettes-raw/spacing-scale.d.ts +1 -1
- package/dist/types/artifacts/palettes-raw/typography-palette.d.ts +1 -1
- package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
- package/dist/types/artifacts/theme-import-map.d.ts +1 -1
- package/dist/types/artifacts/themes/atlassian-shape.d.ts +7 -0
- package/dist/types/artifacts/themes/atlassian-spacing.d.ts +2 -2
- package/dist/types/artifacts/token-default-values.d.ts +9 -67
- package/dist/types/artifacts/token-names.d.ts +17 -133
- package/dist/types/artifacts/tokens-raw/atlassian-shape.d.ts +29 -0
- package/dist/types/artifacts/tokens-raw/atlassian-spacing.d.ts +1 -89
- package/dist/types/artifacts/types-internal.d.ts +2 -2
- package/dist/types/artifacts/types.d.ts +2 -2
- package/dist/types/entry-points/tokens-raw.d.ts +1 -0
- package/dist/types/palettes/shape-palette.d.ts +61 -0
- package/dist/types/palettes/spacing-scale.d.ts +14 -14
- package/dist/types/theme-config.d.ts +5 -7
- package/dist/types/tokens/atlassian-shape/shape.d.ts +7 -0
- package/dist/types/tokens/default/shape/shape.d.ts +3 -0
- package/dist/types/types.d.ts +29 -116
- package/figma/atlassian-shape.json +78 -0
- package/figma/atlassian-spacing.json +1 -761
- package/package.json +1 -1
- package/report.api.md +23 -136
- package/tmp/api-report-tmp.d.ts +23 -138
|
@@ -4,10 +4,18 @@
|
|
|
4
4
|
* Token names mapped to their value in the default Atlassian themes ('light').
|
|
5
5
|
* These default values are used by the Babel plugin to optionally provide automatic fallbacks.
|
|
6
6
|
*
|
|
7
|
-
* @codegen <<SignedSource::
|
|
7
|
+
* @codegen <<SignedSource::f5109afc580f9e67007907726883450e>>
|
|
8
8
|
* @codegenCommand yarn build tokens
|
|
9
9
|
*/
|
|
10
10
|
const defaultTokenValues = {
|
|
11
|
+
'border.radius.050': '0.125rem',
|
|
12
|
+
'border.radius.100': '0.25rem',
|
|
13
|
+
'border.radius.200': '0.5rem',
|
|
14
|
+
'border.radius.300': '0.75rem',
|
|
15
|
+
'border.radius.400': '1rem',
|
|
16
|
+
'border.radius.round': '50%',
|
|
17
|
+
'border.width.050': '0.0625rem',
|
|
18
|
+
'border.width.100': '0.125rem',
|
|
11
19
|
'color.text': '#172B4D',
|
|
12
20
|
'color.text.accent.red': '#AE2A19',
|
|
13
21
|
'color.text.accent.red.bolder': '#601E16',
|
|
@@ -294,72 +302,6 @@ const defaultTokenValues = {
|
|
|
294
302
|
'opacity.disabled': '0.4',
|
|
295
303
|
'opacity.loading': '0.2',
|
|
296
304
|
'utility.UNSAFE.transparent': 'transparent',
|
|
297
|
-
'spacing.scale.0': '0',
|
|
298
|
-
'spacing.scale.025': '0.125rem',
|
|
299
|
-
'spacing.scale.050': '0.25rem',
|
|
300
|
-
'spacing.scale.075': '0.375rem',
|
|
301
|
-
'spacing.scale.100': '0.5rem',
|
|
302
|
-
'spacing.scale.150': '0.75rem',
|
|
303
|
-
'spacing.scale.200': '1rem',
|
|
304
|
-
'spacing.scale.250': '1.25rem',
|
|
305
|
-
'spacing.scale.300': '1.5rem',
|
|
306
|
-
'spacing.scale.400': '2rem',
|
|
307
|
-
'spacing.scale.500': '2.5rem',
|
|
308
|
-
'spacing.scale.600': '3rem',
|
|
309
|
-
'spacing.scale.800': '4rem',
|
|
310
|
-
'spacing.scale.1000': '5rem',
|
|
311
|
-
'spacing.scaleLinear.0': '0',
|
|
312
|
-
'spacing.scaleLinear.100': '0.125rem',
|
|
313
|
-
'spacing.scaleLinear.200': '0.25rem',
|
|
314
|
-
'spacing.scaleLinear.300': '0.375rem',
|
|
315
|
-
'spacing.scaleLinear.400': '0.5rem',
|
|
316
|
-
'spacing.scaleLinear.500': '0.75rem',
|
|
317
|
-
'spacing.scaleLinear.600': '1rem',
|
|
318
|
-
'spacing.scaleLinear.700': '1.25rem',
|
|
319
|
-
'spacing.scaleLinear.800': '1.5rem',
|
|
320
|
-
'spacing.scaleLinear.900': '2rem',
|
|
321
|
-
'spacing.scaleLinear.1000': '2.5rem',
|
|
322
|
-
'spacing.scaleLinear.1100': '3rem',
|
|
323
|
-
'spacing.size.none': '0',
|
|
324
|
-
'spacing.size.xxxxSmall': '0.125rem',
|
|
325
|
-
'spacing.size.xxxSmall': '0.25rem',
|
|
326
|
-
'spacing.size.xxSmall': '0.375rem',
|
|
327
|
-
'spacing.size.xsmall': '0.5rem',
|
|
328
|
-
'spacing.size.small': '0.75rem',
|
|
329
|
-
'spacing.size.medium': '1rem',
|
|
330
|
-
'spacing.size.large': '1.25rem',
|
|
331
|
-
'spacing.size.xlarge': '1.5rem',
|
|
332
|
-
'spacing.size.xxlarge': '2rem',
|
|
333
|
-
'spacing.size.xxxlarge': '2.5rem',
|
|
334
|
-
'spacing.size.xxxxlarge': '3rem',
|
|
335
|
-
'spacing.gap.100': '0.5rem',
|
|
336
|
-
'spacing.gap.200': '1rem',
|
|
337
|
-
'spacing.gap.300': '1.5rem',
|
|
338
|
-
'spacing.inset.100': '0.5rem',
|
|
339
|
-
'spacing.inset.200': '1rem',
|
|
340
|
-
'spacing.inset.300': '1.5rem',
|
|
341
|
-
'spacing.ecl.container.12': '0.75rem',
|
|
342
|
-
'spacing.ecl.container.16': '1rem',
|
|
343
|
-
'spacing.ecl.container.20': '1.25rem',
|
|
344
|
-
'spacing.ecl.container.24': '1.5rem',
|
|
345
|
-
'spacing.ecl.element.2': '0.125rem',
|
|
346
|
-
'spacing.ecl.element.4': '0.25rem',
|
|
347
|
-
'spacing.ecl.element.6': '0.375rem',
|
|
348
|
-
'spacing.ecl.element.8': '0.5rem',
|
|
349
|
-
'spacing.ecl.layout.32': '2rem',
|
|
350
|
-
'spacing.ecl.layout.40': '2.5rem',
|
|
351
|
-
'spacing.ecl.layout.64': '3rem',
|
|
352
|
-
'spacing.ccc.component.2': '0.125rem',
|
|
353
|
-
'spacing.ccc.component.4': '0.25rem',
|
|
354
|
-
'spacing.ccc.component.6': '0.375rem',
|
|
355
|
-
'spacing.ccc.component.8': '0.5rem',
|
|
356
|
-
'spacing.ccc.container.32': '2rem',
|
|
357
|
-
'spacing.ccc.container.40': '2.5rem',
|
|
358
|
-
'spacing.ccc.container.48': '3rem',
|
|
359
|
-
'spacing.ccc.content.12': '0.75rem',
|
|
360
|
-
'spacing.ccc.content.16': '1rem',
|
|
361
|
-
'spacing.ccc.content.20': '1.25rem',
|
|
362
|
-
'spacing.ccc.content.24': '1.5rem',
|
|
363
305
|
'space.0': '0',
|
|
364
306
|
'space.025': '0.125rem',
|
|
365
307
|
'space.050': '0.25rem',
|
|
@@ -1,9 +1,17 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::0d28771b28a7bf28109534471c1383d4>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
const tokens = {
|
|
7
|
+
'border.radius.050': '--ds-radius-050',
|
|
8
|
+
'border.radius.100': '--ds-radius-100',
|
|
9
|
+
'border.radius.200': '--ds-radius-200',
|
|
10
|
+
'border.radius.300': '--ds-radius-300',
|
|
11
|
+
'border.radius.400': '--ds-radius-400',
|
|
12
|
+
'border.radius.round': '--ds-radius-round',
|
|
13
|
+
'border.width.050': '--ds-width-050',
|
|
14
|
+
'border.width.100': '--ds-width-100',
|
|
7
15
|
'color.text': '--ds-text',
|
|
8
16
|
'color.text.accent.red': '--ds-text-accent-red',
|
|
9
17
|
'color.text.accent.red.bolder': '--ds-text-accent-red-bolder',
|
|
@@ -290,72 +298,6 @@ const tokens = {
|
|
|
290
298
|
'opacity.disabled': '--ds-opacity-disabled',
|
|
291
299
|
'opacity.loading': '--ds-opacity-loading',
|
|
292
300
|
'utility.UNSAFE.transparent': '--ds-UNSAFE-transparent',
|
|
293
|
-
'spacing.scale.0': '--ds-scale-0',
|
|
294
|
-
'spacing.scale.025': '--ds-scale-025',
|
|
295
|
-
'spacing.scale.050': '--ds-scale-050',
|
|
296
|
-
'spacing.scale.075': '--ds-scale-075',
|
|
297
|
-
'spacing.scale.100': '--ds-scale-100',
|
|
298
|
-
'spacing.scale.150': '--ds-scale-150',
|
|
299
|
-
'spacing.scale.200': '--ds-scale-200',
|
|
300
|
-
'spacing.scale.250': '--ds-scale-250',
|
|
301
|
-
'spacing.scale.300': '--ds-scale-300',
|
|
302
|
-
'spacing.scale.400': '--ds-scale-400',
|
|
303
|
-
'spacing.scale.500': '--ds-scale-500',
|
|
304
|
-
'spacing.scale.600': '--ds-scale-600',
|
|
305
|
-
'spacing.scale.800': '--ds-scale-800',
|
|
306
|
-
'spacing.scale.1000': '--ds-scale-1000',
|
|
307
|
-
'spacing.scaleLinear.0': '--ds-scaleLinear-0',
|
|
308
|
-
'spacing.scaleLinear.100': '--ds-scaleLinear-100',
|
|
309
|
-
'spacing.scaleLinear.200': '--ds-scaleLinear-200',
|
|
310
|
-
'spacing.scaleLinear.300': '--ds-scaleLinear-300',
|
|
311
|
-
'spacing.scaleLinear.400': '--ds-scaleLinear-400',
|
|
312
|
-
'spacing.scaleLinear.500': '--ds-scaleLinear-500',
|
|
313
|
-
'spacing.scaleLinear.600': '--ds-scaleLinear-600',
|
|
314
|
-
'spacing.scaleLinear.700': '--ds-scaleLinear-700',
|
|
315
|
-
'spacing.scaleLinear.800': '--ds-scaleLinear-800',
|
|
316
|
-
'spacing.scaleLinear.900': '--ds-scaleLinear-900',
|
|
317
|
-
'spacing.scaleLinear.1000': '--ds-scaleLinear-1000',
|
|
318
|
-
'spacing.scaleLinear.1100': '--ds-scaleLinear-1100',
|
|
319
|
-
'spacing.size.none': '--ds-size-none',
|
|
320
|
-
'spacing.size.xxxxSmall': '--ds-size-xxxxSmall',
|
|
321
|
-
'spacing.size.xxxSmall': '--ds-size-xxxSmall',
|
|
322
|
-
'spacing.size.xxSmall': '--ds-size-xxSmall',
|
|
323
|
-
'spacing.size.xsmall': '--ds-size-xsmall',
|
|
324
|
-
'spacing.size.small': '--ds-size-small',
|
|
325
|
-
'spacing.size.medium': '--ds-size-medium',
|
|
326
|
-
'spacing.size.large': '--ds-size-large',
|
|
327
|
-
'spacing.size.xlarge': '--ds-size-xlarge',
|
|
328
|
-
'spacing.size.xxlarge': '--ds-size-xxlarge',
|
|
329
|
-
'spacing.size.xxxlarge': '--ds-size-xxxlarge',
|
|
330
|
-
'spacing.size.xxxxlarge': '--ds-size-xxxxlarge',
|
|
331
|
-
'spacing.gap.100': '--ds-gap-100',
|
|
332
|
-
'spacing.gap.200': '--ds-gap-200',
|
|
333
|
-
'spacing.gap.300': '--ds-gap-300',
|
|
334
|
-
'spacing.inset.100': '--ds-inset-100',
|
|
335
|
-
'spacing.inset.200': '--ds-inset-200',
|
|
336
|
-
'spacing.inset.300': '--ds-inset-300',
|
|
337
|
-
'spacing.ecl.container.12': '--ds-ecl-container-12',
|
|
338
|
-
'spacing.ecl.container.16': '--ds-ecl-container-16',
|
|
339
|
-
'spacing.ecl.container.20': '--ds-ecl-container-20',
|
|
340
|
-
'spacing.ecl.container.24': '--ds-ecl-container-24',
|
|
341
|
-
'spacing.ecl.element.2': '--ds-ecl-element-2',
|
|
342
|
-
'spacing.ecl.element.4': '--ds-ecl-element-4',
|
|
343
|
-
'spacing.ecl.element.6': '--ds-ecl-element-6',
|
|
344
|
-
'spacing.ecl.element.8': '--ds-ecl-element-8',
|
|
345
|
-
'spacing.ecl.layout.32': '--ds-ecl-layout-32',
|
|
346
|
-
'spacing.ecl.layout.40': '--ds-ecl-layout-40',
|
|
347
|
-
'spacing.ecl.layout.64': '--ds-ecl-layout-64',
|
|
348
|
-
'spacing.ccc.component.2': '--ds-ccc-component-2',
|
|
349
|
-
'spacing.ccc.component.4': '--ds-ccc-component-4',
|
|
350
|
-
'spacing.ccc.component.6': '--ds-ccc-component-6',
|
|
351
|
-
'spacing.ccc.component.8': '--ds-ccc-component-8',
|
|
352
|
-
'spacing.ccc.container.32': '--ds-ccc-container-32',
|
|
353
|
-
'spacing.ccc.container.40': '--ds-ccc-container-40',
|
|
354
|
-
'spacing.ccc.container.48': '--ds-ccc-container-48',
|
|
355
|
-
'spacing.ccc.content.12': '--ds-ccc-content-12',
|
|
356
|
-
'spacing.ccc.content.16': '--ds-ccc-content-16',
|
|
357
|
-
'spacing.ccc.content.20': '--ds-ccc-content-20',
|
|
358
|
-
'spacing.ccc.content.24': '--ds-ccc-content-24',
|
|
359
301
|
'space.0': '--ds-space-0',
|
|
360
302
|
'space.025': '--ds-space-025',
|
|
361
303
|
'space.050': '--ds-space-050',
|
|
@@ -0,0 +1,183 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
+
* @codegen <<SignedSource::c9a10991e5bb0b7dbbb35a5f644bceb0>>
|
|
4
|
+
* @codegenCommand yarn build tokens
|
|
5
|
+
*/
|
|
6
|
+
const tokens = [{
|
|
7
|
+
"attributes": {
|
|
8
|
+
"group": "shape",
|
|
9
|
+
"state": "experimental",
|
|
10
|
+
"introduced": "1.1.0",
|
|
11
|
+
"description": "Experimental, description needs to be amended"
|
|
12
|
+
},
|
|
13
|
+
"value": "0.125rem",
|
|
14
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
15
|
+
"isSource": true,
|
|
16
|
+
"original": {
|
|
17
|
+
"attributes": {
|
|
18
|
+
"group": "shape",
|
|
19
|
+
"state": "experimental",
|
|
20
|
+
"introduced": "1.1.0",
|
|
21
|
+
"description": "Experimental, description needs to be amended"
|
|
22
|
+
},
|
|
23
|
+
"value": "Radius050"
|
|
24
|
+
},
|
|
25
|
+
"name": "border.radius.050",
|
|
26
|
+
"path": ["border", "radius", "050"],
|
|
27
|
+
"cleanName": "border.radius.050"
|
|
28
|
+
}, {
|
|
29
|
+
"attributes": {
|
|
30
|
+
"group": "shape",
|
|
31
|
+
"state": "experimental",
|
|
32
|
+
"introduced": "1.1.0",
|
|
33
|
+
"description": "Experimental, description needs to be amended"
|
|
34
|
+
},
|
|
35
|
+
"value": "0.25rem",
|
|
36
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
37
|
+
"isSource": true,
|
|
38
|
+
"original": {
|
|
39
|
+
"attributes": {
|
|
40
|
+
"group": "shape",
|
|
41
|
+
"state": "experimental",
|
|
42
|
+
"introduced": "1.1.0",
|
|
43
|
+
"description": "Experimental, description needs to be amended"
|
|
44
|
+
},
|
|
45
|
+
"value": "Radius100"
|
|
46
|
+
},
|
|
47
|
+
"name": "border.radius.100",
|
|
48
|
+
"path": ["border", "radius", "100"],
|
|
49
|
+
"cleanName": "border.radius.100"
|
|
50
|
+
}, {
|
|
51
|
+
"attributes": {
|
|
52
|
+
"group": "shape",
|
|
53
|
+
"state": "experimental",
|
|
54
|
+
"introduced": "1.1.0",
|
|
55
|
+
"description": "Experimental, description needs to be amended"
|
|
56
|
+
},
|
|
57
|
+
"value": "0.5rem",
|
|
58
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
59
|
+
"isSource": true,
|
|
60
|
+
"original": {
|
|
61
|
+
"attributes": {
|
|
62
|
+
"group": "shape",
|
|
63
|
+
"state": "experimental",
|
|
64
|
+
"introduced": "1.1.0",
|
|
65
|
+
"description": "Experimental, description needs to be amended"
|
|
66
|
+
},
|
|
67
|
+
"value": "Radius200"
|
|
68
|
+
},
|
|
69
|
+
"name": "border.radius.200",
|
|
70
|
+
"path": ["border", "radius", "200"],
|
|
71
|
+
"cleanName": "border.radius.200"
|
|
72
|
+
}, {
|
|
73
|
+
"attributes": {
|
|
74
|
+
"group": "shape",
|
|
75
|
+
"state": "experimental",
|
|
76
|
+
"introduced": "1.1.0",
|
|
77
|
+
"description": "Experimental, description needs to be amended"
|
|
78
|
+
},
|
|
79
|
+
"value": "0.75rem",
|
|
80
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
81
|
+
"isSource": true,
|
|
82
|
+
"original": {
|
|
83
|
+
"attributes": {
|
|
84
|
+
"group": "shape",
|
|
85
|
+
"state": "experimental",
|
|
86
|
+
"introduced": "1.1.0",
|
|
87
|
+
"description": "Experimental, description needs to be amended"
|
|
88
|
+
},
|
|
89
|
+
"value": "Radius300"
|
|
90
|
+
},
|
|
91
|
+
"name": "border.radius.300",
|
|
92
|
+
"path": ["border", "radius", "300"],
|
|
93
|
+
"cleanName": "border.radius.300"
|
|
94
|
+
}, {
|
|
95
|
+
"attributes": {
|
|
96
|
+
"group": "shape",
|
|
97
|
+
"state": "experimental",
|
|
98
|
+
"introduced": "1.1.0",
|
|
99
|
+
"description": "Experimental, description needs to be amended"
|
|
100
|
+
},
|
|
101
|
+
"value": "1rem",
|
|
102
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
103
|
+
"isSource": true,
|
|
104
|
+
"original": {
|
|
105
|
+
"attributes": {
|
|
106
|
+
"group": "shape",
|
|
107
|
+
"state": "experimental",
|
|
108
|
+
"introduced": "1.1.0",
|
|
109
|
+
"description": "Experimental, description needs to be amended"
|
|
110
|
+
},
|
|
111
|
+
"value": "Radius400"
|
|
112
|
+
},
|
|
113
|
+
"name": "border.radius.400",
|
|
114
|
+
"path": ["border", "radius", "400"],
|
|
115
|
+
"cleanName": "border.radius.400"
|
|
116
|
+
}, {
|
|
117
|
+
"attributes": {
|
|
118
|
+
"group": "shape",
|
|
119
|
+
"state": "experimental",
|
|
120
|
+
"introduced": "1.1.0",
|
|
121
|
+
"description": "Experimental, description needs to be amended"
|
|
122
|
+
},
|
|
123
|
+
"value": "50%",
|
|
124
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
125
|
+
"isSource": true,
|
|
126
|
+
"original": {
|
|
127
|
+
"attributes": {
|
|
128
|
+
"group": "shape",
|
|
129
|
+
"state": "experimental",
|
|
130
|
+
"introduced": "1.1.0",
|
|
131
|
+
"description": "Experimental, description needs to be amended"
|
|
132
|
+
},
|
|
133
|
+
"value": "RadiusCircle"
|
|
134
|
+
},
|
|
135
|
+
"name": "border.radius.round",
|
|
136
|
+
"path": ["border", "radius", "round"],
|
|
137
|
+
"cleanName": "border.radius.round"
|
|
138
|
+
}, {
|
|
139
|
+
"attributes": {
|
|
140
|
+
"group": "shape",
|
|
141
|
+
"state": "experimental",
|
|
142
|
+
"introduced": "1.1.0",
|
|
143
|
+
"description": "Experimental, description needs to be amended"
|
|
144
|
+
},
|
|
145
|
+
"value": "0.0625rem",
|
|
146
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
147
|
+
"isSource": true,
|
|
148
|
+
"original": {
|
|
149
|
+
"attributes": {
|
|
150
|
+
"group": "shape",
|
|
151
|
+
"state": "experimental",
|
|
152
|
+
"introduced": "1.1.0",
|
|
153
|
+
"description": "Experimental, description needs to be amended"
|
|
154
|
+
},
|
|
155
|
+
"value": "Size050"
|
|
156
|
+
},
|
|
157
|
+
"name": "border.width.050",
|
|
158
|
+
"path": ["border", "width", "050"],
|
|
159
|
+
"cleanName": "border.width.050"
|
|
160
|
+
}, {
|
|
161
|
+
"attributes": {
|
|
162
|
+
"group": "shape",
|
|
163
|
+
"state": "experimental",
|
|
164
|
+
"introduced": "1.1.0",
|
|
165
|
+
"description": "Experimental, description needs to be amended"
|
|
166
|
+
},
|
|
167
|
+
"value": "0.125rem",
|
|
168
|
+
"filePath": "src/tokens/atlassian-shape/shape.tsx",
|
|
169
|
+
"isSource": true,
|
|
170
|
+
"original": {
|
|
171
|
+
"attributes": {
|
|
172
|
+
"group": "shape",
|
|
173
|
+
"state": "experimental",
|
|
174
|
+
"introduced": "1.1.0",
|
|
175
|
+
"description": "Experimental, description needs to be amended"
|
|
176
|
+
},
|
|
177
|
+
"value": "Size100"
|
|
178
|
+
},
|
|
179
|
+
"name": "border.width.100",
|
|
180
|
+
"path": ["border", "width", "100"],
|
|
181
|
+
"cleanName": "border.width.100"
|
|
182
|
+
}];
|
|
183
|
+
export default tokens;
|