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