@moderneinc/neo-design 2.8.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +388 -376
- package/dist/semantic-colors.css +122 -108
- package/dist/semantic-colors.d.ts +194 -182
- package/dist/semantic-colors.js +131 -125
- package/dist/semantic-typography.css +46 -46
- package/dist/semantic-typography.d.ts +58 -58
- package/dist/semantic-typography.js +8 -8
- package/dist/shadows.css +6 -6
- package/dist/shadows.d.ts +62 -62
- package/dist/shadows.js +76 -76
- package/dist/spacing.css +12 -12
- package/dist/spacing.d.ts +24 -24
- package/dist/spacing.js +25 -25
- package/dist/typography.css +24 -24
- package/dist/typography.d.ts +50 -50
- package/dist/typography.js +50 -50
- package/package.json +2 -2
package/dist/shadows.js
CHANGED
|
@@ -5,53 +5,53 @@
|
|
|
5
5
|
*/
|
|
6
6
|
|
|
7
7
|
/**
|
|
8
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
8
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} NeutralSmall
|
|
9
9
|
*/
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
* @type {
|
|
12
|
+
* @type {NeutralSmall}
|
|
13
13
|
*/
|
|
14
|
-
export const
|
|
14
|
+
export const neutralSmall = {
|
|
15
15
|
/** Scopes: Effect Float */
|
|
16
16
|
"x": 0,
|
|
17
17
|
/** Scopes: Effect Float */
|
|
18
|
-
"y":
|
|
18
|
+
"y": 1,
|
|
19
19
|
/** Scopes: Effect Color */
|
|
20
20
|
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
21
21
|
/** Scopes: Effect Float */
|
|
22
|
-
"blur":
|
|
22
|
+
"blur": 3,
|
|
23
23
|
/** Scopes: Effect Float */
|
|
24
24
|
"spread": 0,
|
|
25
25
|
};
|
|
26
26
|
|
|
27
27
|
/**
|
|
28
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
28
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} NeutralRegular
|
|
29
29
|
*/
|
|
30
30
|
|
|
31
31
|
/**
|
|
32
|
-
* @type {
|
|
32
|
+
* @type {NeutralRegular}
|
|
33
33
|
*/
|
|
34
|
-
export const
|
|
34
|
+
export const neutralRegular = {
|
|
35
35
|
/** Scopes: Effect Float */
|
|
36
36
|
"x": 0,
|
|
37
37
|
/** Scopes: Effect Float */
|
|
38
|
-
"y":
|
|
38
|
+
"y": 2,
|
|
39
39
|
/** Scopes: Effect Color */
|
|
40
40
|
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
41
41
|
/** Scopes: Effect Float */
|
|
42
|
-
"blur":
|
|
42
|
+
"blur": 4,
|
|
43
43
|
/** Scopes: Effect Float */
|
|
44
44
|
"spread": 0,
|
|
45
45
|
};
|
|
46
46
|
|
|
47
47
|
/**
|
|
48
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
48
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} NeutralMedium
|
|
49
49
|
*/
|
|
50
50
|
|
|
51
51
|
/**
|
|
52
|
-
* @type {
|
|
52
|
+
* @type {NeutralMedium}
|
|
53
53
|
*/
|
|
54
|
-
export const
|
|
54
|
+
export const neutralMedium = {
|
|
55
55
|
/** Scopes: Effect Float */
|
|
56
56
|
"x": 0,
|
|
57
57
|
/** Scopes: Effect Float */
|
|
@@ -65,79 +65,79 @@ export const drawer = {
|
|
|
65
65
|
};
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
68
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} PrimarySmall
|
|
69
69
|
*/
|
|
70
70
|
|
|
71
71
|
/**
|
|
72
|
-
* @type {
|
|
72
|
+
* @type {PrimarySmall}
|
|
73
73
|
*/
|
|
74
|
-
export const
|
|
74
|
+
export const primarySmall = {
|
|
75
75
|
/** Scopes: Effect Float */
|
|
76
76
|
"x": 0,
|
|
77
77
|
/** Scopes: Effect Float */
|
|
78
|
-
"y":
|
|
78
|
+
"y": 1,
|
|
79
79
|
/** Scopes: Effect Color */
|
|
80
|
-
"shadow": "rgba(
|
|
80
|
+
"shadow": "rgba(47, 66, 255, 0.1)",
|
|
81
81
|
/** Scopes: Effect Float */
|
|
82
|
-
"blur":
|
|
82
|
+
"blur": 3,
|
|
83
83
|
/** Scopes: Effect Float */
|
|
84
84
|
"spread": 0,
|
|
85
85
|
};
|
|
86
86
|
|
|
87
87
|
/**
|
|
88
|
-
* @typedef {{
|
|
88
|
+
* @typedef {{ blur: number, spread: number, shadow: string, y: number, x: number }} NeutralLarge1
|
|
89
89
|
*/
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
|
-
* @type {
|
|
92
|
+
* @type {NeutralLarge1}
|
|
93
93
|
*/
|
|
94
|
-
export const
|
|
94
|
+
export const neutralLarge1 = {
|
|
95
95
|
/** Scopes: Effect Float */
|
|
96
|
-
"
|
|
96
|
+
"blur": 4,
|
|
97
97
|
/** Scopes: Effect Float */
|
|
98
|
-
"
|
|
98
|
+
"spread": 0,
|
|
99
99
|
/** Scopes: Effect Color */
|
|
100
100
|
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
101
101
|
/** Scopes: Effect Float */
|
|
102
|
-
"
|
|
102
|
+
"y": 4,
|
|
103
103
|
/** Scopes: Effect Float */
|
|
104
|
-
"
|
|
104
|
+
"x": 0,
|
|
105
105
|
};
|
|
106
106
|
|
|
107
107
|
/**
|
|
108
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
108
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} PrimaryRegular
|
|
109
109
|
*/
|
|
110
110
|
|
|
111
111
|
/**
|
|
112
|
-
* @type {
|
|
112
|
+
* @type {PrimaryRegular}
|
|
113
113
|
*/
|
|
114
|
-
export const
|
|
114
|
+
export const primaryRegular = {
|
|
115
115
|
/** Scopes: Effect Float */
|
|
116
116
|
"x": 0,
|
|
117
117
|
/** Scopes: Effect Float */
|
|
118
|
-
"y":
|
|
118
|
+
"y": 4,
|
|
119
119
|
/** Scopes: Effect Color */
|
|
120
|
-
"shadow": "rgba(
|
|
120
|
+
"shadow": "rgba(47, 66, 255, 0.1)",
|
|
121
121
|
/** Scopes: Effect Float */
|
|
122
|
-
"blur":
|
|
122
|
+
"blur": 8,
|
|
123
123
|
/** Scopes: Effect Float */
|
|
124
124
|
"spread": 0,
|
|
125
125
|
};
|
|
126
126
|
|
|
127
127
|
/**
|
|
128
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
128
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} PrimaryMedium
|
|
129
129
|
*/
|
|
130
130
|
|
|
131
131
|
/**
|
|
132
|
-
* @type {
|
|
132
|
+
* @type {PrimaryMedium}
|
|
133
133
|
*/
|
|
134
|
-
export const
|
|
134
|
+
export const primaryMedium = {
|
|
135
135
|
/** Scopes: Effect Float */
|
|
136
136
|
"x": 0,
|
|
137
137
|
/** Scopes: Effect Float */
|
|
138
138
|
"y": 8,
|
|
139
139
|
/** Scopes: Effect Color */
|
|
140
|
-
"shadow": "rgba(
|
|
140
|
+
"shadow": "rgba(47, 66, 255, 0.1)",
|
|
141
141
|
/** Scopes: Effect Float */
|
|
142
142
|
"blur": 15,
|
|
143
143
|
/** Scopes: Effect Float */
|
|
@@ -145,113 +145,113 @@ export const neutralMedium = {
|
|
|
145
145
|
};
|
|
146
146
|
|
|
147
147
|
/**
|
|
148
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
148
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} PrimaryLarge
|
|
149
149
|
*/
|
|
150
150
|
|
|
151
151
|
/**
|
|
152
|
-
* @type {
|
|
152
|
+
* @type {PrimaryLarge}
|
|
153
153
|
*/
|
|
154
|
-
export const
|
|
154
|
+
export const primaryLarge = {
|
|
155
155
|
/** Scopes: Effect Float */
|
|
156
156
|
"x": 0,
|
|
157
157
|
/** Scopes: Effect Float */
|
|
158
|
-
"y":
|
|
158
|
+
"y": 8,
|
|
159
159
|
/** Scopes: Effect Color */
|
|
160
160
|
"shadow": "rgba(47, 66, 255, 0.1)",
|
|
161
161
|
/** Scopes: Effect Float */
|
|
162
|
-
"blur":
|
|
162
|
+
"blur": 24,
|
|
163
163
|
/** Scopes: Effect Float */
|
|
164
164
|
"spread": 0,
|
|
165
165
|
};
|
|
166
166
|
|
|
167
167
|
/**
|
|
168
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
168
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} NeutralLarge2
|
|
169
169
|
*/
|
|
170
170
|
|
|
171
171
|
/**
|
|
172
|
-
* @type {
|
|
172
|
+
* @type {NeutralLarge2}
|
|
173
173
|
*/
|
|
174
|
-
export const
|
|
174
|
+
export const neutralLarge2 = {
|
|
175
175
|
/** Scopes: Effect Float */
|
|
176
176
|
"x": 0,
|
|
177
177
|
/** Scopes: Effect Float */
|
|
178
|
-
"y":
|
|
178
|
+
"y": 8,
|
|
179
179
|
/** Scopes: Effect Color */
|
|
180
180
|
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
181
181
|
/** Scopes: Effect Float */
|
|
182
|
-
"blur":
|
|
182
|
+
"blur": 24,
|
|
183
183
|
/** Scopes: Effect Float */
|
|
184
184
|
"spread": 0,
|
|
185
185
|
};
|
|
186
186
|
|
|
187
187
|
/**
|
|
188
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
188
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} Card
|
|
189
189
|
*/
|
|
190
190
|
|
|
191
191
|
/**
|
|
192
|
-
* @type {
|
|
192
|
+
* @type {Card}
|
|
193
193
|
*/
|
|
194
|
-
export const
|
|
194
|
+
export const card = {
|
|
195
195
|
/** Scopes: Effect Float */
|
|
196
196
|
"x": 0,
|
|
197
197
|
/** Scopes: Effect Float */
|
|
198
|
-
"y":
|
|
198
|
+
"y": 2,
|
|
199
199
|
/** Scopes: Effect Color */
|
|
200
|
-
"shadow": "rgba(
|
|
200
|
+
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
201
201
|
/** Scopes: Effect Float */
|
|
202
|
-
"blur":
|
|
202
|
+
"blur": 4,
|
|
203
203
|
/** Scopes: Effect Float */
|
|
204
204
|
"spread": 0,
|
|
205
205
|
};
|
|
206
206
|
|
|
207
207
|
/**
|
|
208
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
208
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} HardLine
|
|
209
209
|
*/
|
|
210
210
|
|
|
211
211
|
/**
|
|
212
|
-
* @type {
|
|
212
|
+
* @type {HardLine}
|
|
213
213
|
*/
|
|
214
|
-
export const
|
|
214
|
+
export const hardLine = {
|
|
215
215
|
/** Scopes: Effect Float */
|
|
216
216
|
"x": 0,
|
|
217
217
|
/** Scopes: Effect Float */
|
|
218
|
-
"y":
|
|
218
|
+
"y": 1,
|
|
219
219
|
/** Scopes: Effect Color */
|
|
220
|
-
"shadow": "rgba(
|
|
220
|
+
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
221
221
|
/** Scopes: Effect Float */
|
|
222
|
-
"blur":
|
|
222
|
+
"blur": 2,
|
|
223
223
|
/** Scopes: Effect Float */
|
|
224
224
|
"spread": 0,
|
|
225
225
|
};
|
|
226
226
|
|
|
227
227
|
/**
|
|
228
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
228
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} Dropdown
|
|
229
229
|
*/
|
|
230
230
|
|
|
231
231
|
/**
|
|
232
|
-
* @type {
|
|
232
|
+
* @type {Dropdown}
|
|
233
233
|
*/
|
|
234
|
-
export const
|
|
234
|
+
export const dropdown = {
|
|
235
235
|
/** Scopes: Effect Float */
|
|
236
236
|
"x": 0,
|
|
237
237
|
/** Scopes: Effect Float */
|
|
238
238
|
"y": 8,
|
|
239
239
|
/** Scopes: Effect Color */
|
|
240
|
-
"shadow": "rgba(
|
|
240
|
+
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
241
241
|
/** Scopes: Effect Float */
|
|
242
|
-
"blur":
|
|
242
|
+
"blur": 15,
|
|
243
243
|
/** Scopes: Effect Float */
|
|
244
244
|
"spread": 0,
|
|
245
245
|
};
|
|
246
246
|
|
|
247
247
|
/**
|
|
248
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
248
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} Drawer
|
|
249
249
|
*/
|
|
250
250
|
|
|
251
251
|
/**
|
|
252
|
-
* @type {
|
|
252
|
+
* @type {Drawer}
|
|
253
253
|
*/
|
|
254
|
-
export const
|
|
254
|
+
export const drawer = {
|
|
255
255
|
/** Scopes: Effect Float */
|
|
256
256
|
"x": 0,
|
|
257
257
|
/** Scopes: Effect Float */
|
|
@@ -259,37 +259,33 @@ export const neutralLarge2 = {
|
|
|
259
259
|
/** Scopes: Effect Color */
|
|
260
260
|
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
261
261
|
/** Scopes: Effect Float */
|
|
262
|
-
"blur":
|
|
262
|
+
"blur": 15,
|
|
263
263
|
/** Scopes: Effect Float */
|
|
264
264
|
"spread": 0,
|
|
265
265
|
};
|
|
266
266
|
|
|
267
267
|
/**
|
|
268
|
-
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }}
|
|
268
|
+
* @typedef {{ x: number, y: number, shadow: string, blur: number, spread: number }} Modal
|
|
269
269
|
*/
|
|
270
270
|
|
|
271
271
|
/**
|
|
272
|
-
* @type {
|
|
272
|
+
* @type {Modal}
|
|
273
273
|
*/
|
|
274
|
-
export const
|
|
274
|
+
export const modal = {
|
|
275
275
|
/** Scopes: Effect Float */
|
|
276
276
|
"x": 0,
|
|
277
277
|
/** Scopes: Effect Float */
|
|
278
|
-
"y":
|
|
278
|
+
"y": 8,
|
|
279
279
|
/** Scopes: Effect Color */
|
|
280
280
|
"shadow": "rgba(31, 41, 55, 0.1)",
|
|
281
281
|
/** Scopes: Effect Float */
|
|
282
|
-
"blur":
|
|
282
|
+
"blur": 15,
|
|
283
283
|
/** Scopes: Effect Float */
|
|
284
284
|
"spread": 0,
|
|
285
285
|
};
|
|
286
286
|
|
|
287
287
|
// Default export with all color groups
|
|
288
288
|
export default {
|
|
289
|
-
modal,
|
|
290
|
-
dropdown,
|
|
291
|
-
drawer,
|
|
292
|
-
card,
|
|
293
289
|
neutralSmall,
|
|
294
290
|
neutralRegular,
|
|
295
291
|
neutralMedium,
|
|
@@ -299,5 +295,9 @@ primaryRegular,
|
|
|
299
295
|
primaryMedium,
|
|
300
296
|
primaryLarge,
|
|
301
297
|
neutralLarge2,
|
|
298
|
+
card,
|
|
302
299
|
hardLine,
|
|
300
|
+
dropdown,
|
|
301
|
+
drawer,
|
|
302
|
+
modal,
|
|
303
303
|
};
|
package/dist/spacing.css
CHANGED
|
@@ -15,26 +15,26 @@
|
|
|
15
15
|
/* Scopes: Width Height, Gap */
|
|
16
16
|
--neo-spacing_2: 16px;
|
|
17
17
|
/* Scopes: Width Height, Gap */
|
|
18
|
-
--neo-
|
|
19
|
-
/* Scopes: Width Height, Gap */
|
|
20
|
-
--neo-spacing_2_1_2: 20px;
|
|
18
|
+
--neo-spacing_3: 24px;
|
|
21
19
|
/* Scopes: Width Height, Gap */
|
|
22
20
|
--neo-spacing_2_3_4: 22px;
|
|
23
21
|
/* Scopes: Width Height, Gap */
|
|
24
|
-
--neo-
|
|
22
|
+
--neo-spacing_2_1_2: 20px;
|
|
25
23
|
/* Scopes: Width Height, Gap */
|
|
26
|
-
--neo-
|
|
24
|
+
--neo-spacing_2_1_4: 18px;
|
|
27
25
|
/* Scopes: Width Height, Gap */
|
|
28
|
-
--neo-
|
|
26
|
+
--neo-spacing_4: 32px;
|
|
29
27
|
/* Scopes: Width Height, Gap */
|
|
30
28
|
--neo-spacing_3_3_4: 30px;
|
|
31
29
|
/* Scopes: Width Height, Gap */
|
|
32
|
-
--neo-
|
|
30
|
+
--neo-spacing_3_1_2: 28px;
|
|
31
|
+
/* Scopes: Width Height, Gap */
|
|
32
|
+
--neo-spacing_3_1_4: 26px;
|
|
33
33
|
--neo-spacing_5: 40px;
|
|
34
|
-
--neo-spacing_5_1_4: 42px;
|
|
35
|
-
--neo-spacing_5_1_2: 44px;
|
|
36
34
|
--neo-spacing_6: 48px;
|
|
37
|
-
--neo-spacing_7: 56px;
|
|
38
35
|
--neo-spacing_8: 64px;
|
|
39
|
-
--neo-
|
|
40
|
-
--neo-
|
|
36
|
+
--neo-spacing_10: 80px;
|
|
37
|
+
--neo-spacing_5_1_2: 44px;
|
|
38
|
+
--neo-spacing_5_1_4: 42px;
|
|
39
|
+
--neo-spacing_7: 56px;
|
|
40
|
+
--neo-spacing_9: 56px;}
|
package/dist/spacing.d.ts
CHANGED
|
@@ -48,59 +48,59 @@ export declare const spacing_2: 16;
|
|
|
48
48
|
/**
|
|
49
49
|
* @scopes Width Height, Gap
|
|
50
50
|
*/
|
|
51
|
-
export declare const
|
|
51
|
+
export declare const spacing_3: 24;
|
|
52
52
|
|
|
53
53
|
/**
|
|
54
54
|
* @scopes Width Height, Gap
|
|
55
55
|
*/
|
|
56
|
-
export declare const
|
|
56
|
+
export declare const spacing_2_3_4: 22;
|
|
57
57
|
|
|
58
58
|
/**
|
|
59
59
|
* @scopes Width Height, Gap
|
|
60
60
|
*/
|
|
61
|
-
export declare const
|
|
61
|
+
export declare const spacing_2_1_2: 20;
|
|
62
62
|
|
|
63
63
|
/**
|
|
64
64
|
* @scopes Width Height, Gap
|
|
65
65
|
*/
|
|
66
|
-
export declare const
|
|
66
|
+
export declare const spacing_2_1_4: 18;
|
|
67
67
|
|
|
68
68
|
/**
|
|
69
69
|
* @scopes Width Height, Gap
|
|
70
70
|
*/
|
|
71
|
-
export declare const
|
|
71
|
+
export declare const spacing_4: 32;
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
74
|
* @scopes Width Height, Gap
|
|
75
75
|
*/
|
|
76
|
-
export declare const
|
|
76
|
+
export declare const spacing_3_3_4: 30;
|
|
77
77
|
|
|
78
78
|
/**
|
|
79
79
|
* @scopes Width Height, Gap
|
|
80
80
|
*/
|
|
81
|
-
export declare const
|
|
81
|
+
export declare const spacing_3_1_2: 28;
|
|
82
82
|
|
|
83
83
|
/**
|
|
84
84
|
* @scopes Width Height, Gap
|
|
85
85
|
*/
|
|
86
|
-
export declare const
|
|
86
|
+
export declare const spacing_3_1_4: 26;
|
|
87
87
|
|
|
88
88
|
export declare const spacing_5: 40;
|
|
89
89
|
|
|
90
|
-
export declare const
|
|
90
|
+
export declare const spacing_6: 48;
|
|
91
|
+
|
|
92
|
+
export declare const spacing_8: 64;
|
|
93
|
+
|
|
94
|
+
export declare const spacing_10: 80;
|
|
91
95
|
|
|
92
96
|
export declare const spacing_5_1_2: 44;
|
|
93
97
|
|
|
94
|
-
export declare const
|
|
98
|
+
export declare const spacing_5_1_4: 42;
|
|
95
99
|
|
|
96
100
|
export declare const spacing_7: 56;
|
|
97
101
|
|
|
98
|
-
export declare const spacing_8: 64;
|
|
99
|
-
|
|
100
102
|
export declare const spacing_9: 56;
|
|
101
103
|
|
|
102
|
-
export declare const spacing_10: 80;
|
|
103
|
-
|
|
104
104
|
declare const _default: {
|
|
105
105
|
spacing_1_4: typeof spacing_1_4,
|
|
106
106
|
spacing_1_2: typeof spacing_1_2,
|
|
@@ -110,22 +110,22 @@ spacing_1_1_4: typeof spacing_1_1_4,
|
|
|
110
110
|
spacing_1_1_2: typeof spacing_1_1_2,
|
|
111
111
|
spacing_1_3_4: typeof spacing_1_3_4,
|
|
112
112
|
spacing_2: typeof spacing_2,
|
|
113
|
-
spacing_2_1_4: typeof spacing_2_1_4,
|
|
114
|
-
spacing_2_1_2: typeof spacing_2_1_2,
|
|
115
|
-
spacing_2_3_4: typeof spacing_2_3_4,
|
|
116
113
|
spacing_3: typeof spacing_3,
|
|
117
|
-
|
|
118
|
-
|
|
119
|
-
|
|
114
|
+
spacing_2_3_4: typeof spacing_2_3_4,
|
|
115
|
+
spacing_2_1_2: typeof spacing_2_1_2,
|
|
116
|
+
spacing_2_1_4: typeof spacing_2_1_4,
|
|
120
117
|
spacing_4: typeof spacing_4,
|
|
118
|
+
spacing_3_3_4: typeof spacing_3_3_4,
|
|
119
|
+
spacing_3_1_2: typeof spacing_3_1_2,
|
|
120
|
+
spacing_3_1_4: typeof spacing_3_1_4,
|
|
121
121
|
spacing_5: typeof spacing_5,
|
|
122
|
-
spacing_5_1_4: typeof spacing_5_1_4,
|
|
123
|
-
spacing_5_1_2: typeof spacing_5_1_2,
|
|
124
122
|
spacing_6: typeof spacing_6,
|
|
125
|
-
spacing_7: typeof spacing_7,
|
|
126
123
|
spacing_8: typeof spacing_8,
|
|
127
|
-
spacing_9: typeof spacing_9,
|
|
128
124
|
spacing_10: typeof spacing_10,
|
|
125
|
+
spacing_5_1_2: typeof spacing_5_1_2,
|
|
126
|
+
spacing_5_1_4: typeof spacing_5_1_4,
|
|
127
|
+
spacing_7: typeof spacing_7,
|
|
128
|
+
spacing_9: typeof spacing_9,
|
|
129
129
|
};
|
|
130
130
|
|
|
131
131
|
export default _default;
|
package/dist/spacing.js
CHANGED
|
@@ -56,49 +56,49 @@ export const spacing_2 = 16;
|
|
|
56
56
|
* Scopes: Width Height, Gap
|
|
57
57
|
* @type {number}
|
|
58
58
|
*/
|
|
59
|
-
export const
|
|
59
|
+
export const spacing_3 = 24;
|
|
60
60
|
|
|
61
61
|
/**
|
|
62
62
|
* Scopes: Width Height, Gap
|
|
63
63
|
* @type {number}
|
|
64
64
|
*/
|
|
65
|
-
export const
|
|
65
|
+
export const spacing_2_3_4 = 22;
|
|
66
66
|
|
|
67
67
|
/**
|
|
68
68
|
* Scopes: Width Height, Gap
|
|
69
69
|
* @type {number}
|
|
70
70
|
*/
|
|
71
|
-
export const
|
|
71
|
+
export const spacing_2_1_2 = 20;
|
|
72
72
|
|
|
73
73
|
/**
|
|
74
74
|
* Scopes: Width Height, Gap
|
|
75
75
|
* @type {number}
|
|
76
76
|
*/
|
|
77
|
-
export const
|
|
77
|
+
export const spacing_2_1_4 = 18;
|
|
78
78
|
|
|
79
79
|
/**
|
|
80
80
|
* Scopes: Width Height, Gap
|
|
81
81
|
* @type {number}
|
|
82
82
|
*/
|
|
83
|
-
export const
|
|
83
|
+
export const spacing_4 = 32;
|
|
84
84
|
|
|
85
85
|
/**
|
|
86
86
|
* Scopes: Width Height, Gap
|
|
87
87
|
* @type {number}
|
|
88
88
|
*/
|
|
89
|
-
export const
|
|
89
|
+
export const spacing_3_3_4 = 30;
|
|
90
90
|
|
|
91
91
|
/**
|
|
92
92
|
* Scopes: Width Height, Gap
|
|
93
93
|
* @type {number}
|
|
94
94
|
*/
|
|
95
|
-
export const
|
|
95
|
+
export const spacing_3_1_2 = 28;
|
|
96
96
|
|
|
97
97
|
/**
|
|
98
98
|
* Scopes: Width Height, Gap
|
|
99
99
|
* @type {number}
|
|
100
100
|
*/
|
|
101
|
-
export const
|
|
101
|
+
export const spacing_3_1_4 = 26;
|
|
102
102
|
|
|
103
103
|
/**
|
|
104
104
|
* @type {number}
|
|
@@ -108,37 +108,37 @@ export const spacing_5 = 40;
|
|
|
108
108
|
/**
|
|
109
109
|
* @type {number}
|
|
110
110
|
*/
|
|
111
|
-
export const
|
|
111
|
+
export const spacing_6 = 48;
|
|
112
112
|
|
|
113
113
|
/**
|
|
114
114
|
* @type {number}
|
|
115
115
|
*/
|
|
116
|
-
export const
|
|
116
|
+
export const spacing_8 = 64;
|
|
117
117
|
|
|
118
118
|
/**
|
|
119
119
|
* @type {number}
|
|
120
120
|
*/
|
|
121
|
-
export const
|
|
121
|
+
export const spacing_10 = 80;
|
|
122
122
|
|
|
123
123
|
/**
|
|
124
124
|
* @type {number}
|
|
125
125
|
*/
|
|
126
|
-
export const
|
|
126
|
+
export const spacing_5_1_2 = 44;
|
|
127
127
|
|
|
128
128
|
/**
|
|
129
129
|
* @type {number}
|
|
130
130
|
*/
|
|
131
|
-
export const
|
|
131
|
+
export const spacing_5_1_4 = 42;
|
|
132
132
|
|
|
133
133
|
/**
|
|
134
134
|
* @type {number}
|
|
135
135
|
*/
|
|
136
|
-
export const
|
|
136
|
+
export const spacing_7 = 56;
|
|
137
137
|
|
|
138
138
|
/**
|
|
139
139
|
* @type {number}
|
|
140
140
|
*/
|
|
141
|
-
export const
|
|
141
|
+
export const spacing_9 = 56;
|
|
142
142
|
|
|
143
143
|
// Default export with all color groups
|
|
144
144
|
export default {
|
|
@@ -150,20 +150,20 @@ spacing_1_1_4,
|
|
|
150
150
|
spacing_1_1_2,
|
|
151
151
|
spacing_1_3_4,
|
|
152
152
|
spacing_2,
|
|
153
|
-
spacing_2_1_4,
|
|
154
|
-
spacing_2_1_2,
|
|
155
|
-
spacing_2_3_4,
|
|
156
153
|
spacing_3,
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
|
|
154
|
+
spacing_2_3_4,
|
|
155
|
+
spacing_2_1_2,
|
|
156
|
+
spacing_2_1_4,
|
|
160
157
|
spacing_4,
|
|
158
|
+
spacing_3_3_4,
|
|
159
|
+
spacing_3_1_2,
|
|
160
|
+
spacing_3_1_4,
|
|
161
161
|
spacing_5,
|
|
162
|
-
spacing_5_1_4,
|
|
163
|
-
spacing_5_1_2,
|
|
164
162
|
spacing_6,
|
|
165
|
-
spacing_7,
|
|
166
163
|
spacing_8,
|
|
167
|
-
spacing_9,
|
|
168
164
|
spacing_10,
|
|
165
|
+
spacing_5_1_2,
|
|
166
|
+
spacing_5_1_4,
|
|
167
|
+
spacing_7,
|
|
168
|
+
spacing_9,
|
|
169
169
|
};
|