@atlaskit/tokens 0.11.1 → 0.11.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -0
- package/css/atlassian-spacing.css +17 -13
- package/dist/cjs/artifacts/palettes-raw/spacing-scale.js +249 -1
- package/dist/cjs/artifacts/rename-mapping/atlassian-spacing.js +1 -49
- package/dist/cjs/artifacts/tokens-raw/atlassian-spacing.js +323 -213
- package/dist/cjs/artifacts/typescript/atlassian-spacing-token-default-values.js +17 -13
- package/dist/cjs/artifacts/typescript/atlassian-spacing-token-names.js +17 -13
- package/dist/cjs/constants.js +1 -1
- package/dist/cjs/get-token.js +1 -1
- package/dist/cjs/palettes/spacing-scale.js +96 -76
- package/dist/cjs/theme-config.js +6 -0
- package/dist/cjs/tokens/atlassian-spacing/spacing.js +65 -44
- package/dist/cjs/tokens/default/spacing/spacing.js +167 -116
- package/dist/cjs/version.json +1 -1
- package/dist/es2019/artifacts/palettes-raw/spacing-scale.js +249 -1
- package/dist/es2019/artifacts/rename-mapping/atlassian-spacing.js +1 -49
- package/dist/es2019/artifacts/tokens-raw/atlassian-spacing.js +323 -213
- package/dist/es2019/artifacts/typescript/atlassian-spacing-token-default-values.js +17 -13
- package/dist/es2019/artifacts/typescript/atlassian-spacing-token-names.js +17 -13
- package/dist/es2019/constants.js +1 -1
- package/dist/es2019/get-token.js +1 -1
- package/dist/es2019/palettes/spacing-scale.js +95 -76
- package/dist/es2019/theme-config.js +6 -0
- package/dist/es2019/tokens/atlassian-spacing/spacing.js +64 -44
- package/dist/es2019/tokens/default/spacing/spacing.js +166 -116
- package/dist/es2019/version.json +1 -1
- package/dist/esm/artifacts/palettes-raw/spacing-scale.js +249 -1
- package/dist/esm/artifacts/rename-mapping/atlassian-spacing.js +1 -49
- package/dist/esm/artifacts/tokens-raw/atlassian-spacing.js +323 -213
- package/dist/esm/artifacts/typescript/atlassian-spacing-token-default-values.js +17 -13
- package/dist/esm/artifacts/typescript/atlassian-spacing-token-names.js +17 -13
- package/dist/esm/constants.js +1 -1
- package/dist/esm/get-token.js +1 -1
- package/dist/esm/palettes/spacing-scale.js +95 -76
- package/dist/esm/theme-config.js +6 -0
- package/dist/esm/tokens/atlassian-spacing/spacing.js +64 -44
- package/dist/esm/tokens/default/spacing/spacing.js +166 -116
- package/dist/esm/version.json +1 -1
- package/dist/types/artifacts/palettes-raw/spacing-scale.d.ts +22 -3
- package/dist/types/artifacts/rename-mapping/atlassian-spacing.d.ts +1 -1
- package/dist/types/artifacts/token-default-values.d.ts +16 -12
- package/dist/types/artifacts/token-names.d.ts +16 -12
- package/dist/types/artifacts/tokens-raw/atlassian-spacing.d.ts +61 -1
- package/dist/types/artifacts/typescript/atlassian-spacing-token-default-values.d.ts +17 -13
- package/dist/types/artifacts/typescript/atlassian-spacing-token-names.d.ts +33 -25
- package/dist/types/artifacts/typescript/atlassian-spacing-types-internal.d.ts +2 -2
- package/dist/types/artifacts/typescript/atlassian-spacing-types.d.ts +2 -2
- package/dist/types/palettes/spacing-scale.d.ts +94 -4
- package/dist/types/theme-config.d.ts +9 -1
- package/dist/types/tokens/atlassian-spacing/spacing.d.ts +8 -2
- package/dist/types/tokens/default/spacing/spacing.d.ts +6 -2
- package/dist/types/types.d.ts +92 -81
- package/package.json +2 -2
- package/report.api.md +40 -26
- package/tmp/api-report-tmp.d.ts +38 -25
|
@@ -1,4 +1,146 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* The spacing attribute schema governs the non-value specific metadata to apply to the
|
|
3
|
+
* spacing theme. This governs the name, description and state
|
|
4
|
+
* of a token.
|
|
5
|
+
*/
|
|
1
6
|
const spacing = {
|
|
7
|
+
space: {
|
|
8
|
+
'0': {
|
|
9
|
+
attributes: {
|
|
10
|
+
group: 'spacing',
|
|
11
|
+
state: 'active',
|
|
12
|
+
introduced: '0.12.0',
|
|
13
|
+
pixelValue: '0px',
|
|
14
|
+
description: 'Equates to `0`. Can be used for resetting default spacing styles.'
|
|
15
|
+
}
|
|
16
|
+
},
|
|
17
|
+
'025': {
|
|
18
|
+
attributes: {
|
|
19
|
+
group: 'spacing',
|
|
20
|
+
state: 'active',
|
|
21
|
+
suggest: ['1px', '3px'],
|
|
22
|
+
introduced: '0.12.0',
|
|
23
|
+
pixelValue: '2px',
|
|
24
|
+
description: 'Use for spacing in compact scenarios. The smallest value in our scale.'
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
'050': {
|
|
28
|
+
attributes: {
|
|
29
|
+
group: 'spacing',
|
|
30
|
+
state: 'active',
|
|
31
|
+
suggest: ['3px', '5px'],
|
|
32
|
+
introduced: '0.12.0',
|
|
33
|
+
pixelValue: '4px',
|
|
34
|
+
description: 'Use for spacing in compact scenarios.'
|
|
35
|
+
}
|
|
36
|
+
},
|
|
37
|
+
'075': {
|
|
38
|
+
attributes: {
|
|
39
|
+
group: 'spacing',
|
|
40
|
+
state: 'active',
|
|
41
|
+
suggest: ['5px', '7px'],
|
|
42
|
+
introduced: '0.12.0',
|
|
43
|
+
pixelValue: '6px',
|
|
44
|
+
description: 'Use for spacing in compact scenarios.'
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
'100': {
|
|
48
|
+
attributes: {
|
|
49
|
+
group: 'spacing',
|
|
50
|
+
state: 'active',
|
|
51
|
+
suggest: ['7px', '9px'],
|
|
52
|
+
introduced: '0.12.0',
|
|
53
|
+
pixelValue: '8px',
|
|
54
|
+
description: 'Use for gutter spacing.'
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
'150': {
|
|
58
|
+
attributes: {
|
|
59
|
+
group: 'spacing',
|
|
60
|
+
state: 'active',
|
|
61
|
+
suggest: ['10px', '11px', '13px', '14px'],
|
|
62
|
+
introduced: '0.12.0',
|
|
63
|
+
pixelValue: '12px',
|
|
64
|
+
description: 'Helpful guidance goes here'
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
'200': {
|
|
68
|
+
attributes: {
|
|
69
|
+
group: 'spacing',
|
|
70
|
+
state: 'active',
|
|
71
|
+
suggest: ['14px', '15px', '17px', '18px'],
|
|
72
|
+
introduced: '0.12.0',
|
|
73
|
+
pixelValue: '16px',
|
|
74
|
+
description: 'Use for gutter spacing.'
|
|
75
|
+
}
|
|
76
|
+
},
|
|
77
|
+
'250': {
|
|
78
|
+
attributes: {
|
|
79
|
+
group: 'spacing',
|
|
80
|
+
state: 'active',
|
|
81
|
+
suggest: ['19px', '21px', '22px', '23px'],
|
|
82
|
+
introduced: '0.12.0',
|
|
83
|
+
pixelValue: '20px',
|
|
84
|
+
description: 'Use for gutter spacing.'
|
|
85
|
+
}
|
|
86
|
+
},
|
|
87
|
+
'300': {
|
|
88
|
+
attributes: {
|
|
89
|
+
group: 'spacing',
|
|
90
|
+
state: 'active',
|
|
91
|
+
suggest: ['23px', '25px', '26px', '27px', '28px'],
|
|
92
|
+
introduced: '0.12.0',
|
|
93
|
+
pixelValue: '24px',
|
|
94
|
+
description: 'Use for gutter spacing.'
|
|
95
|
+
}
|
|
96
|
+
},
|
|
97
|
+
'400': {
|
|
98
|
+
attributes: {
|
|
99
|
+
group: 'spacing',
|
|
100
|
+
state: 'active',
|
|
101
|
+
suggest: ['28px', '29px', '30px', '31px', '33px', '34px', '35px'],
|
|
102
|
+
introduced: '0.12.0',
|
|
103
|
+
pixelValue: '32px',
|
|
104
|
+
description: 'Use for gutter spacing.'
|
|
105
|
+
}
|
|
106
|
+
},
|
|
107
|
+
'500': {
|
|
108
|
+
attributes: {
|
|
109
|
+
group: 'spacing',
|
|
110
|
+
state: 'active',
|
|
111
|
+
introduced: '0.12.0',
|
|
112
|
+
pixelValue: '40px',
|
|
113
|
+
description: 'Use for larger layout-specific spacing.'
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
'600': {
|
|
117
|
+
attributes: {
|
|
118
|
+
group: 'spacing',
|
|
119
|
+
state: 'active',
|
|
120
|
+
introduced: '0.12.0',
|
|
121
|
+
pixelValue: '48px',
|
|
122
|
+
description: 'Use for larger layout-specific spacing.'
|
|
123
|
+
}
|
|
124
|
+
},
|
|
125
|
+
'800': {
|
|
126
|
+
attributes: {
|
|
127
|
+
group: 'spacing',
|
|
128
|
+
state: 'active',
|
|
129
|
+
introduced: '0.12.0',
|
|
130
|
+
pixelValue: '64px',
|
|
131
|
+
description: 'Use for larger layout-specific spacing.'
|
|
132
|
+
}
|
|
133
|
+
},
|
|
134
|
+
'1000': {
|
|
135
|
+
attributes: {
|
|
136
|
+
group: 'spacing',
|
|
137
|
+
state: 'active',
|
|
138
|
+
introduced: '0.12.0',
|
|
139
|
+
pixelValue: '80px',
|
|
140
|
+
description: 'Use for larger layout-specific spacing.'
|
|
141
|
+
}
|
|
142
|
+
}
|
|
143
|
+
},
|
|
2
144
|
spacing: {
|
|
3
145
|
scale: {
|
|
4
146
|
'0': {
|
|
@@ -106,119 +248,27 @@ const spacing = {
|
|
|
106
248
|
introduced: '0.10.16',
|
|
107
249
|
description: 'Helpful guidance goes here'
|
|
108
250
|
}
|
|
109
|
-
}
|
|
110
|
-
},
|
|
111
|
-
scaleLinear: {
|
|
112
|
-
'0': {
|
|
113
|
-
attributes: {
|
|
114
|
-
group: 'spacing',
|
|
115
|
-
state: 'experimental',
|
|
116
|
-
replacement: '0',
|
|
117
|
-
introduced: '0.10.28',
|
|
118
|
-
description: 'Helpful guidance goes here'
|
|
119
|
-
}
|
|
120
|
-
},
|
|
121
|
-
'100': {
|
|
122
|
-
attributes: {
|
|
123
|
-
group: 'spacing',
|
|
124
|
-
state: 'experimental',
|
|
125
|
-
replacement: '2px',
|
|
126
|
-
introduced: '0.10.28',
|
|
127
|
-
description: 'Helpful guidance goes here'
|
|
128
|
-
}
|
|
129
|
-
},
|
|
130
|
-
'200': {
|
|
131
|
-
attributes: {
|
|
132
|
-
group: 'spacing',
|
|
133
|
-
state: 'experimental',
|
|
134
|
-
replacement: '4px',
|
|
135
|
-
introduced: '0.10.28',
|
|
136
|
-
description: 'Helpful guidance goes here'
|
|
137
|
-
}
|
|
138
|
-
},
|
|
139
|
-
'300': {
|
|
140
|
-
attributes: {
|
|
141
|
-
group: 'spacing',
|
|
142
|
-
state: 'experimental',
|
|
143
|
-
replacement: '6px',
|
|
144
|
-
introduced: '0.10.28',
|
|
145
|
-
description: 'Helpful guidance goes here'
|
|
146
|
-
}
|
|
147
|
-
},
|
|
148
|
-
'400': {
|
|
149
|
-
attributes: {
|
|
150
|
-
group: 'spacing',
|
|
151
|
-
state: 'experimental',
|
|
152
|
-
replacement: '8px',
|
|
153
|
-
introduced: '0.10.28',
|
|
154
|
-
description: 'Helpful guidance goes here'
|
|
155
|
-
}
|
|
156
|
-
},
|
|
157
|
-
'500': {
|
|
158
|
-
attributes: {
|
|
159
|
-
group: 'spacing',
|
|
160
|
-
state: 'experimental',
|
|
161
|
-
replacement: '12px',
|
|
162
|
-
introduced: '0.10.28',
|
|
163
|
-
description: 'Helpful guidance goes here'
|
|
164
|
-
}
|
|
165
|
-
},
|
|
166
|
-
'600': {
|
|
167
|
-
attributes: {
|
|
168
|
-
group: 'spacing',
|
|
169
|
-
state: 'experimental',
|
|
170
|
-
replacement: '16px',
|
|
171
|
-
introduced: '0.10.28',
|
|
172
|
-
description: 'Helpful guidance goes here'
|
|
173
|
-
}
|
|
174
|
-
},
|
|
175
|
-
'700': {
|
|
176
|
-
attributes: {
|
|
177
|
-
group: 'spacing',
|
|
178
|
-
state: 'experimental',
|
|
179
|
-
replacement: '20px',
|
|
180
|
-
introduced: '0.10.28',
|
|
181
|
-
description: 'Helpful guidance goes here'
|
|
182
|
-
}
|
|
183
251
|
},
|
|
184
252
|
'800': {
|
|
185
253
|
attributes: {
|
|
186
254
|
group: 'spacing',
|
|
187
|
-
state: '
|
|
188
|
-
|
|
189
|
-
|
|
190
|
-
description: 'Helpful guidance goes here'
|
|
191
|
-
}
|
|
192
|
-
},
|
|
193
|
-
'900': {
|
|
194
|
-
attributes: {
|
|
195
|
-
group: 'spacing',
|
|
196
|
-
state: 'experimental',
|
|
197
|
-
replacement: '32px',
|
|
198
|
-
introduced: '0.10.28',
|
|
255
|
+
state: 'active',
|
|
256
|
+
introduced: '0.12.0',
|
|
257
|
+
pixelValue: '',
|
|
199
258
|
description: 'Helpful guidance goes here'
|
|
200
259
|
}
|
|
201
260
|
},
|
|
202
261
|
'1000': {
|
|
203
262
|
attributes: {
|
|
204
263
|
group: 'spacing',
|
|
205
|
-
state: '
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
description: 'Helpful guidance goes here'
|
|
209
|
-
}
|
|
210
|
-
},
|
|
211
|
-
'1100': {
|
|
212
|
-
attributes: {
|
|
213
|
-
group: 'spacing',
|
|
214
|
-
state: 'experimental',
|
|
215
|
-
replacement: '48px',
|
|
216
|
-
introduced: '0.10.28',
|
|
264
|
+
state: 'active',
|
|
265
|
+
introduced: '0.12.0',
|
|
266
|
+
pixelValue: '80px',
|
|
217
267
|
description: 'Helpful guidance goes here'
|
|
218
268
|
}
|
|
219
269
|
}
|
|
220
270
|
},
|
|
221
|
-
|
|
271
|
+
scaleLinear: {
|
|
222
272
|
'0': {
|
|
223
273
|
attributes: {
|
|
224
274
|
group: 'spacing',
|
|
@@ -228,7 +278,7 @@ const spacing = {
|
|
|
228
278
|
description: 'Helpful guidance goes here'
|
|
229
279
|
}
|
|
230
280
|
},
|
|
231
|
-
'
|
|
281
|
+
'100': {
|
|
232
282
|
attributes: {
|
|
233
283
|
group: 'spacing',
|
|
234
284
|
state: 'experimental',
|
|
@@ -237,7 +287,7 @@ const spacing = {
|
|
|
237
287
|
description: 'Helpful guidance goes here'
|
|
238
288
|
}
|
|
239
289
|
},
|
|
240
|
-
'
|
|
290
|
+
'200': {
|
|
241
291
|
attributes: {
|
|
242
292
|
group: 'spacing',
|
|
243
293
|
state: 'experimental',
|
|
@@ -246,7 +296,7 @@ const spacing = {
|
|
|
246
296
|
description: 'Helpful guidance goes here'
|
|
247
297
|
}
|
|
248
298
|
},
|
|
249
|
-
'
|
|
299
|
+
'300': {
|
|
250
300
|
attributes: {
|
|
251
301
|
group: 'spacing',
|
|
252
302
|
state: 'experimental',
|
|
@@ -255,7 +305,7 @@ const spacing = {
|
|
|
255
305
|
description: 'Helpful guidance goes here'
|
|
256
306
|
}
|
|
257
307
|
},
|
|
258
|
-
'
|
|
308
|
+
'400': {
|
|
259
309
|
attributes: {
|
|
260
310
|
group: 'spacing',
|
|
261
311
|
state: 'experimental',
|
|
@@ -264,7 +314,7 @@ const spacing = {
|
|
|
264
314
|
description: 'Helpful guidance goes here'
|
|
265
315
|
}
|
|
266
316
|
},
|
|
267
|
-
'
|
|
317
|
+
'500': {
|
|
268
318
|
attributes: {
|
|
269
319
|
group: 'spacing',
|
|
270
320
|
state: 'experimental',
|
|
@@ -273,7 +323,7 @@ const spacing = {
|
|
|
273
323
|
description: 'Helpful guidance goes here'
|
|
274
324
|
}
|
|
275
325
|
},
|
|
276
|
-
'
|
|
326
|
+
'600': {
|
|
277
327
|
attributes: {
|
|
278
328
|
group: 'spacing',
|
|
279
329
|
state: 'experimental',
|
|
@@ -282,7 +332,7 @@ const spacing = {
|
|
|
282
332
|
description: 'Helpful guidance goes here'
|
|
283
333
|
}
|
|
284
334
|
},
|
|
285
|
-
'
|
|
335
|
+
'700': {
|
|
286
336
|
attributes: {
|
|
287
337
|
group: 'spacing',
|
|
288
338
|
state: 'experimental',
|
|
@@ -291,7 +341,7 @@ const spacing = {
|
|
|
291
341
|
description: 'Helpful guidance goes here'
|
|
292
342
|
}
|
|
293
343
|
},
|
|
294
|
-
'
|
|
344
|
+
'800': {
|
|
295
345
|
attributes: {
|
|
296
346
|
group: 'spacing',
|
|
297
347
|
state: 'experimental',
|
|
@@ -300,7 +350,7 @@ const spacing = {
|
|
|
300
350
|
description: 'Helpful guidance goes here'
|
|
301
351
|
}
|
|
302
352
|
},
|
|
303
|
-
'
|
|
353
|
+
'900': {
|
|
304
354
|
attributes: {
|
|
305
355
|
group: 'spacing',
|
|
306
356
|
state: 'experimental',
|
|
@@ -309,7 +359,7 @@ const spacing = {
|
|
|
309
359
|
description: 'Helpful guidance goes here'
|
|
310
360
|
}
|
|
311
361
|
},
|
|
312
|
-
'
|
|
362
|
+
'1000': {
|
|
313
363
|
attributes: {
|
|
314
364
|
group: 'spacing',
|
|
315
365
|
state: 'experimental',
|
|
@@ -318,7 +368,7 @@ const spacing = {
|
|
|
318
368
|
description: 'Helpful guidance goes here'
|
|
319
369
|
}
|
|
320
370
|
},
|
|
321
|
-
'
|
|
371
|
+
'1100': {
|
|
322
372
|
attributes: {
|
|
323
373
|
group: 'spacing',
|
|
324
374
|
state: 'experimental',
|
|
@@ -653,7 +703,7 @@ const spacing = {
|
|
|
653
703
|
}
|
|
654
704
|
},
|
|
655
705
|
gap: {
|
|
656
|
-
100: {
|
|
706
|
+
'100': {
|
|
657
707
|
attributes: {
|
|
658
708
|
group: 'spacing',
|
|
659
709
|
state: 'experimental',
|
|
@@ -662,7 +712,7 @@ const spacing = {
|
|
|
662
712
|
description: 'Helpful guidance goes here'
|
|
663
713
|
}
|
|
664
714
|
},
|
|
665
|
-
200: {
|
|
715
|
+
'200': {
|
|
666
716
|
attributes: {
|
|
667
717
|
group: 'spacing',
|
|
668
718
|
state: 'experimental',
|
|
@@ -671,7 +721,7 @@ const spacing = {
|
|
|
671
721
|
description: 'Helpful guidance goes here'
|
|
672
722
|
}
|
|
673
723
|
},
|
|
674
|
-
300: {
|
|
724
|
+
'300': {
|
|
675
725
|
attributes: {
|
|
676
726
|
group: 'spacing',
|
|
677
727
|
state: 'experimental',
|
|
@@ -682,7 +732,7 @@ const spacing = {
|
|
|
682
732
|
}
|
|
683
733
|
},
|
|
684
734
|
inset: {
|
|
685
|
-
100: {
|
|
735
|
+
'100': {
|
|
686
736
|
attributes: {
|
|
687
737
|
group: 'spacing',
|
|
688
738
|
state: 'experimental',
|
|
@@ -691,7 +741,7 @@ const spacing = {
|
|
|
691
741
|
description: 'Helpful guidance goes here'
|
|
692
742
|
}
|
|
693
743
|
},
|
|
694
|
-
200: {
|
|
744
|
+
'200': {
|
|
695
745
|
attributes: {
|
|
696
746
|
group: 'spacing',
|
|
697
747
|
state: 'experimental',
|
|
@@ -700,7 +750,7 @@ const spacing = {
|
|
|
700
750
|
description: 'Helpful guidance goes here'
|
|
701
751
|
}
|
|
702
752
|
},
|
|
703
|
-
300: {
|
|
753
|
+
'300': {
|
|
704
754
|
attributes: {
|
|
705
755
|
group: 'spacing',
|
|
706
756
|
state: 'experimental',
|
package/dist/es2019/version.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* THIS FILE WAS CREATED VIA CODEGEN DO NOT MODIFY {@see http://go/af-codegen}
|
|
3
|
-
* @codegen <<SignedSource::
|
|
3
|
+
* @codegen <<SignedSource::4466431b8da920b1737382f7e9e82009>>
|
|
4
4
|
* @codegenCommand yarn build tokens
|
|
5
5
|
*/
|
|
6
6
|
var tokens = [{
|
|
@@ -183,5 +183,253 @@ var tokens = [{
|
|
|
183
183
|
},
|
|
184
184
|
"name": "spacing.scale.Space600",
|
|
185
185
|
"path": ["spacing", "scale", "Space600"]
|
|
186
|
+
}, {
|
|
187
|
+
"value": "4rem",
|
|
188
|
+
"attributes": {
|
|
189
|
+
"group": "scale"
|
|
190
|
+
},
|
|
191
|
+
"pixelValue": "64px",
|
|
192
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
193
|
+
"isSource": true,
|
|
194
|
+
"original": {
|
|
195
|
+
"value": "4rem",
|
|
196
|
+
"attributes": {
|
|
197
|
+
"group": "scale"
|
|
198
|
+
},
|
|
199
|
+
"pixelValue": "64px"
|
|
200
|
+
},
|
|
201
|
+
"name": "spacing.scale.Space800",
|
|
202
|
+
"path": ["spacing", "scale", "Space800"]
|
|
203
|
+
}, {
|
|
204
|
+
"value": "5rem",
|
|
205
|
+
"attributes": {
|
|
206
|
+
"group": "scale"
|
|
207
|
+
},
|
|
208
|
+
"pixelValue": "80px",
|
|
209
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
210
|
+
"isSource": true,
|
|
211
|
+
"original": {
|
|
212
|
+
"value": "5rem",
|
|
213
|
+
"attributes": {
|
|
214
|
+
"group": "scale"
|
|
215
|
+
},
|
|
216
|
+
"pixelValue": "80px"
|
|
217
|
+
},
|
|
218
|
+
"name": "spacing.scale.Space1000",
|
|
219
|
+
"path": ["spacing", "scale", "Space1000"]
|
|
220
|
+
}, {
|
|
221
|
+
"value": "0",
|
|
222
|
+
"attributes": {
|
|
223
|
+
"group": "scale"
|
|
224
|
+
},
|
|
225
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
226
|
+
"isSource": true,
|
|
227
|
+
"original": {
|
|
228
|
+
"value": "0",
|
|
229
|
+
"attributes": {
|
|
230
|
+
"group": "scale"
|
|
231
|
+
}
|
|
232
|
+
},
|
|
233
|
+
"name": "space.Space0",
|
|
234
|
+
"path": ["space", "Space0"]
|
|
235
|
+
}, {
|
|
236
|
+
"value": "0.125rem",
|
|
237
|
+
"attributes": {
|
|
238
|
+
"group": "scale"
|
|
239
|
+
},
|
|
240
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
241
|
+
"isSource": true,
|
|
242
|
+
"original": {
|
|
243
|
+
"value": "0.125rem",
|
|
244
|
+
"attributes": {
|
|
245
|
+
"group": "scale"
|
|
246
|
+
}
|
|
247
|
+
},
|
|
248
|
+
"name": "space.Space025",
|
|
249
|
+
"path": ["space", "Space025"]
|
|
250
|
+
}, {
|
|
251
|
+
"value": "0.25rem",
|
|
252
|
+
"attributes": {
|
|
253
|
+
"group": "scale"
|
|
254
|
+
},
|
|
255
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
256
|
+
"isSource": true,
|
|
257
|
+
"original": {
|
|
258
|
+
"value": "0.25rem",
|
|
259
|
+
"attributes": {
|
|
260
|
+
"group": "scale"
|
|
261
|
+
}
|
|
262
|
+
},
|
|
263
|
+
"name": "space.Space050",
|
|
264
|
+
"path": ["space", "Space050"]
|
|
265
|
+
}, {
|
|
266
|
+
"value": "0.375rem",
|
|
267
|
+
"attributes": {
|
|
268
|
+
"group": "scale"
|
|
269
|
+
},
|
|
270
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
271
|
+
"isSource": true,
|
|
272
|
+
"original": {
|
|
273
|
+
"value": "0.375rem",
|
|
274
|
+
"attributes": {
|
|
275
|
+
"group": "scale"
|
|
276
|
+
}
|
|
277
|
+
},
|
|
278
|
+
"name": "space.Space075",
|
|
279
|
+
"path": ["space", "Space075"]
|
|
280
|
+
}, {
|
|
281
|
+
"value": "0.5rem",
|
|
282
|
+
"attributes": {
|
|
283
|
+
"group": "scale"
|
|
284
|
+
},
|
|
285
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
286
|
+
"isSource": true,
|
|
287
|
+
"original": {
|
|
288
|
+
"value": "0.5rem",
|
|
289
|
+
"attributes": {
|
|
290
|
+
"group": "scale"
|
|
291
|
+
}
|
|
292
|
+
},
|
|
293
|
+
"name": "space.Space100",
|
|
294
|
+
"path": ["space", "Space100"]
|
|
295
|
+
}, {
|
|
296
|
+
"value": "0.75rem",
|
|
297
|
+
"attributes": {
|
|
298
|
+
"group": "scale"
|
|
299
|
+
},
|
|
300
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
301
|
+
"isSource": true,
|
|
302
|
+
"original": {
|
|
303
|
+
"value": "0.75rem",
|
|
304
|
+
"attributes": {
|
|
305
|
+
"group": "scale"
|
|
306
|
+
}
|
|
307
|
+
},
|
|
308
|
+
"name": "space.Space150",
|
|
309
|
+
"path": ["space", "Space150"]
|
|
310
|
+
}, {
|
|
311
|
+
"value": "1rem",
|
|
312
|
+
"attributes": {
|
|
313
|
+
"group": "scale"
|
|
314
|
+
},
|
|
315
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
316
|
+
"isSource": true,
|
|
317
|
+
"original": {
|
|
318
|
+
"value": "1rem",
|
|
319
|
+
"attributes": {
|
|
320
|
+
"group": "scale"
|
|
321
|
+
}
|
|
322
|
+
},
|
|
323
|
+
"name": "space.Space200",
|
|
324
|
+
"path": ["space", "Space200"]
|
|
325
|
+
}, {
|
|
326
|
+
"value": "1.25rem",
|
|
327
|
+
"attributes": {
|
|
328
|
+
"group": "scale"
|
|
329
|
+
},
|
|
330
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
331
|
+
"isSource": true,
|
|
332
|
+
"original": {
|
|
333
|
+
"value": "1.25rem",
|
|
334
|
+
"attributes": {
|
|
335
|
+
"group": "scale"
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"name": "space.Space250",
|
|
339
|
+
"path": ["space", "Space250"]
|
|
340
|
+
}, {
|
|
341
|
+
"value": "1.5rem",
|
|
342
|
+
"attributes": {
|
|
343
|
+
"group": "scale"
|
|
344
|
+
},
|
|
345
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
346
|
+
"isSource": true,
|
|
347
|
+
"original": {
|
|
348
|
+
"value": "1.5rem",
|
|
349
|
+
"attributes": {
|
|
350
|
+
"group": "scale"
|
|
351
|
+
}
|
|
352
|
+
},
|
|
353
|
+
"name": "space.Space300",
|
|
354
|
+
"path": ["space", "Space300"]
|
|
355
|
+
}, {
|
|
356
|
+
"value": "2rem",
|
|
357
|
+
"attributes": {
|
|
358
|
+
"group": "scale"
|
|
359
|
+
},
|
|
360
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
361
|
+
"isSource": true,
|
|
362
|
+
"original": {
|
|
363
|
+
"value": "2rem",
|
|
364
|
+
"attributes": {
|
|
365
|
+
"group": "scale"
|
|
366
|
+
}
|
|
367
|
+
},
|
|
368
|
+
"name": "space.Space400",
|
|
369
|
+
"path": ["space", "Space400"]
|
|
370
|
+
}, {
|
|
371
|
+
"value": "2.5rem",
|
|
372
|
+
"attributes": {
|
|
373
|
+
"group": "scale"
|
|
374
|
+
},
|
|
375
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
376
|
+
"isSource": true,
|
|
377
|
+
"original": {
|
|
378
|
+
"value": "2.5rem",
|
|
379
|
+
"attributes": {
|
|
380
|
+
"group": "scale"
|
|
381
|
+
}
|
|
382
|
+
},
|
|
383
|
+
"name": "space.Space500",
|
|
384
|
+
"path": ["space", "Space500"]
|
|
385
|
+
}, {
|
|
386
|
+
"value": "3rem",
|
|
387
|
+
"attributes": {
|
|
388
|
+
"group": "scale"
|
|
389
|
+
},
|
|
390
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
391
|
+
"isSource": true,
|
|
392
|
+
"original": {
|
|
393
|
+
"value": "3rem",
|
|
394
|
+
"attributes": {
|
|
395
|
+
"group": "scale"
|
|
396
|
+
}
|
|
397
|
+
},
|
|
398
|
+
"name": "space.Space600",
|
|
399
|
+
"path": ["space", "Space600"]
|
|
400
|
+
}, {
|
|
401
|
+
"value": "4rem",
|
|
402
|
+
"attributes": {
|
|
403
|
+
"group": "scale"
|
|
404
|
+
},
|
|
405
|
+
"pixelValue": "64px",
|
|
406
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
407
|
+
"isSource": true,
|
|
408
|
+
"original": {
|
|
409
|
+
"value": "4rem",
|
|
410
|
+
"attributes": {
|
|
411
|
+
"group": "scale"
|
|
412
|
+
},
|
|
413
|
+
"pixelValue": "64px"
|
|
414
|
+
},
|
|
415
|
+
"name": "space.Space800",
|
|
416
|
+
"path": ["space", "Space800"]
|
|
417
|
+
}, {
|
|
418
|
+
"value": "5rem",
|
|
419
|
+
"attributes": {
|
|
420
|
+
"group": "scale"
|
|
421
|
+
},
|
|
422
|
+
"pixelValue": "80px",
|
|
423
|
+
"filePath": "src/palettes/spacing-scale.tsx",
|
|
424
|
+
"isSource": true,
|
|
425
|
+
"original": {
|
|
426
|
+
"value": "5rem",
|
|
427
|
+
"attributes": {
|
|
428
|
+
"group": "scale"
|
|
429
|
+
},
|
|
430
|
+
"pixelValue": "80px"
|
|
431
|
+
},
|
|
432
|
+
"name": "space.Space1000",
|
|
433
|
+
"path": ["space", "Space1000"]
|
|
186
434
|
}];
|
|
187
435
|
export default tokens;
|