@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,713 +1,6 @@
1
1
  {
2
2
  "name": "Spacing",
3
3
  "tokens": {
4
- "Spacing/spacing.scale.0": {
5
- "attributes": {
6
- "group": "spacing",
7
- "state": "active",
8
- "introduced": "0.10.16",
9
- "description": "Equates to `0`. Can be used for resetting default spacing styles."
10
- },
11
- "value": "0"
12
- },
13
- "Spacing/spacing.scale.025": {
14
- "attributes": {
15
- "group": "spacing",
16
- "state": "active",
17
- "suggest": [
18
- "1px",
19
- "3px"
20
- ],
21
- "introduced": "0.10.16",
22
- "description": "Use for spacing in compact scenarios. The smallest value in our scale."
23
- },
24
- "value": "0.125rem"
25
- },
26
- "Spacing/spacing.scale.050": {
27
- "attributes": {
28
- "group": "spacing",
29
- "state": "active",
30
- "suggest": [
31
- "3px",
32
- "5px"
33
- ],
34
- "introduced": "0.10.16",
35
- "description": "Helpful guidance goes here"
36
- },
37
- "value": "0.25rem"
38
- },
39
- "Spacing/spacing.scale.075": {
40
- "attributes": {
41
- "group": "spacing",
42
- "state": "active",
43
- "suggest": [
44
- "5px",
45
- "7px"
46
- ],
47
- "introduced": "0.10.16",
48
- "description": "Helpful guidance goes here"
49
- },
50
- "value": "0.375rem"
51
- },
52
- "Spacing/spacing.scale.100": {
53
- "attributes": {
54
- "group": "spacing",
55
- "state": "active",
56
- "suggest": [
57
- "7px",
58
- "9px"
59
- ],
60
- "introduced": "0.10.16",
61
- "description": "Helpful guidance goes here"
62
- },
63
- "value": "0.5rem"
64
- },
65
- "Spacing/spacing.scale.150": {
66
- "attributes": {
67
- "group": "spacing",
68
- "state": "active",
69
- "suggest": [
70
- "10px",
71
- "11px",
72
- "13px",
73
- "14px"
74
- ],
75
- "introduced": "0.10.16",
76
- "description": "Helpful guidance goes here"
77
- },
78
- "value": "0.75rem"
79
- },
80
- "Spacing/spacing.scale.200": {
81
- "attributes": {
82
- "group": "spacing",
83
- "state": "active",
84
- "suggest": [
85
- "14px",
86
- "15px",
87
- "17px",
88
- "18px"
89
- ],
90
- "introduced": "0.10.16",
91
- "description": "Helpful guidance goes here"
92
- },
93
- "value": "1rem"
94
- },
95
- "Spacing/spacing.scale.250": {
96
- "attributes": {
97
- "group": "spacing",
98
- "state": "active",
99
- "suggest": [
100
- "19px",
101
- "21px",
102
- "22px",
103
- "23px"
104
- ],
105
- "introduced": "0.10.16",
106
- "description": "Helpful guidance goes here"
107
- },
108
- "value": "1.25rem"
109
- },
110
- "Spacing/spacing.scale.300": {
111
- "attributes": {
112
- "group": "spacing",
113
- "state": "active",
114
- "suggest": [
115
- "23px",
116
- "25px",
117
- "26px",
118
- "27px",
119
- "28px"
120
- ],
121
- "introduced": "0.10.16",
122
- "description": "Helpful guidance goes here"
123
- },
124
- "value": "1.5rem"
125
- },
126
- "Spacing/spacing.scale.400": {
127
- "attributes": {
128
- "group": "spacing",
129
- "state": "active",
130
- "suggest": [
131
- "28px",
132
- "29px",
133
- "30px",
134
- "31px",
135
- "33px",
136
- "34px",
137
- "35px"
138
- ],
139
- "introduced": "0.10.16",
140
- "description": "Helpful guidance goes here"
141
- },
142
- "value": "2rem"
143
- },
144
- "Spacing/spacing.scale.500": {
145
- "attributes": {
146
- "group": "spacing",
147
- "state": "active",
148
- "suggest": [
149
- "28px",
150
- "29px",
151
- "30px",
152
- "31px",
153
- "33px",
154
- "34px",
155
- "35px"
156
- ],
157
- "introduced": "0.10.16",
158
- "description": "Helpful guidance goes here"
159
- },
160
- "value": "2.5rem"
161
- },
162
- "Spacing/spacing.scale.600": {
163
- "attributes": {
164
- "group": "spacing",
165
- "state": "active",
166
- "introduced": "0.10.16",
167
- "description": "Helpful guidance goes here"
168
- },
169
- "value": "3rem"
170
- },
171
- "Spacing/spacing.scale.800": {
172
- "attributes": {
173
- "group": "spacing",
174
- "state": "active",
175
- "introduced": "0.12.0",
176
- "pixelValue": "",
177
- "description": "Helpful guidance goes here"
178
- },
179
- "value": "4rem"
180
- },
181
- "Spacing/spacing.scale.1000": {
182
- "attributes": {
183
- "group": "spacing",
184
- "state": "active",
185
- "introduced": "0.12.0",
186
- "pixelValue": "80px",
187
- "description": "Helpful guidance goes here"
188
- },
189
- "value": "5rem"
190
- },
191
- "Spacing/spacing.scaleLinear.0": {
192
- "attributes": {
193
- "group": "spacing",
194
- "state": "experimental",
195
- "replacement": "0",
196
- "introduced": "0.10.28",
197
- "description": "Helpful guidance goes here"
198
- },
199
- "value": "0"
200
- },
201
- "Spacing/spacing.scaleLinear.100": {
202
- "attributes": {
203
- "group": "spacing",
204
- "state": "experimental",
205
- "replacement": "2px",
206
- "introduced": "0.10.28",
207
- "description": "Helpful guidance goes here"
208
- },
209
- "value": "0.125rem"
210
- },
211
- "Spacing/spacing.scaleLinear.200": {
212
- "attributes": {
213
- "group": "spacing",
214
- "state": "experimental",
215
- "replacement": "4px",
216
- "introduced": "0.10.28",
217
- "description": "Helpful guidance goes here"
218
- },
219
- "value": "0.25rem"
220
- },
221
- "Spacing/spacing.scaleLinear.300": {
222
- "attributes": {
223
- "group": "spacing",
224
- "state": "experimental",
225
- "replacement": "6px",
226
- "introduced": "0.10.28",
227
- "description": "Helpful guidance goes here"
228
- },
229
- "value": "0.375rem"
230
- },
231
- "Spacing/spacing.scaleLinear.400": {
232
- "attributes": {
233
- "group": "spacing",
234
- "state": "experimental",
235
- "replacement": "8px",
236
- "introduced": "0.10.28",
237
- "description": "Helpful guidance goes here"
238
- },
239
- "value": "0.5rem"
240
- },
241
- "Spacing/spacing.scaleLinear.500": {
242
- "attributes": {
243
- "group": "spacing",
244
- "state": "experimental",
245
- "replacement": "12px",
246
- "introduced": "0.10.28",
247
- "description": "Helpful guidance goes here"
248
- },
249
- "value": "0.75rem"
250
- },
251
- "Spacing/spacing.scaleLinear.600": {
252
- "attributes": {
253
- "group": "spacing",
254
- "state": "experimental",
255
- "replacement": "16px",
256
- "introduced": "0.10.28",
257
- "description": "Helpful guidance goes here"
258
- },
259
- "value": "1rem"
260
- },
261
- "Spacing/spacing.scaleLinear.700": {
262
- "attributes": {
263
- "group": "spacing",
264
- "state": "experimental",
265
- "replacement": "20px",
266
- "introduced": "0.10.28",
267
- "description": "Helpful guidance goes here"
268
- },
269
- "value": "1.25rem"
270
- },
271
- "Spacing/spacing.scaleLinear.800": {
272
- "attributes": {
273
- "group": "spacing",
274
- "state": "experimental",
275
- "replacement": "24px",
276
- "introduced": "0.10.28",
277
- "description": "Helpful guidance goes here"
278
- },
279
- "value": "1.5rem"
280
- },
281
- "Spacing/spacing.scaleLinear.900": {
282
- "attributes": {
283
- "group": "spacing",
284
- "state": "experimental",
285
- "replacement": "32px",
286
- "introduced": "0.10.28",
287
- "description": "Helpful guidance goes here"
288
- },
289
- "value": "2rem"
290
- },
291
- "Spacing/spacing.scaleLinear.1000": {
292
- "attributes": {
293
- "group": "spacing",
294
- "state": "experimental",
295
- "replacement": "40px",
296
- "introduced": "0.10.28",
297
- "description": "Helpful guidance goes here"
298
- },
299
- "value": "2.5rem"
300
- },
301
- "Spacing/spacing.scaleLinear.1100": {
302
- "attributes": {
303
- "group": "spacing",
304
- "state": "experimental",
305
- "replacement": "48px",
306
- "introduced": "0.10.28",
307
- "description": "Helpful guidance goes here"
308
- },
309
- "value": "3rem"
310
- },
311
- "Spacing/spacing.size.none": {
312
- "attributes": {
313
- "group": "spacing",
314
- "state": "experimental",
315
- "replacement": "0",
316
- "introduced": "0.10.28",
317
- "description": "Helpful guidance goes here"
318
- },
319
- "value": "0"
320
- },
321
- "Spacing/spacing.size.xxxxSmall": {
322
- "attributes": {
323
- "group": "spacing",
324
- "state": "experimental",
325
- "replacement": "2px",
326
- "introduced": "0.10.28",
327
- "description": "Helpful guidance goes here"
328
- },
329
- "value": "0.125rem"
330
- },
331
- "Spacing/spacing.size.xxxSmall": {
332
- "attributes": {
333
- "group": "spacing",
334
- "state": "experimental",
335
- "replacement": "4px",
336
- "introduced": "0.10.28",
337
- "description": "Helpful guidance goes here"
338
- },
339
- "value": "0.25rem"
340
- },
341
- "Spacing/spacing.size.xxSmall": {
342
- "attributes": {
343
- "group": "spacing",
344
- "state": "experimental",
345
- "replacement": "6px",
346
- "introduced": "0.10.28",
347
- "description": "Helpful guidance goes here"
348
- },
349
- "value": "0.375rem"
350
- },
351
- "Spacing/spacing.size.xsmall": {
352
- "attributes": {
353
- "group": "spacing",
354
- "state": "experimental",
355
- "replacement": "8px",
356
- "introduced": "0.10.28",
357
- "description": "Helpful guidance goes here"
358
- },
359
- "value": "0.5rem"
360
- },
361
- "Spacing/spacing.size.small": {
362
- "attributes": {
363
- "group": "spacing",
364
- "state": "experimental",
365
- "replacement": "12px",
366
- "introduced": "0.10.28",
367
- "description": "Helpful guidance goes here"
368
- },
369
- "value": "0.75rem"
370
- },
371
- "Spacing/spacing.size.medium": {
372
- "attributes": {
373
- "group": "spacing",
374
- "state": "experimental",
375
- "replacement": "16px",
376
- "introduced": "0.10.28",
377
- "description": "Helpful guidance goes here"
378
- },
379
- "value": "1rem"
380
- },
381
- "Spacing/spacing.size.large": {
382
- "attributes": {
383
- "group": "spacing",
384
- "state": "experimental",
385
- "replacement": "20px",
386
- "introduced": "0.10.28",
387
- "description": "Helpful guidance goes here"
388
- },
389
- "value": "1.25rem"
390
- },
391
- "Spacing/spacing.size.xlarge": {
392
- "attributes": {
393
- "group": "spacing",
394
- "state": "experimental",
395
- "replacement": "24px",
396
- "introduced": "0.10.28",
397
- "description": "Helpful guidance goes here"
398
- },
399
- "value": "1.5rem"
400
- },
401
- "Spacing/spacing.size.xxlarge": {
402
- "attributes": {
403
- "group": "spacing",
404
- "state": "experimental",
405
- "replacement": "32px",
406
- "introduced": "0.10.28",
407
- "description": "Helpful guidance goes here"
408
- },
409
- "value": "2rem"
410
- },
411
- "Spacing/spacing.size.xxxlarge": {
412
- "attributes": {
413
- "group": "spacing",
414
- "state": "experimental",
415
- "replacement": "40px",
416
- "introduced": "0.10.28",
417
- "description": "Helpful guidance goes here"
418
- },
419
- "value": "2.5rem"
420
- },
421
- "Spacing/spacing.size.xxxxlarge": {
422
- "attributes": {
423
- "group": "spacing",
424
- "state": "experimental",
425
- "replacement": "48px",
426
- "introduced": "0.10.28",
427
- "description": "Helpful guidance goes here"
428
- },
429
- "value": "3rem"
430
- },
431
- "Spacing/spacing.gap.100": {
432
- "attributes": {
433
- "group": "spacing",
434
- "state": "experimental",
435
- "replacement": "8px",
436
- "introduced": "0.10.28",
437
- "description": "Helpful guidance goes here"
438
- },
439
- "value": "0.5rem"
440
- },
441
- "Spacing/spacing.gap.200": {
442
- "attributes": {
443
- "group": "spacing",
444
- "state": "experimental",
445
- "replacement": "16px",
446
- "introduced": "0.10.28",
447
- "description": "Helpful guidance goes here"
448
- },
449
- "value": "1rem"
450
- },
451
- "Spacing/spacing.gap.300": {
452
- "attributes": {
453
- "group": "spacing",
454
- "state": "experimental",
455
- "replacement": "24px",
456
- "introduced": "0.10.28",
457
- "description": "Helpful guidance goes here"
458
- },
459
- "value": "1.5rem"
460
- },
461
- "Spacing/spacing.inset.100": {
462
- "attributes": {
463
- "group": "spacing",
464
- "state": "experimental",
465
- "replacement": "8px",
466
- "introduced": "0.10.28",
467
- "description": "Helpful guidance goes here"
468
- },
469
- "value": "0.5rem"
470
- },
471
- "Spacing/spacing.inset.200": {
472
- "attributes": {
473
- "group": "spacing",
474
- "state": "experimental",
475
- "replacement": "16px",
476
- "introduced": "0.10.28",
477
- "description": "Helpful guidance goes here"
478
- },
479
- "value": "1rem"
480
- },
481
- "Spacing/spacing.inset.300": {
482
- "attributes": {
483
- "group": "spacing",
484
- "state": "experimental",
485
- "replacement": "24px",
486
- "introduced": "0.10.28",
487
- "description": "Helpful guidance goes here"
488
- },
489
- "value": "1.5rem"
490
- },
491
- "Spacing/spacing.ecl.container.12": {
492
- "attributes": {
493
- "group": "spacing",
494
- "state": "experimental",
495
- "replacement": "12px",
496
- "introduced": "0.10.28",
497
- "description": "Helpful guidance goes here"
498
- },
499
- "value": "0.75rem"
500
- },
501
- "Spacing/spacing.ecl.container.16": {
502
- "attributes": {
503
- "group": "spacing",
504
- "state": "experimental",
505
- "replacement": "16px",
506
- "introduced": "0.10.28",
507
- "description": "Helpful guidance goes here"
508
- },
509
- "value": "1rem"
510
- },
511
- "Spacing/spacing.ecl.container.20": {
512
- "attributes": {
513
- "group": "spacing",
514
- "state": "experimental",
515
- "replacement": "20px",
516
- "introduced": "0.10.28",
517
- "description": "Helpful guidance goes here"
518
- },
519
- "value": "1.25rem"
520
- },
521
- "Spacing/spacing.ecl.container.24": {
522
- "attributes": {
523
- "group": "spacing",
524
- "state": "experimental",
525
- "replacement": "24px",
526
- "introduced": "0.10.28",
527
- "description": "Helpful guidance goes here"
528
- },
529
- "value": "1.5rem"
530
- },
531
- "Spacing/spacing.ecl.element.2": {
532
- "attributes": {
533
- "group": "spacing",
534
- "state": "experimental",
535
- "replacement": "2px",
536
- "introduced": "0.10.28",
537
- "description": "Helpful guidance goes here"
538
- },
539
- "value": "0.125rem"
540
- },
541
- "Spacing/spacing.ecl.element.4": {
542
- "attributes": {
543
- "group": "spacing",
544
- "state": "experimental",
545
- "replacement": "4px",
546
- "introduced": "0.10.28",
547
- "description": "Helpful guidance goes here"
548
- },
549
- "value": "0.25rem"
550
- },
551
- "Spacing/spacing.ecl.element.6": {
552
- "attributes": {
553
- "group": "spacing",
554
- "state": "experimental",
555
- "replacement": "6px",
556
- "introduced": "0.10.28",
557
- "description": "Helpful guidance goes here"
558
- },
559
- "value": "0.375rem"
560
- },
561
- "Spacing/spacing.ecl.element.8": {
562
- "attributes": {
563
- "group": "spacing",
564
- "state": "experimental",
565
- "replacement": "8px",
566
- "introduced": "0.10.28",
567
- "description": "Helpful guidance goes here"
568
- },
569
- "value": "0.5rem"
570
- },
571
- "Spacing/spacing.ecl.layout.32": {
572
- "attributes": {
573
- "group": "spacing",
574
- "state": "experimental",
575
- "replacement": "32px",
576
- "introduced": "0.10.28",
577
- "description": "Helpful guidance goes here"
578
- },
579
- "value": "2rem"
580
- },
581
- "Spacing/spacing.ecl.layout.40": {
582
- "attributes": {
583
- "group": "spacing",
584
- "state": "experimental",
585
- "replacement": "40px",
586
- "introduced": "0.10.28",
587
- "description": "Helpful guidance goes here"
588
- },
589
- "value": "2.5rem"
590
- },
591
- "Spacing/spacing.ecl.layout.64": {
592
- "attributes": {
593
- "group": "spacing",
594
- "state": "experimental",
595
- "replacement": "64px",
596
- "introduced": "0.10.28",
597
- "description": "Helpful guidance goes here"
598
- },
599
- "value": "3rem"
600
- },
601
- "Spacing/spacing.ccc.component.2": {
602
- "attributes": {
603
- "group": "spacing",
604
- "state": "experimental",
605
- "replacement": "2px",
606
- "introduced": "0.10.28",
607
- "description": "Helpful guidance goes here"
608
- },
609
- "value": "0.125rem"
610
- },
611
- "Spacing/spacing.ccc.component.4": {
612
- "attributes": {
613
- "group": "spacing",
614
- "state": "experimental",
615
- "replacement": "4px",
616
- "introduced": "0.10.28",
617
- "description": "Helpful guidance goes here"
618
- },
619
- "value": "0.25rem"
620
- },
621
- "Spacing/spacing.ccc.component.6": {
622
- "attributes": {
623
- "group": "spacing",
624
- "state": "experimental",
625
- "replacement": "6px",
626
- "introduced": "0.10.28",
627
- "description": "Helpful guidance goes here"
628
- },
629
- "value": "0.375rem"
630
- },
631
- "Spacing/spacing.ccc.component.8": {
632
- "attributes": {
633
- "group": "spacing",
634
- "state": "experimental",
635
- "replacement": "8px",
636
- "introduced": "0.10.28",
637
- "description": "Helpful guidance goes here"
638
- },
639
- "value": "0.5rem"
640
- },
641
- "Spacing/spacing.ccc.container.32": {
642
- "attributes": {
643
- "group": "spacing",
644
- "state": "experimental",
645
- "replacement": "32px",
646
- "introduced": "0.10.28",
647
- "description": "Helpful guidance goes here"
648
- },
649
- "value": "2rem"
650
- },
651
- "Spacing/spacing.ccc.container.40": {
652
- "attributes": {
653
- "group": "spacing",
654
- "state": "experimental",
655
- "replacement": "40px",
656
- "introduced": "0.10.28",
657
- "description": "Helpful guidance goes here"
658
- },
659
- "value": "2.5rem"
660
- },
661
- "Spacing/spacing.ccc.container.48": {
662
- "attributes": {
663
- "group": "spacing",
664
- "state": "experimental",
665
- "replacement": "48px",
666
- "introduced": "0.10.28",
667
- "description": "Helpful guidance goes here"
668
- },
669
- "value": "3rem"
670
- },
671
- "Spacing/spacing.ccc.content.12": {
672
- "attributes": {
673
- "group": "spacing",
674
- "state": "experimental",
675
- "replacement": "12px",
676
- "introduced": "0.10.28",
677
- "description": "Helpful guidance goes here"
678
- },
679
- "value": "0.75rem"
680
- },
681
- "Spacing/spacing.ccc.content.16": {
682
- "attributes": {
683
- "group": "spacing",
684
- "state": "experimental",
685
- "replacement": "16px",
686
- "introduced": "0.10.28",
687
- "description": "Helpful guidance goes here"
688
- },
689
- "value": "1rem"
690
- },
691
- "Spacing/spacing.ccc.content.20": {
692
- "attributes": {
693
- "group": "spacing",
694
- "state": "experimental",
695
- "replacement": "20px",
696
- "introduced": "0.10.28",
697
- "description": "Helpful guidance goes here"
698
- },
699
- "value": "1.25rem"
700
- },
701
- "Spacing/spacing.ccc.content.24": {
702
- "attributes": {
703
- "group": "spacing",
704
- "state": "experimental",
705
- "replacement": "24px",
706
- "introduced": "0.10.28",
707
- "description": "Helpful guidance goes here"
708
- },
709
- "value": "1.5rem"
710
- },
711
4
  "Spacing/space.0": {
712
5
  "attributes": {
713
6
  "group": "spacing",
@@ -899,58 +192,5 @@
899
192
  "value": "5rem"
900
193
  }
901
194
  },
902
- "renameMap": {
903
- "Spacing/spacing.scaleLinear.0": "Spacing/0",
904
- "Spacing/spacing.scaleLinear.100": "Spacing/2px",
905
- "Spacing/spacing.scaleLinear.200": "Spacing/4px",
906
- "Spacing/spacing.scaleLinear.300": "Spacing/6px",
907
- "Spacing/spacing.scaleLinear.400": "Spacing/8px",
908
- "Spacing/spacing.scaleLinear.500": "Spacing/12px",
909
- "Spacing/spacing.scaleLinear.600": "Spacing/16px",
910
- "Spacing/spacing.scaleLinear.700": "Spacing/20px",
911
- "Spacing/spacing.scaleLinear.800": "Spacing/24px",
912
- "Spacing/spacing.scaleLinear.900": "Spacing/32px",
913
- "Spacing/spacing.scaleLinear.1000": "Spacing/40px",
914
- "Spacing/spacing.scaleLinear.1100": "Spacing/48px",
915
- "Spacing/spacing.size.none": "Spacing/0",
916
- "Spacing/spacing.size.xxxxSmall": "Spacing/2px",
917
- "Spacing/spacing.size.xxxSmall": "Spacing/4px",
918
- "Spacing/spacing.size.xxSmall": "Spacing/6px",
919
- "Spacing/spacing.size.xsmall": "Spacing/8px",
920
- "Spacing/spacing.size.small": "Spacing/12px",
921
- "Spacing/spacing.size.medium": "Spacing/16px",
922
- "Spacing/spacing.size.large": "Spacing/20px",
923
- "Spacing/spacing.size.xlarge": "Spacing/24px",
924
- "Spacing/spacing.size.xxlarge": "Spacing/32px",
925
- "Spacing/spacing.size.xxxlarge": "Spacing/40px",
926
- "Spacing/spacing.size.xxxxlarge": "Spacing/48px",
927
- "Spacing/spacing.ecl.element.2": "Spacing/2px",
928
- "Spacing/spacing.ecl.element.4": "Spacing/4px",
929
- "Spacing/spacing.ecl.element.6": "Spacing/6px",
930
- "Spacing/spacing.ecl.element.8": "Spacing/8px",
931
- "Spacing/spacing.ecl.container.12": "Spacing/12px",
932
- "Spacing/spacing.ecl.container.16": "Spacing/16px",
933
- "Spacing/spacing.ecl.container.20": "Spacing/20px",
934
- "Spacing/spacing.ecl.container.24": "Spacing/24px",
935
- "Spacing/spacing.ecl.layout.32": "Spacing/32px",
936
- "Spacing/spacing.ecl.layout.40": "Spacing/40px",
937
- "Spacing/spacing.ecl.layout.64": "Spacing/64px",
938
- "Spacing/spacing.ccc.component.2": "Spacing/2px",
939
- "Spacing/spacing.ccc.component.4": "Spacing/4px",
940
- "Spacing/spacing.ccc.component.6": "Spacing/6px",
941
- "Spacing/spacing.ccc.component.8": "Spacing/8px",
942
- "Spacing/spacing.ccc.content.12": "Spacing/12px",
943
- "Spacing/spacing.ccc.content.16": "Spacing/16px",
944
- "Spacing/spacing.ccc.content.20": "Spacing/20px",
945
- "Spacing/spacing.ccc.content.24": "Spacing/24px",
946
- "Spacing/spacing.ccc.container.32": "Spacing/32px",
947
- "Spacing/spacing.ccc.container.40": "Spacing/40px",
948
- "Spacing/spacing.ccc.container.48": "Spacing/48px",
949
- "Spacing/spacing.gap.100": "Spacing/8px",
950
- "Spacing/spacing.gap.200": "Spacing/16px",
951
- "Spacing/spacing.gap.300": "Spacing/24px",
952
- "Spacing/spacing.inset.100": "Spacing/8px",
953
- "Spacing/spacing.inset.200": "Spacing/16px",
954
- "Spacing/spacing.inset.300": "Spacing/24px"
955
- }
195
+ "renameMap": {}
956
196
  }