@atlaskit/tokens 0.13.5 → 1.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 (196) hide show
  1. package/CHANGELOG.md +305 -0
  2. package/README.md +7 -16
  3. package/dist/cjs/artifacts/palettes-raw/legacy-palette.js +0 -1
  4. package/dist/cjs/artifacts/palettes-raw/palette.js +0 -1
  5. package/dist/cjs/artifacts/palettes-raw/spacing-scale.js +0 -1
  6. package/dist/cjs/artifacts/palettes-raw/typography-palette.js +0 -1
  7. package/dist/cjs/artifacts/replacement-mapping.js +3 -611
  8. package/dist/cjs/artifacts/theme-import-map.js +56 -0
  9. package/dist/cjs/artifacts/themes/atlassian-dark.js +13 -0
  10. package/dist/cjs/artifacts/themes/atlassian-legacy-dark.js +13 -0
  11. package/dist/cjs/artifacts/themes/atlassian-legacy-light.js +13 -0
  12. package/dist/cjs/artifacts/themes/atlassian-light.js +13 -0
  13. package/dist/cjs/artifacts/themes/atlassian-spacing.js +13 -0
  14. package/dist/cjs/artifacts/themes/atlassian-typography.js +13 -0
  15. package/dist/cjs/artifacts/token-default-values.js +2 -170
  16. package/dist/cjs/artifacts/token-names.js +2 -170
  17. package/dist/cjs/artifacts/tokens-raw/atlassian-dark.js +1354 -4261
  18. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-dark.js +1352 -4259
  19. package/dist/cjs/artifacts/tokens-raw/atlassian-legacy-light.js +1396 -4283
  20. package/dist/cjs/artifacts/tokens-raw/atlassian-light.js +1365 -4252
  21. package/dist/cjs/artifacts/tokens-raw/atlassian-spacing.js +1 -1582
  22. package/dist/cjs/artifacts/tokens-raw/atlassian-typography.js +0 -1
  23. package/dist/cjs/artifacts/typescript/atlassian-dark-token-names.js +0 -1
  24. package/dist/cjs/artifacts/typescript/atlassian-light-token-names.js +0 -1
  25. package/dist/cjs/babel-plugin/index.js +0 -2
  26. package/dist/cjs/babel-plugin/plugin.js +17 -43
  27. package/dist/cjs/entry-points/babel-plugin.js +0 -2
  28. package/dist/cjs/entry-points/palettes-raw.js +0 -2
  29. package/dist/cjs/entry-points/rename-mapping.js +0 -2
  30. package/dist/cjs/entry-points/token-ids.js +0 -1
  31. package/dist/cjs/entry-points/token-names.js +0 -2
  32. package/dist/cjs/entry-points/tokens-raw.js +0 -5
  33. package/dist/cjs/get-global-theme.js +30 -0
  34. package/dist/cjs/get-token-value.js +1 -10
  35. package/dist/cjs/get-token.js +3 -13
  36. package/dist/cjs/index.js +46 -10
  37. package/dist/cjs/palettes/legacy-palette.js +1 -1
  38. package/dist/cjs/palettes/spacing-scale.js +1 -1
  39. package/dist/cjs/palettes/typography-palette.js +0 -5
  40. package/dist/cjs/set-global-theme.js +265 -39
  41. package/dist/cjs/theme-config.js +8 -23
  42. package/dist/cjs/{theme-change-observer.js → theme-mutation-observer.js} +5 -57
  43. package/dist/cjs/tokens/atlassian-dark/utility/utility.js +1 -4
  44. package/dist/cjs/tokens/atlassian-legacy-dark/utility/utility.js +1 -4
  45. package/dist/cjs/tokens/atlassian-legacy-light/utility/utility.js +1 -4
  46. package/dist/cjs/tokens/atlassian-light/utility/utility.js +1 -4
  47. package/dist/cjs/tokens/atlassian-spacing/spacing.js +0 -228
  48. package/dist/cjs/tokens/default/spacing/spacing.js +0 -621
  49. package/dist/cjs/tokens/default/utility/utility.js +1 -9
  50. package/dist/cjs/use-theme-observer.js +41 -0
  51. package/dist/cjs/utils/color-detection.js +23 -43
  52. package/dist/cjs/utils/theme-loading.js +69 -0
  53. package/dist/cjs/utils/theme-state-transformer.js +73 -0
  54. package/dist/cjs/utils/token-ids.js +4 -12
  55. package/dist/cjs/version.json +1 -1
  56. package/dist/es2019/artifacts/replacement-mapping.js +3 -610
  57. package/dist/es2019/artifacts/theme-import-map.js +27 -0
  58. package/dist/es2019/artifacts/themes/atlassian-dark.js +296 -0
  59. package/dist/es2019/artifacts/themes/atlassian-legacy-dark.js +296 -0
  60. package/dist/es2019/artifacts/themes/atlassian-legacy-light.js +296 -0
  61. package/dist/es2019/artifacts/themes/atlassian-light.js +296 -0
  62. package/dist/es2019/artifacts/themes/atlassian-spacing.js +23 -0
  63. package/{css/atlassian-typography.css → dist/es2019/artifacts/themes/atlassian-typography.js} +4 -2
  64. package/dist/es2019/artifacts/token-default-values.js +2 -169
  65. package/dist/es2019/artifacts/token-names.js +2 -169
  66. package/dist/es2019/artifacts/tokens-raw/atlassian-dark.js +1354 -4260
  67. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-dark.js +1349 -4255
  68. package/dist/es2019/artifacts/tokens-raw/atlassian-legacy-light.js +1397 -4283
  69. package/dist/es2019/artifacts/tokens-raw/atlassian-light.js +1360 -4246
  70. package/dist/es2019/artifacts/tokens-raw/atlassian-spacing.js +1 -1581
  71. package/dist/es2019/babel-plugin/plugin.js +17 -37
  72. package/dist/es2019/get-global-theme.js +20 -0
  73. package/dist/es2019/get-token-value.js +1 -6
  74. package/dist/es2019/get-token.js +3 -8
  75. package/dist/es2019/index.js +5 -2
  76. package/dist/es2019/palettes/legacy-palette.js +1 -0
  77. package/dist/es2019/palettes/spacing-scale.js +1 -0
  78. package/dist/es2019/palettes/typography-palette.js +2 -1
  79. package/dist/es2019/set-global-theme.js +162 -32
  80. package/dist/es2019/theme-config.js +5 -21
  81. package/dist/es2019/{theme-change-observer.js → theme-mutation-observer.js} +4 -37
  82. package/dist/es2019/tokens/atlassian-dark/utility/utility.js +1 -4
  83. package/dist/es2019/tokens/atlassian-legacy-dark/utility/utility.js +1 -4
  84. package/dist/es2019/tokens/atlassian-legacy-light/utility/utility.js +1 -4
  85. package/dist/es2019/tokens/atlassian-light/utility/utility.js +1 -4
  86. package/dist/es2019/tokens/atlassian-spacing/spacing.js +0 -227
  87. package/dist/es2019/tokens/default/spacing/spacing.js +0 -620
  88. package/dist/es2019/tokens/default/utility/utility.js +1 -9
  89. package/dist/es2019/use-theme-observer.js +26 -0
  90. package/dist/es2019/utils/color-detection.js +3 -5
  91. package/dist/es2019/utils/theme-loading.js +18 -0
  92. package/dist/es2019/utils/theme-state-transformer.js +47 -0
  93. package/dist/es2019/utils/token-ids.js +5 -4
  94. package/dist/es2019/version.json +1 -1
  95. package/dist/esm/artifacts/replacement-mapping.js +3 -610
  96. package/dist/esm/artifacts/theme-import-map.js +39 -0
  97. package/dist/esm/artifacts/themes/atlassian-dark.js +6 -0
  98. package/dist/esm/artifacts/themes/atlassian-legacy-dark.js +6 -0
  99. package/dist/esm/artifacts/themes/atlassian-legacy-light.js +6 -0
  100. package/dist/esm/artifacts/themes/atlassian-light.js +6 -0
  101. package/dist/esm/artifacts/themes/atlassian-spacing.js +6 -0
  102. package/dist/esm/artifacts/themes/atlassian-typography.js +6 -0
  103. package/dist/esm/artifacts/token-default-values.js +2 -169
  104. package/dist/esm/artifacts/token-names.js +2 -169
  105. package/dist/esm/artifacts/tokens-raw/atlassian-dark.js +1354 -4260
  106. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-dark.js +1349 -4255
  107. package/dist/esm/artifacts/tokens-raw/atlassian-legacy-light.js +1397 -4283
  108. package/dist/esm/artifacts/tokens-raw/atlassian-light.js +1360 -4246
  109. package/dist/esm/artifacts/tokens-raw/atlassian-spacing.js +1 -1581
  110. package/dist/esm/babel-plugin/plugin.js +17 -35
  111. package/dist/esm/get-global-theme.js +22 -0
  112. package/dist/esm/get-token-value.js +1 -6
  113. package/dist/esm/get-token.js +3 -8
  114. package/dist/esm/index.js +5 -2
  115. package/dist/esm/palettes/legacy-palette.js +1 -0
  116. package/dist/esm/palettes/spacing-scale.js +1 -0
  117. package/dist/esm/palettes/typography-palette.js +0 -3
  118. package/dist/esm/set-global-theme.js +263 -37
  119. package/dist/esm/theme-config.js +5 -21
  120. package/dist/esm/{theme-change-observer.js → theme-mutation-observer.js} +4 -49
  121. package/dist/esm/tokens/atlassian-dark/utility/utility.js +1 -4
  122. package/dist/esm/tokens/atlassian-legacy-dark/utility/utility.js +1 -4
  123. package/dist/esm/tokens/atlassian-legacy-light/utility/utility.js +1 -4
  124. package/dist/esm/tokens/atlassian-light/utility/utility.js +1 -4
  125. package/dist/esm/tokens/atlassian-spacing/spacing.js +0 -227
  126. package/dist/esm/tokens/default/spacing/spacing.js +0 -620
  127. package/dist/esm/tokens/default/utility/utility.js +1 -9
  128. package/dist/esm/use-theme-observer.js +34 -0
  129. package/dist/esm/utils/color-detection.js +23 -30
  130. package/dist/esm/utils/theme-loading.js +60 -0
  131. package/dist/esm/utils/theme-state-transformer.js +64 -0
  132. package/dist/esm/utils/token-ids.js +5 -4
  133. package/dist/esm/version.json +1 -1
  134. package/dist/types/artifacts/replacement-mapping.d.ts +1 -1
  135. package/dist/types/artifacts/theme-import-map.d.ts +16 -0
  136. package/dist/types/artifacts/themes/atlassian-dark.d.ts +7 -0
  137. package/dist/types/artifacts/themes/atlassian-legacy-dark.d.ts +7 -0
  138. package/dist/types/artifacts/themes/atlassian-legacy-light.d.ts +7 -0
  139. package/dist/types/artifacts/themes/atlassian-light.d.ts +7 -0
  140. package/dist/types/artifacts/themes/atlassian-spacing.d.ts +7 -0
  141. package/dist/types/artifacts/themes/atlassian-typography.d.ts +7 -0
  142. package/dist/types/artifacts/token-default-values.d.ts +2 -169
  143. package/dist/types/artifacts/token-names.d.ts +3 -337
  144. package/dist/types/artifacts/tokens-raw/atlassian-dark.d.ts +1 -115
  145. package/dist/types/artifacts/tokens-raw/atlassian-legacy-dark.d.ts +1 -115
  146. package/dist/types/artifacts/tokens-raw/atlassian-legacy-light.d.ts +1 -91
  147. package/dist/types/artifacts/tokens-raw/atlassian-light.d.ts +1 -91
  148. package/dist/types/artifacts/tokens-raw/atlassian-spacing.d.ts +1 -89
  149. package/dist/types/artifacts/types-internal.d.ts +2 -2
  150. package/dist/types/artifacts/types.d.ts +2 -2
  151. package/dist/types/get-global-theme.d.ts +2 -0
  152. package/dist/types/index.d.ts +7 -3
  153. package/dist/types/set-global-theme.d.ts +63 -7
  154. package/dist/types/theme-config.d.ts +10 -7
  155. package/dist/types/{theme-change-observer.d.ts → theme-mutation-observer.d.ts} +2 -16
  156. package/dist/types/types.d.ts +1 -286
  157. package/dist/types/use-theme-observer.d.ts +15 -0
  158. package/dist/types/utils/theme-loading.d.ts +3 -0
  159. package/dist/types/utils/theme-state-transformer.d.ts +26 -0
  160. package/figma/atlassian-dark.json +1 -102
  161. package/figma/atlassian-legacy-dark.json +1 -102
  162. package/figma/atlassian-legacy-light.json +1 -102
  163. package/figma/atlassian-light.json +1 -102
  164. package/figma/atlassian-spacing.json +1 -761
  165. package/package.json +5 -8
  166. package/report.api.md +85 -351
  167. package/tmp/api-report-tmp.d.ts +58 -342
  168. package/css/atlassian-dark.css +0 -786
  169. package/css/atlassian-legacy-dark.css +0 -786
  170. package/css/atlassian-legacy-light.css +0 -786
  171. package/css/atlassian-light.css +0 -786
  172. package/css/atlassian-spacing.css +0 -87
  173. package/dist/cjs/artifacts/typescript/atlassian-light-token-default-values.js +0 -407
  174. package/dist/cjs/tokens/atlassian-dark/deprecated/deprecated.js +0 -435
  175. package/dist/cjs/tokens/atlassian-legacy-dark/deprecated/deprecated.js +0 -532
  176. package/dist/cjs/tokens/atlassian-legacy-light/deprecated/deprecated.js +0 -523
  177. package/dist/cjs/tokens/atlassian-light/deprecated/deprecated.js +0 -421
  178. package/dist/cjs/tokens/default/deprecated/deprecated.js +0 -1186
  179. package/dist/es2019/artifacts/typescript/atlassian-light-token-default-values.js +0 -399
  180. package/dist/es2019/tokens/atlassian-dark/deprecated/deprecated.js +0 -428
  181. package/dist/es2019/tokens/atlassian-legacy-dark/deprecated/deprecated.js +0 -525
  182. package/dist/es2019/tokens/atlassian-legacy-light/deprecated/deprecated.js +0 -516
  183. package/dist/es2019/tokens/atlassian-light/deprecated/deprecated.js +0 -414
  184. package/dist/es2019/tokens/default/deprecated/deprecated.js +0 -1217
  185. package/dist/esm/artifacts/typescript/atlassian-light-token-default-values.js +0 -399
  186. package/dist/esm/tokens/atlassian-dark/deprecated/deprecated.js +0 -428
  187. package/dist/esm/tokens/atlassian-legacy-dark/deprecated/deprecated.js +0 -525
  188. package/dist/esm/tokens/atlassian-legacy-light/deprecated/deprecated.js +0 -516
  189. package/dist/esm/tokens/atlassian-light/deprecated/deprecated.js +0 -414
  190. package/dist/esm/tokens/default/deprecated/deprecated.js +0 -1179
  191. package/dist/types/artifacts/typescript/atlassian-light-token-default-values.d.ts +0 -399
  192. package/dist/types/tokens/atlassian-dark/deprecated/deprecated.d.ts +0 -4
  193. package/dist/types/tokens/atlassian-legacy-dark/deprecated/deprecated.d.ts +0 -4
  194. package/dist/types/tokens/atlassian-legacy-light/deprecated/deprecated.d.ts +0 -4
  195. package/dist/types/tokens/atlassian-light/deprecated/deprecated.d.ts +0 -4
  196. package/dist/types/tokens/default/deprecated/deprecated.d.ts +0 -4
@@ -1,1589 +1,9 @@
1
1
  /**
2
2
  * THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
3
- * @codegen <<SignedSource::ebaeba748330e1bc0e04fabb60597525>>
3
+ * @codegen <<SignedSource::cfa1d518948d5dc23821d17cab0cb52a>>
4
4
  * @codegenCommand yarn build tokens
5
5
  */
6
6
  var tokens = [{
7
- "attributes": {
8
- "group": "spacing",
9
- "state": "active",
10
- "introduced": "0.10.16",
11
- "description": "Equates to `0`. Can be used for resetting default spacing styles."
12
- },
13
- "value": "0",
14
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
15
- "isSource": true,
16
- "original": {
17
- "attributes": {
18
- "group": "spacing",
19
- "state": "active",
20
- "introduced": "0.10.16",
21
- "description": "Equates to `0`. Can be used for resetting default spacing styles."
22
- },
23
- "value": "Space0"
24
- },
25
- "name": "spacing.scale.0",
26
- "path": ["spacing", "scale", "0"],
27
- "cleanName": "spacing.scale.0"
28
- }, {
29
- "attributes": {
30
- "group": "spacing",
31
- "state": "active",
32
- "suggest": ["1px", "3px"],
33
- "introduced": "0.10.16",
34
- "description": "Use for spacing in compact scenarios. The smallest value in our scale."
35
- },
36
- "value": "0.125rem",
37
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
38
- "isSource": true,
39
- "original": {
40
- "attributes": {
41
- "group": "spacing",
42
- "state": "active",
43
- "suggest": ["1px", "3px"],
44
- "introduced": "0.10.16",
45
- "description": "Use for spacing in compact scenarios. The smallest value in our scale."
46
- },
47
- "value": "Space025"
48
- },
49
- "name": "spacing.scale.025",
50
- "path": ["spacing", "scale", "025"],
51
- "cleanName": "spacing.scale.025"
52
- }, {
53
- "attributes": {
54
- "group": "spacing",
55
- "state": "active",
56
- "suggest": ["3px", "5px"],
57
- "introduced": "0.10.16",
58
- "description": "Helpful guidance goes here"
59
- },
60
- "value": "0.25rem",
61
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
62
- "isSource": true,
63
- "original": {
64
- "attributes": {
65
- "group": "spacing",
66
- "state": "active",
67
- "suggest": ["3px", "5px"],
68
- "introduced": "0.10.16",
69
- "description": "Helpful guidance goes here"
70
- },
71
- "value": "Space050"
72
- },
73
- "name": "spacing.scale.050",
74
- "path": ["spacing", "scale", "050"],
75
- "cleanName": "spacing.scale.050"
76
- }, {
77
- "attributes": {
78
- "group": "spacing",
79
- "state": "active",
80
- "suggest": ["5px", "7px"],
81
- "introduced": "0.10.16",
82
- "description": "Helpful guidance goes here"
83
- },
84
- "value": "0.375rem",
85
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
86
- "isSource": true,
87
- "original": {
88
- "attributes": {
89
- "group": "spacing",
90
- "state": "active",
91
- "suggest": ["5px", "7px"],
92
- "introduced": "0.10.16",
93
- "description": "Helpful guidance goes here"
94
- },
95
- "value": "Space075"
96
- },
97
- "name": "spacing.scale.075",
98
- "path": ["spacing", "scale", "075"],
99
- "cleanName": "spacing.scale.075"
100
- }, {
101
- "attributes": {
102
- "group": "spacing",
103
- "state": "active",
104
- "suggest": ["7px", "9px"],
105
- "introduced": "0.10.16",
106
- "description": "Helpful guidance goes here"
107
- },
108
- "value": "0.5rem",
109
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
110
- "isSource": true,
111
- "original": {
112
- "attributes": {
113
- "group": "spacing",
114
- "state": "active",
115
- "suggest": ["7px", "9px"],
116
- "introduced": "0.10.16",
117
- "description": "Helpful guidance goes here"
118
- },
119
- "value": "Space100"
120
- },
121
- "name": "spacing.scale.100",
122
- "path": ["spacing", "scale", "100"],
123
- "cleanName": "spacing.scale.100"
124
- }, {
125
- "attributes": {
126
- "group": "spacing",
127
- "state": "active",
128
- "suggest": ["10px", "11px", "13px", "14px"],
129
- "introduced": "0.10.16",
130
- "description": "Helpful guidance goes here"
131
- },
132
- "value": "0.75rem",
133
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
134
- "isSource": true,
135
- "original": {
136
- "attributes": {
137
- "group": "spacing",
138
- "state": "active",
139
- "suggest": ["10px", "11px", "13px", "14px"],
140
- "introduced": "0.10.16",
141
- "description": "Helpful guidance goes here"
142
- },
143
- "value": "Space150"
144
- },
145
- "name": "spacing.scale.150",
146
- "path": ["spacing", "scale", "150"],
147
- "cleanName": "spacing.scale.150"
148
- }, {
149
- "attributes": {
150
- "group": "spacing",
151
- "state": "active",
152
- "suggest": ["14px", "15px", "17px", "18px"],
153
- "introduced": "0.10.16",
154
- "description": "Helpful guidance goes here"
155
- },
156
- "value": "1rem",
157
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
158
- "isSource": true,
159
- "original": {
160
- "attributes": {
161
- "group": "spacing",
162
- "state": "active",
163
- "suggest": ["14px", "15px", "17px", "18px"],
164
- "introduced": "0.10.16",
165
- "description": "Helpful guidance goes here"
166
- },
167
- "value": "Space200"
168
- },
169
- "name": "spacing.scale.200",
170
- "path": ["spacing", "scale", "200"],
171
- "cleanName": "spacing.scale.200"
172
- }, {
173
- "attributes": {
174
- "group": "spacing",
175
- "state": "active",
176
- "suggest": ["19px", "21px", "22px", "23px"],
177
- "introduced": "0.10.16",
178
- "description": "Helpful guidance goes here"
179
- },
180
- "value": "1.25rem",
181
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
182
- "isSource": true,
183
- "original": {
184
- "attributes": {
185
- "group": "spacing",
186
- "state": "active",
187
- "suggest": ["19px", "21px", "22px", "23px"],
188
- "introduced": "0.10.16",
189
- "description": "Helpful guidance goes here"
190
- },
191
- "value": "Space250"
192
- },
193
- "name": "spacing.scale.250",
194
- "path": ["spacing", "scale", "250"],
195
- "cleanName": "spacing.scale.250"
196
- }, {
197
- "attributes": {
198
- "group": "spacing",
199
- "state": "active",
200
- "suggest": ["23px", "25px", "26px", "27px", "28px"],
201
- "introduced": "0.10.16",
202
- "description": "Helpful guidance goes here"
203
- },
204
- "value": "1.5rem",
205
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
206
- "isSource": true,
207
- "original": {
208
- "attributes": {
209
- "group": "spacing",
210
- "state": "active",
211
- "suggest": ["23px", "25px", "26px", "27px", "28px"],
212
- "introduced": "0.10.16",
213
- "description": "Helpful guidance goes here"
214
- },
215
- "value": "Space300"
216
- },
217
- "name": "spacing.scale.300",
218
- "path": ["spacing", "scale", "300"],
219
- "cleanName": "spacing.scale.300"
220
- }, {
221
- "attributes": {
222
- "group": "spacing",
223
- "state": "active",
224
- "suggest": ["28px", "29px", "30px", "31px", "33px", "34px", "35px"],
225
- "introduced": "0.10.16",
226
- "description": "Helpful guidance goes here"
227
- },
228
- "value": "2rem",
229
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
230
- "isSource": true,
231
- "original": {
232
- "attributes": {
233
- "group": "spacing",
234
- "state": "active",
235
- "suggest": ["28px", "29px", "30px", "31px", "33px", "34px", "35px"],
236
- "introduced": "0.10.16",
237
- "description": "Helpful guidance goes here"
238
- },
239
- "value": "Space400"
240
- },
241
- "name": "spacing.scale.400",
242
- "path": ["spacing", "scale", "400"],
243
- "cleanName": "spacing.scale.400"
244
- }, {
245
- "attributes": {
246
- "group": "spacing",
247
- "state": "active",
248
- "suggest": ["28px", "29px", "30px", "31px", "33px", "34px", "35px"],
249
- "introduced": "0.10.16",
250
- "description": "Helpful guidance goes here"
251
- },
252
- "value": "2.5rem",
253
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
254
- "isSource": true,
255
- "original": {
256
- "attributes": {
257
- "group": "spacing",
258
- "state": "active",
259
- "suggest": ["28px", "29px", "30px", "31px", "33px", "34px", "35px"],
260
- "introduced": "0.10.16",
261
- "description": "Helpful guidance goes here"
262
- },
263
- "value": "Space500"
264
- },
265
- "name": "spacing.scale.500",
266
- "path": ["spacing", "scale", "500"],
267
- "cleanName": "spacing.scale.500"
268
- }, {
269
- "attributes": {
270
- "group": "spacing",
271
- "state": "active",
272
- "introduced": "0.10.16",
273
- "description": "Helpful guidance goes here"
274
- },
275
- "value": "3rem",
276
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
277
- "isSource": true,
278
- "original": {
279
- "attributes": {
280
- "group": "spacing",
281
- "state": "active",
282
- "introduced": "0.10.16",
283
- "description": "Helpful guidance goes here"
284
- },
285
- "value": "Space600"
286
- },
287
- "name": "spacing.scale.600",
288
- "path": ["spacing", "scale", "600"],
289
- "cleanName": "spacing.scale.600"
290
- }, {
291
- "attributes": {
292
- "group": "spacing",
293
- "state": "active",
294
- "introduced": "0.12.0",
295
- "pixelValue": "",
296
- "description": "Helpful guidance goes here"
297
- },
298
- "value": "4rem",
299
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
300
- "isSource": true,
301
- "original": {
302
- "attributes": {
303
- "group": "spacing",
304
- "state": "active",
305
- "introduced": "0.12.0",
306
- "pixelValue": "",
307
- "description": "Helpful guidance goes here"
308
- },
309
- "value": "Space800"
310
- },
311
- "name": "spacing.scale.800",
312
- "path": ["spacing", "scale", "800"],
313
- "cleanName": "spacing.scale.800"
314
- }, {
315
- "attributes": {
316
- "group": "spacing",
317
- "state": "active",
318
- "introduced": "0.12.0",
319
- "pixelValue": "80px",
320
- "description": "Helpful guidance goes here"
321
- },
322
- "value": "5rem",
323
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
324
- "isSource": true,
325
- "original": {
326
- "attributes": {
327
- "group": "spacing",
328
- "state": "active",
329
- "introduced": "0.12.0",
330
- "pixelValue": "80px",
331
- "description": "Helpful guidance goes here"
332
- },
333
- "value": "Space1000"
334
- },
335
- "name": "spacing.scale.1000",
336
- "path": ["spacing", "scale", "1000"],
337
- "cleanName": "spacing.scale.1000"
338
- }, {
339
- "attributes": {
340
- "group": "spacing",
341
- "state": "experimental",
342
- "replacement": "0",
343
- "introduced": "0.10.28",
344
- "description": "Helpful guidance goes here"
345
- },
346
- "value": "0",
347
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
348
- "isSource": true,
349
- "original": {
350
- "attributes": {
351
- "group": "spacing",
352
- "state": "experimental",
353
- "replacement": "0",
354
- "introduced": "0.10.28",
355
- "description": "Helpful guidance goes here"
356
- },
357
- "value": "Space0"
358
- },
359
- "name": "spacing.scaleLinear.0",
360
- "path": ["spacing", "scaleLinear", "0"],
361
- "cleanName": "spacing.scaleLinear.0"
362
- }, {
363
- "attributes": {
364
- "group": "spacing",
365
- "state": "experimental",
366
- "replacement": "2px",
367
- "introduced": "0.10.28",
368
- "description": "Helpful guidance goes here"
369
- },
370
- "value": "0.125rem",
371
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
372
- "isSource": true,
373
- "original": {
374
- "attributes": {
375
- "group": "spacing",
376
- "state": "experimental",
377
- "replacement": "2px",
378
- "introduced": "0.10.28",
379
- "description": "Helpful guidance goes here"
380
- },
381
- "value": "Space025"
382
- },
383
- "name": "spacing.scaleLinear.100",
384
- "path": ["spacing", "scaleLinear", "100"],
385
- "cleanName": "spacing.scaleLinear.100"
386
- }, {
387
- "attributes": {
388
- "group": "spacing",
389
- "state": "experimental",
390
- "replacement": "4px",
391
- "introduced": "0.10.28",
392
- "description": "Helpful guidance goes here"
393
- },
394
- "value": "0.25rem",
395
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
396
- "isSource": true,
397
- "original": {
398
- "attributes": {
399
- "group": "spacing",
400
- "state": "experimental",
401
- "replacement": "4px",
402
- "introduced": "0.10.28",
403
- "description": "Helpful guidance goes here"
404
- },
405
- "value": "Space050"
406
- },
407
- "name": "spacing.scaleLinear.200",
408
- "path": ["spacing", "scaleLinear", "200"],
409
- "cleanName": "spacing.scaleLinear.200"
410
- }, {
411
- "attributes": {
412
- "group": "spacing",
413
- "state": "experimental",
414
- "replacement": "6px",
415
- "introduced": "0.10.28",
416
- "description": "Helpful guidance goes here"
417
- },
418
- "value": "0.375rem",
419
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
420
- "isSource": true,
421
- "original": {
422
- "attributes": {
423
- "group": "spacing",
424
- "state": "experimental",
425
- "replacement": "6px",
426
- "introduced": "0.10.28",
427
- "description": "Helpful guidance goes here"
428
- },
429
- "value": "Space075"
430
- },
431
- "name": "spacing.scaleLinear.300",
432
- "path": ["spacing", "scaleLinear", "300"],
433
- "cleanName": "spacing.scaleLinear.300"
434
- }, {
435
- "attributes": {
436
- "group": "spacing",
437
- "state": "experimental",
438
- "replacement": "8px",
439
- "introduced": "0.10.28",
440
- "description": "Helpful guidance goes here"
441
- },
442
- "value": "0.5rem",
443
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
444
- "isSource": true,
445
- "original": {
446
- "attributes": {
447
- "group": "spacing",
448
- "state": "experimental",
449
- "replacement": "8px",
450
- "introduced": "0.10.28",
451
- "description": "Helpful guidance goes here"
452
- },
453
- "value": "Space100"
454
- },
455
- "name": "spacing.scaleLinear.400",
456
- "path": ["spacing", "scaleLinear", "400"],
457
- "cleanName": "spacing.scaleLinear.400"
458
- }, {
459
- "attributes": {
460
- "group": "spacing",
461
- "state": "experimental",
462
- "replacement": "12px",
463
- "introduced": "0.10.28",
464
- "description": "Helpful guidance goes here"
465
- },
466
- "value": "0.75rem",
467
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
468
- "isSource": true,
469
- "original": {
470
- "attributes": {
471
- "group": "spacing",
472
- "state": "experimental",
473
- "replacement": "12px",
474
- "introduced": "0.10.28",
475
- "description": "Helpful guidance goes here"
476
- },
477
- "value": "Space150"
478
- },
479
- "name": "spacing.scaleLinear.500",
480
- "path": ["spacing", "scaleLinear", "500"],
481
- "cleanName": "spacing.scaleLinear.500"
482
- }, {
483
- "attributes": {
484
- "group": "spacing",
485
- "state": "experimental",
486
- "replacement": "16px",
487
- "introduced": "0.10.28",
488
- "description": "Helpful guidance goes here"
489
- },
490
- "value": "1rem",
491
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
492
- "isSource": true,
493
- "original": {
494
- "attributes": {
495
- "group": "spacing",
496
- "state": "experimental",
497
- "replacement": "16px",
498
- "introduced": "0.10.28",
499
- "description": "Helpful guidance goes here"
500
- },
501
- "value": "Space200"
502
- },
503
- "name": "spacing.scaleLinear.600",
504
- "path": ["spacing", "scaleLinear", "600"],
505
- "cleanName": "spacing.scaleLinear.600"
506
- }, {
507
- "attributes": {
508
- "group": "spacing",
509
- "state": "experimental",
510
- "replacement": "20px",
511
- "introduced": "0.10.28",
512
- "description": "Helpful guidance goes here"
513
- },
514
- "value": "1.25rem",
515
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
516
- "isSource": true,
517
- "original": {
518
- "attributes": {
519
- "group": "spacing",
520
- "state": "experimental",
521
- "replacement": "20px",
522
- "introduced": "0.10.28",
523
- "description": "Helpful guidance goes here"
524
- },
525
- "value": "Space250"
526
- },
527
- "name": "spacing.scaleLinear.700",
528
- "path": ["spacing", "scaleLinear", "700"],
529
- "cleanName": "spacing.scaleLinear.700"
530
- }, {
531
- "attributes": {
532
- "group": "spacing",
533
- "state": "experimental",
534
- "replacement": "24px",
535
- "introduced": "0.10.28",
536
- "description": "Helpful guidance goes here"
537
- },
538
- "value": "1.5rem",
539
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
540
- "isSource": true,
541
- "original": {
542
- "attributes": {
543
- "group": "spacing",
544
- "state": "experimental",
545
- "replacement": "24px",
546
- "introduced": "0.10.28",
547
- "description": "Helpful guidance goes here"
548
- },
549
- "value": "Space300"
550
- },
551
- "name": "spacing.scaleLinear.800",
552
- "path": ["spacing", "scaleLinear", "800"],
553
- "cleanName": "spacing.scaleLinear.800"
554
- }, {
555
- "attributes": {
556
- "group": "spacing",
557
- "state": "experimental",
558
- "replacement": "32px",
559
- "introduced": "0.10.28",
560
- "description": "Helpful guidance goes here"
561
- },
562
- "value": "2rem",
563
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
564
- "isSource": true,
565
- "original": {
566
- "attributes": {
567
- "group": "spacing",
568
- "state": "experimental",
569
- "replacement": "32px",
570
- "introduced": "0.10.28",
571
- "description": "Helpful guidance goes here"
572
- },
573
- "value": "Space400"
574
- },
575
- "name": "spacing.scaleLinear.900",
576
- "path": ["spacing", "scaleLinear", "900"],
577
- "cleanName": "spacing.scaleLinear.900"
578
- }, {
579
- "attributes": {
580
- "group": "spacing",
581
- "state": "experimental",
582
- "replacement": "40px",
583
- "introduced": "0.10.28",
584
- "description": "Helpful guidance goes here"
585
- },
586
- "value": "2.5rem",
587
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
588
- "isSource": true,
589
- "original": {
590
- "attributes": {
591
- "group": "spacing",
592
- "state": "experimental",
593
- "replacement": "40px",
594
- "introduced": "0.10.28",
595
- "description": "Helpful guidance goes here"
596
- },
597
- "value": "Space500"
598
- },
599
- "name": "spacing.scaleLinear.1000",
600
- "path": ["spacing", "scaleLinear", "1000"],
601
- "cleanName": "spacing.scaleLinear.1000"
602
- }, {
603
- "attributes": {
604
- "group": "spacing",
605
- "state": "experimental",
606
- "replacement": "48px",
607
- "introduced": "0.10.28",
608
- "description": "Helpful guidance goes here"
609
- },
610
- "value": "3rem",
611
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
612
- "isSource": true,
613
- "original": {
614
- "attributes": {
615
- "group": "spacing",
616
- "state": "experimental",
617
- "replacement": "48px",
618
- "introduced": "0.10.28",
619
- "description": "Helpful guidance goes here"
620
- },
621
- "value": "Space600"
622
- },
623
- "name": "spacing.scaleLinear.1100",
624
- "path": ["spacing", "scaleLinear", "1100"],
625
- "cleanName": "spacing.scaleLinear.1100"
626
- }, {
627
- "attributes": {
628
- "group": "spacing",
629
- "state": "experimental",
630
- "replacement": "0",
631
- "introduced": "0.10.28",
632
- "description": "Helpful guidance goes here"
633
- },
634
- "value": "0",
635
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
636
- "isSource": true,
637
- "original": {
638
- "attributes": {
639
- "group": "spacing",
640
- "state": "experimental",
641
- "replacement": "0",
642
- "introduced": "0.10.28",
643
- "description": "Helpful guidance goes here"
644
- },
645
- "value": "Space0"
646
- },
647
- "name": "spacing.size.none",
648
- "path": ["spacing", "size", "none"],
649
- "cleanName": "spacing.size.none"
650
- }, {
651
- "attributes": {
652
- "group": "spacing",
653
- "state": "experimental",
654
- "replacement": "2px",
655
- "introduced": "0.10.28",
656
- "description": "Helpful guidance goes here"
657
- },
658
- "value": "0.125rem",
659
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
660
- "isSource": true,
661
- "original": {
662
- "attributes": {
663
- "group": "spacing",
664
- "state": "experimental",
665
- "replacement": "2px",
666
- "introduced": "0.10.28",
667
- "description": "Helpful guidance goes here"
668
- },
669
- "value": "Space025"
670
- },
671
- "name": "spacing.size.xxxxSmall",
672
- "path": ["spacing", "size", "xxxxSmall"],
673
- "cleanName": "spacing.size.xxxxSmall"
674
- }, {
675
- "attributes": {
676
- "group": "spacing",
677
- "state": "experimental",
678
- "replacement": "4px",
679
- "introduced": "0.10.28",
680
- "description": "Helpful guidance goes here"
681
- },
682
- "value": "0.25rem",
683
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
684
- "isSource": true,
685
- "original": {
686
- "attributes": {
687
- "group": "spacing",
688
- "state": "experimental",
689
- "replacement": "4px",
690
- "introduced": "0.10.28",
691
- "description": "Helpful guidance goes here"
692
- },
693
- "value": "Space050"
694
- },
695
- "name": "spacing.size.xxxSmall",
696
- "path": ["spacing", "size", "xxxSmall"],
697
- "cleanName": "spacing.size.xxxSmall"
698
- }, {
699
- "attributes": {
700
- "group": "spacing",
701
- "state": "experimental",
702
- "replacement": "6px",
703
- "introduced": "0.10.28",
704
- "description": "Helpful guidance goes here"
705
- },
706
- "value": "0.375rem",
707
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
708
- "isSource": true,
709
- "original": {
710
- "attributes": {
711
- "group": "spacing",
712
- "state": "experimental",
713
- "replacement": "6px",
714
- "introduced": "0.10.28",
715
- "description": "Helpful guidance goes here"
716
- },
717
- "value": "Space075"
718
- },
719
- "name": "spacing.size.xxSmall",
720
- "path": ["spacing", "size", "xxSmall"],
721
- "cleanName": "spacing.size.xxSmall"
722
- }, {
723
- "attributes": {
724
- "group": "spacing",
725
- "state": "experimental",
726
- "replacement": "8px",
727
- "introduced": "0.10.28",
728
- "description": "Helpful guidance goes here"
729
- },
730
- "value": "0.5rem",
731
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
732
- "isSource": true,
733
- "original": {
734
- "attributes": {
735
- "group": "spacing",
736
- "state": "experimental",
737
- "replacement": "8px",
738
- "introduced": "0.10.28",
739
- "description": "Helpful guidance goes here"
740
- },
741
- "value": "Space100"
742
- },
743
- "name": "spacing.size.xsmall",
744
- "path": ["spacing", "size", "xsmall"],
745
- "cleanName": "spacing.size.xsmall"
746
- }, {
747
- "attributes": {
748
- "group": "spacing",
749
- "state": "experimental",
750
- "replacement": "12px",
751
- "introduced": "0.10.28",
752
- "description": "Helpful guidance goes here"
753
- },
754
- "value": "0.75rem",
755
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
756
- "isSource": true,
757
- "original": {
758
- "attributes": {
759
- "group": "spacing",
760
- "state": "experimental",
761
- "replacement": "12px",
762
- "introduced": "0.10.28",
763
- "description": "Helpful guidance goes here"
764
- },
765
- "value": "Space150"
766
- },
767
- "name": "spacing.size.small",
768
- "path": ["spacing", "size", "small"],
769
- "cleanName": "spacing.size.small"
770
- }, {
771
- "attributes": {
772
- "group": "spacing",
773
- "state": "experimental",
774
- "replacement": "16px",
775
- "introduced": "0.10.28",
776
- "description": "Helpful guidance goes here"
777
- },
778
- "value": "1rem",
779
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
780
- "isSource": true,
781
- "original": {
782
- "attributes": {
783
- "group": "spacing",
784
- "state": "experimental",
785
- "replacement": "16px",
786
- "introduced": "0.10.28",
787
- "description": "Helpful guidance goes here"
788
- },
789
- "value": "Space200"
790
- },
791
- "name": "spacing.size.medium",
792
- "path": ["spacing", "size", "medium"],
793
- "cleanName": "spacing.size.medium"
794
- }, {
795
- "attributes": {
796
- "group": "spacing",
797
- "state": "experimental",
798
- "replacement": "20px",
799
- "introduced": "0.10.28",
800
- "description": "Helpful guidance goes here"
801
- },
802
- "value": "1.25rem",
803
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
804
- "isSource": true,
805
- "original": {
806
- "attributes": {
807
- "group": "spacing",
808
- "state": "experimental",
809
- "replacement": "20px",
810
- "introduced": "0.10.28",
811
- "description": "Helpful guidance goes here"
812
- },
813
- "value": "Space250"
814
- },
815
- "name": "spacing.size.large",
816
- "path": ["spacing", "size", "large"],
817
- "cleanName": "spacing.size.large"
818
- }, {
819
- "attributes": {
820
- "group": "spacing",
821
- "state": "experimental",
822
- "replacement": "24px",
823
- "introduced": "0.10.28",
824
- "description": "Helpful guidance goes here"
825
- },
826
- "value": "1.5rem",
827
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
828
- "isSource": true,
829
- "original": {
830
- "attributes": {
831
- "group": "spacing",
832
- "state": "experimental",
833
- "replacement": "24px",
834
- "introduced": "0.10.28",
835
- "description": "Helpful guidance goes here"
836
- },
837
- "value": "Space300"
838
- },
839
- "name": "spacing.size.xlarge",
840
- "path": ["spacing", "size", "xlarge"],
841
- "cleanName": "spacing.size.xlarge"
842
- }, {
843
- "attributes": {
844
- "group": "spacing",
845
- "state": "experimental",
846
- "replacement": "32px",
847
- "introduced": "0.10.28",
848
- "description": "Helpful guidance goes here"
849
- },
850
- "value": "2rem",
851
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
852
- "isSource": true,
853
- "original": {
854
- "attributes": {
855
- "group": "spacing",
856
- "state": "experimental",
857
- "replacement": "32px",
858
- "introduced": "0.10.28",
859
- "description": "Helpful guidance goes here"
860
- },
861
- "value": "Space400"
862
- },
863
- "name": "spacing.size.xxlarge",
864
- "path": ["spacing", "size", "xxlarge"],
865
- "cleanName": "spacing.size.xxlarge"
866
- }, {
867
- "attributes": {
868
- "group": "spacing",
869
- "state": "experimental",
870
- "replacement": "40px",
871
- "introduced": "0.10.28",
872
- "description": "Helpful guidance goes here"
873
- },
874
- "value": "2.5rem",
875
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
876
- "isSource": true,
877
- "original": {
878
- "attributes": {
879
- "group": "spacing",
880
- "state": "experimental",
881
- "replacement": "40px",
882
- "introduced": "0.10.28",
883
- "description": "Helpful guidance goes here"
884
- },
885
- "value": "Space500"
886
- },
887
- "name": "spacing.size.xxxlarge",
888
- "path": ["spacing", "size", "xxxlarge"],
889
- "cleanName": "spacing.size.xxxlarge"
890
- }, {
891
- "attributes": {
892
- "group": "spacing",
893
- "state": "experimental",
894
- "replacement": "48px",
895
- "introduced": "0.10.28",
896
- "description": "Helpful guidance goes here"
897
- },
898
- "value": "3rem",
899
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
900
- "isSource": true,
901
- "original": {
902
- "attributes": {
903
- "group": "spacing",
904
- "state": "experimental",
905
- "replacement": "48px",
906
- "introduced": "0.10.28",
907
- "description": "Helpful guidance goes here"
908
- },
909
- "value": "Space600"
910
- },
911
- "name": "spacing.size.xxxxlarge",
912
- "path": ["spacing", "size", "xxxxlarge"],
913
- "cleanName": "spacing.size.xxxxlarge"
914
- }, {
915
- "attributes": {
916
- "group": "spacing",
917
- "state": "experimental",
918
- "replacement": "8px",
919
- "introduced": "0.10.28",
920
- "description": "Helpful guidance goes here"
921
- },
922
- "value": "0.5rem",
923
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
924
- "isSource": true,
925
- "original": {
926
- "attributes": {
927
- "group": "spacing",
928
- "state": "experimental",
929
- "replacement": "8px",
930
- "introduced": "0.10.28",
931
- "description": "Helpful guidance goes here"
932
- },
933
- "value": "Space100"
934
- },
935
- "name": "spacing.gap.100",
936
- "path": ["spacing", "gap", "100"],
937
- "cleanName": "spacing.gap.100"
938
- }, {
939
- "attributes": {
940
- "group": "spacing",
941
- "state": "experimental",
942
- "replacement": "16px",
943
- "introduced": "0.10.28",
944
- "description": "Helpful guidance goes here"
945
- },
946
- "value": "1rem",
947
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
948
- "isSource": true,
949
- "original": {
950
- "attributes": {
951
- "group": "spacing",
952
- "state": "experimental",
953
- "replacement": "16px",
954
- "introduced": "0.10.28",
955
- "description": "Helpful guidance goes here"
956
- },
957
- "value": "Space200"
958
- },
959
- "name": "spacing.gap.200",
960
- "path": ["spacing", "gap", "200"],
961
- "cleanName": "spacing.gap.200"
962
- }, {
963
- "attributes": {
964
- "group": "spacing",
965
- "state": "experimental",
966
- "replacement": "24px",
967
- "introduced": "0.10.28",
968
- "description": "Helpful guidance goes here"
969
- },
970
- "value": "1.5rem",
971
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
972
- "isSource": true,
973
- "original": {
974
- "attributes": {
975
- "group": "spacing",
976
- "state": "experimental",
977
- "replacement": "24px",
978
- "introduced": "0.10.28",
979
- "description": "Helpful guidance goes here"
980
- },
981
- "value": "Space300"
982
- },
983
- "name": "spacing.gap.300",
984
- "path": ["spacing", "gap", "300"],
985
- "cleanName": "spacing.gap.300"
986
- }, {
987
- "attributes": {
988
- "group": "spacing",
989
- "state": "experimental",
990
- "replacement": "8px",
991
- "introduced": "0.10.28",
992
- "description": "Helpful guidance goes here"
993
- },
994
- "value": "0.5rem",
995
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
996
- "isSource": true,
997
- "original": {
998
- "attributes": {
999
- "group": "spacing",
1000
- "state": "experimental",
1001
- "replacement": "8px",
1002
- "introduced": "0.10.28",
1003
- "description": "Helpful guidance goes here"
1004
- },
1005
- "value": "Space100"
1006
- },
1007
- "name": "spacing.inset.100",
1008
- "path": ["spacing", "inset", "100"],
1009
- "cleanName": "spacing.inset.100"
1010
- }, {
1011
- "attributes": {
1012
- "group": "spacing",
1013
- "state": "experimental",
1014
- "replacement": "16px",
1015
- "introduced": "0.10.28",
1016
- "description": "Helpful guidance goes here"
1017
- },
1018
- "value": "1rem",
1019
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1020
- "isSource": true,
1021
- "original": {
1022
- "attributes": {
1023
- "group": "spacing",
1024
- "state": "experimental",
1025
- "replacement": "16px",
1026
- "introduced": "0.10.28",
1027
- "description": "Helpful guidance goes here"
1028
- },
1029
- "value": "Space200"
1030
- },
1031
- "name": "spacing.inset.200",
1032
- "path": ["spacing", "inset", "200"],
1033
- "cleanName": "spacing.inset.200"
1034
- }, {
1035
- "attributes": {
1036
- "group": "spacing",
1037
- "state": "experimental",
1038
- "replacement": "24px",
1039
- "introduced": "0.10.28",
1040
- "description": "Helpful guidance goes here"
1041
- },
1042
- "value": "1.5rem",
1043
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1044
- "isSource": true,
1045
- "original": {
1046
- "attributes": {
1047
- "group": "spacing",
1048
- "state": "experimental",
1049
- "replacement": "24px",
1050
- "introduced": "0.10.28",
1051
- "description": "Helpful guidance goes here"
1052
- },
1053
- "value": "Space300"
1054
- },
1055
- "name": "spacing.inset.300",
1056
- "path": ["spacing", "inset", "300"],
1057
- "cleanName": "spacing.inset.300"
1058
- }, {
1059
- "attributes": {
1060
- "group": "spacing",
1061
- "state": "experimental",
1062
- "replacement": "12px",
1063
- "introduced": "0.10.28",
1064
- "description": "Helpful guidance goes here"
1065
- },
1066
- "value": "0.75rem",
1067
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1068
- "isSource": true,
1069
- "original": {
1070
- "attributes": {
1071
- "group": "spacing",
1072
- "state": "experimental",
1073
- "replacement": "12px",
1074
- "introduced": "0.10.28",
1075
- "description": "Helpful guidance goes here"
1076
- },
1077
- "value": "Space150"
1078
- },
1079
- "name": "spacing.ecl.container.12",
1080
- "path": ["spacing", "ecl", "container", "12"],
1081
- "cleanName": "spacing.ecl.container.12"
1082
- }, {
1083
- "attributes": {
1084
- "group": "spacing",
1085
- "state": "experimental",
1086
- "replacement": "16px",
1087
- "introduced": "0.10.28",
1088
- "description": "Helpful guidance goes here"
1089
- },
1090
- "value": "1rem",
1091
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1092
- "isSource": true,
1093
- "original": {
1094
- "attributes": {
1095
- "group": "spacing",
1096
- "state": "experimental",
1097
- "replacement": "16px",
1098
- "introduced": "0.10.28",
1099
- "description": "Helpful guidance goes here"
1100
- },
1101
- "value": "Space200"
1102
- },
1103
- "name": "spacing.ecl.container.16",
1104
- "path": ["spacing", "ecl", "container", "16"],
1105
- "cleanName": "spacing.ecl.container.16"
1106
- }, {
1107
- "attributes": {
1108
- "group": "spacing",
1109
- "state": "experimental",
1110
- "replacement": "20px",
1111
- "introduced": "0.10.28",
1112
- "description": "Helpful guidance goes here"
1113
- },
1114
- "value": "1.25rem",
1115
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1116
- "isSource": true,
1117
- "original": {
1118
- "attributes": {
1119
- "group": "spacing",
1120
- "state": "experimental",
1121
- "replacement": "20px",
1122
- "introduced": "0.10.28",
1123
- "description": "Helpful guidance goes here"
1124
- },
1125
- "value": "Space250"
1126
- },
1127
- "name": "spacing.ecl.container.20",
1128
- "path": ["spacing", "ecl", "container", "20"],
1129
- "cleanName": "spacing.ecl.container.20"
1130
- }, {
1131
- "attributes": {
1132
- "group": "spacing",
1133
- "state": "experimental",
1134
- "replacement": "24px",
1135
- "introduced": "0.10.28",
1136
- "description": "Helpful guidance goes here"
1137
- },
1138
- "value": "1.5rem",
1139
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1140
- "isSource": true,
1141
- "original": {
1142
- "attributes": {
1143
- "group": "spacing",
1144
- "state": "experimental",
1145
- "replacement": "24px",
1146
- "introduced": "0.10.28",
1147
- "description": "Helpful guidance goes here"
1148
- },
1149
- "value": "Space300"
1150
- },
1151
- "name": "spacing.ecl.container.24",
1152
- "path": ["spacing", "ecl", "container", "24"],
1153
- "cleanName": "spacing.ecl.container.24"
1154
- }, {
1155
- "attributes": {
1156
- "group": "spacing",
1157
- "state": "experimental",
1158
- "replacement": "2px",
1159
- "introduced": "0.10.28",
1160
- "description": "Helpful guidance goes here"
1161
- },
1162
- "value": "0.125rem",
1163
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1164
- "isSource": true,
1165
- "original": {
1166
- "attributes": {
1167
- "group": "spacing",
1168
- "state": "experimental",
1169
- "replacement": "2px",
1170
- "introduced": "0.10.28",
1171
- "description": "Helpful guidance goes here"
1172
- },
1173
- "value": "Space025"
1174
- },
1175
- "name": "spacing.ecl.element.2",
1176
- "path": ["spacing", "ecl", "element", "2"],
1177
- "cleanName": "spacing.ecl.element.2"
1178
- }, {
1179
- "attributes": {
1180
- "group": "spacing",
1181
- "state": "experimental",
1182
- "replacement": "4px",
1183
- "introduced": "0.10.28",
1184
- "description": "Helpful guidance goes here"
1185
- },
1186
- "value": "0.25rem",
1187
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1188
- "isSource": true,
1189
- "original": {
1190
- "attributes": {
1191
- "group": "spacing",
1192
- "state": "experimental",
1193
- "replacement": "4px",
1194
- "introduced": "0.10.28",
1195
- "description": "Helpful guidance goes here"
1196
- },
1197
- "value": "Space050"
1198
- },
1199
- "name": "spacing.ecl.element.4",
1200
- "path": ["spacing", "ecl", "element", "4"],
1201
- "cleanName": "spacing.ecl.element.4"
1202
- }, {
1203
- "attributes": {
1204
- "group": "spacing",
1205
- "state": "experimental",
1206
- "replacement": "6px",
1207
- "introduced": "0.10.28",
1208
- "description": "Helpful guidance goes here"
1209
- },
1210
- "value": "0.375rem",
1211
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1212
- "isSource": true,
1213
- "original": {
1214
- "attributes": {
1215
- "group": "spacing",
1216
- "state": "experimental",
1217
- "replacement": "6px",
1218
- "introduced": "0.10.28",
1219
- "description": "Helpful guidance goes here"
1220
- },
1221
- "value": "Space075"
1222
- },
1223
- "name": "spacing.ecl.element.6",
1224
- "path": ["spacing", "ecl", "element", "6"],
1225
- "cleanName": "spacing.ecl.element.6"
1226
- }, {
1227
- "attributes": {
1228
- "group": "spacing",
1229
- "state": "experimental",
1230
- "replacement": "8px",
1231
- "introduced": "0.10.28",
1232
- "description": "Helpful guidance goes here"
1233
- },
1234
- "value": "0.5rem",
1235
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1236
- "isSource": true,
1237
- "original": {
1238
- "attributes": {
1239
- "group": "spacing",
1240
- "state": "experimental",
1241
- "replacement": "8px",
1242
- "introduced": "0.10.28",
1243
- "description": "Helpful guidance goes here"
1244
- },
1245
- "value": "Space100"
1246
- },
1247
- "name": "spacing.ecl.element.8",
1248
- "path": ["spacing", "ecl", "element", "8"],
1249
- "cleanName": "spacing.ecl.element.8"
1250
- }, {
1251
- "attributes": {
1252
- "group": "spacing",
1253
- "state": "experimental",
1254
- "replacement": "32px",
1255
- "introduced": "0.10.28",
1256
- "description": "Helpful guidance goes here"
1257
- },
1258
- "value": "2rem",
1259
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1260
- "isSource": true,
1261
- "original": {
1262
- "attributes": {
1263
- "group": "spacing",
1264
- "state": "experimental",
1265
- "replacement": "32px",
1266
- "introduced": "0.10.28",
1267
- "description": "Helpful guidance goes here"
1268
- },
1269
- "value": "Space400"
1270
- },
1271
- "name": "spacing.ecl.layout.32",
1272
- "path": ["spacing", "ecl", "layout", "32"],
1273
- "cleanName": "spacing.ecl.layout.32"
1274
- }, {
1275
- "attributes": {
1276
- "group": "spacing",
1277
- "state": "experimental",
1278
- "replacement": "40px",
1279
- "introduced": "0.10.28",
1280
- "description": "Helpful guidance goes here"
1281
- },
1282
- "value": "2.5rem",
1283
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1284
- "isSource": true,
1285
- "original": {
1286
- "attributes": {
1287
- "group": "spacing",
1288
- "state": "experimental",
1289
- "replacement": "40px",
1290
- "introduced": "0.10.28",
1291
- "description": "Helpful guidance goes here"
1292
- },
1293
- "value": "Space500"
1294
- },
1295
- "name": "spacing.ecl.layout.40",
1296
- "path": ["spacing", "ecl", "layout", "40"],
1297
- "cleanName": "spacing.ecl.layout.40"
1298
- }, {
1299
- "attributes": {
1300
- "group": "spacing",
1301
- "state": "experimental",
1302
- "replacement": "64px",
1303
- "introduced": "0.10.28",
1304
- "description": "Helpful guidance goes here"
1305
- },
1306
- "value": "3rem",
1307
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1308
- "isSource": true,
1309
- "original": {
1310
- "attributes": {
1311
- "group": "spacing",
1312
- "state": "experimental",
1313
- "replacement": "64px",
1314
- "introduced": "0.10.28",
1315
- "description": "Helpful guidance goes here"
1316
- },
1317
- "value": "Space600"
1318
- },
1319
- "name": "spacing.ecl.layout.64",
1320
- "path": ["spacing", "ecl", "layout", "64"],
1321
- "cleanName": "spacing.ecl.layout.64"
1322
- }, {
1323
- "attributes": {
1324
- "group": "spacing",
1325
- "state": "experimental",
1326
- "replacement": "2px",
1327
- "introduced": "0.10.28",
1328
- "description": "Helpful guidance goes here"
1329
- },
1330
- "value": "0.125rem",
1331
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1332
- "isSource": true,
1333
- "original": {
1334
- "attributes": {
1335
- "group": "spacing",
1336
- "state": "experimental",
1337
- "replacement": "2px",
1338
- "introduced": "0.10.28",
1339
- "description": "Helpful guidance goes here"
1340
- },
1341
- "value": "Space025"
1342
- },
1343
- "name": "spacing.ccc.component.2",
1344
- "path": ["spacing", "ccc", "component", "2"],
1345
- "cleanName": "spacing.ccc.component.2"
1346
- }, {
1347
- "attributes": {
1348
- "group": "spacing",
1349
- "state": "experimental",
1350
- "replacement": "4px",
1351
- "introduced": "0.10.28",
1352
- "description": "Helpful guidance goes here"
1353
- },
1354
- "value": "0.25rem",
1355
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1356
- "isSource": true,
1357
- "original": {
1358
- "attributes": {
1359
- "group": "spacing",
1360
- "state": "experimental",
1361
- "replacement": "4px",
1362
- "introduced": "0.10.28",
1363
- "description": "Helpful guidance goes here"
1364
- },
1365
- "value": "Space050"
1366
- },
1367
- "name": "spacing.ccc.component.4",
1368
- "path": ["spacing", "ccc", "component", "4"],
1369
- "cleanName": "spacing.ccc.component.4"
1370
- }, {
1371
- "attributes": {
1372
- "group": "spacing",
1373
- "state": "experimental",
1374
- "replacement": "6px",
1375
- "introduced": "0.10.28",
1376
- "description": "Helpful guidance goes here"
1377
- },
1378
- "value": "0.375rem",
1379
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1380
- "isSource": true,
1381
- "original": {
1382
- "attributes": {
1383
- "group": "spacing",
1384
- "state": "experimental",
1385
- "replacement": "6px",
1386
- "introduced": "0.10.28",
1387
- "description": "Helpful guidance goes here"
1388
- },
1389
- "value": "Space075"
1390
- },
1391
- "name": "spacing.ccc.component.6",
1392
- "path": ["spacing", "ccc", "component", "6"],
1393
- "cleanName": "spacing.ccc.component.6"
1394
- }, {
1395
- "attributes": {
1396
- "group": "spacing",
1397
- "state": "experimental",
1398
- "replacement": "8px",
1399
- "introduced": "0.10.28",
1400
- "description": "Helpful guidance goes here"
1401
- },
1402
- "value": "0.5rem",
1403
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1404
- "isSource": true,
1405
- "original": {
1406
- "attributes": {
1407
- "group": "spacing",
1408
- "state": "experimental",
1409
- "replacement": "8px",
1410
- "introduced": "0.10.28",
1411
- "description": "Helpful guidance goes here"
1412
- },
1413
- "value": "Space100"
1414
- },
1415
- "name": "spacing.ccc.component.8",
1416
- "path": ["spacing", "ccc", "component", "8"],
1417
- "cleanName": "spacing.ccc.component.8"
1418
- }, {
1419
- "attributes": {
1420
- "group": "spacing",
1421
- "state": "experimental",
1422
- "replacement": "32px",
1423
- "introduced": "0.10.28",
1424
- "description": "Helpful guidance goes here"
1425
- },
1426
- "value": "2rem",
1427
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1428
- "isSource": true,
1429
- "original": {
1430
- "attributes": {
1431
- "group": "spacing",
1432
- "state": "experimental",
1433
- "replacement": "32px",
1434
- "introduced": "0.10.28",
1435
- "description": "Helpful guidance goes here"
1436
- },
1437
- "value": "Space400"
1438
- },
1439
- "name": "spacing.ccc.container.32",
1440
- "path": ["spacing", "ccc", "container", "32"],
1441
- "cleanName": "spacing.ccc.container.32"
1442
- }, {
1443
- "attributes": {
1444
- "group": "spacing",
1445
- "state": "experimental",
1446
- "replacement": "40px",
1447
- "introduced": "0.10.28",
1448
- "description": "Helpful guidance goes here"
1449
- },
1450
- "value": "2.5rem",
1451
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1452
- "isSource": true,
1453
- "original": {
1454
- "attributes": {
1455
- "group": "spacing",
1456
- "state": "experimental",
1457
- "replacement": "40px",
1458
- "introduced": "0.10.28",
1459
- "description": "Helpful guidance goes here"
1460
- },
1461
- "value": "Space500"
1462
- },
1463
- "name": "spacing.ccc.container.40",
1464
- "path": ["spacing", "ccc", "container", "40"],
1465
- "cleanName": "spacing.ccc.container.40"
1466
- }, {
1467
- "attributes": {
1468
- "group": "spacing",
1469
- "state": "experimental",
1470
- "replacement": "48px",
1471
- "introduced": "0.10.28",
1472
- "description": "Helpful guidance goes here"
1473
- },
1474
- "value": "3rem",
1475
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1476
- "isSource": true,
1477
- "original": {
1478
- "attributes": {
1479
- "group": "spacing",
1480
- "state": "experimental",
1481
- "replacement": "48px",
1482
- "introduced": "0.10.28",
1483
- "description": "Helpful guidance goes here"
1484
- },
1485
- "value": "Space600"
1486
- },
1487
- "name": "spacing.ccc.container.48",
1488
- "path": ["spacing", "ccc", "container", "48"],
1489
- "cleanName": "spacing.ccc.container.48"
1490
- }, {
1491
- "attributes": {
1492
- "group": "spacing",
1493
- "state": "experimental",
1494
- "replacement": "12px",
1495
- "introduced": "0.10.28",
1496
- "description": "Helpful guidance goes here"
1497
- },
1498
- "value": "0.75rem",
1499
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1500
- "isSource": true,
1501
- "original": {
1502
- "attributes": {
1503
- "group": "spacing",
1504
- "state": "experimental",
1505
- "replacement": "12px",
1506
- "introduced": "0.10.28",
1507
- "description": "Helpful guidance goes here"
1508
- },
1509
- "value": "Space150"
1510
- },
1511
- "name": "spacing.ccc.content.12",
1512
- "path": ["spacing", "ccc", "content", "12"],
1513
- "cleanName": "spacing.ccc.content.12"
1514
- }, {
1515
- "attributes": {
1516
- "group": "spacing",
1517
- "state": "experimental",
1518
- "replacement": "16px",
1519
- "introduced": "0.10.28",
1520
- "description": "Helpful guidance goes here"
1521
- },
1522
- "value": "1rem",
1523
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1524
- "isSource": true,
1525
- "original": {
1526
- "attributes": {
1527
- "group": "spacing",
1528
- "state": "experimental",
1529
- "replacement": "16px",
1530
- "introduced": "0.10.28",
1531
- "description": "Helpful guidance goes here"
1532
- },
1533
- "value": "Space200"
1534
- },
1535
- "name": "spacing.ccc.content.16",
1536
- "path": ["spacing", "ccc", "content", "16"],
1537
- "cleanName": "spacing.ccc.content.16"
1538
- }, {
1539
- "attributes": {
1540
- "group": "spacing",
1541
- "state": "experimental",
1542
- "replacement": "20px",
1543
- "introduced": "0.10.28",
1544
- "description": "Helpful guidance goes here"
1545
- },
1546
- "value": "1.25rem",
1547
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1548
- "isSource": true,
1549
- "original": {
1550
- "attributes": {
1551
- "group": "spacing",
1552
- "state": "experimental",
1553
- "replacement": "20px",
1554
- "introduced": "0.10.28",
1555
- "description": "Helpful guidance goes here"
1556
- },
1557
- "value": "Space250"
1558
- },
1559
- "name": "spacing.ccc.content.20",
1560
- "path": ["spacing", "ccc", "content", "20"],
1561
- "cleanName": "spacing.ccc.content.20"
1562
- }, {
1563
- "attributes": {
1564
- "group": "spacing",
1565
- "state": "experimental",
1566
- "replacement": "24px",
1567
- "introduced": "0.10.28",
1568
- "description": "Helpful guidance goes here"
1569
- },
1570
- "value": "1.5rem",
1571
- "filePath": "src/tokens/atlassian-spacing/spacing.tsx",
1572
- "isSource": true,
1573
- "original": {
1574
- "attributes": {
1575
- "group": "spacing",
1576
- "state": "experimental",
1577
- "replacement": "24px",
1578
- "introduced": "0.10.28",
1579
- "description": "Helpful guidance goes here"
1580
- },
1581
- "value": "Space300"
1582
- },
1583
- "name": "spacing.ccc.content.24",
1584
- "path": ["spacing", "ccc", "content", "24"],
1585
- "cleanName": "spacing.ccc.content.24"
1586
- }, {
1587
7
  "attributes": {
1588
8
  "group": "spacing",
1589
9
  "state": "active",