lism-css 0.18.0 → 0.21.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/config/defaults/props.ts +41 -40
- package/config/defaults/tokens.ts +1 -1
- package/config/defaults/traits.ts +1 -7
- package/dist/components/state/Wrapper/Wrapper.d.ts +2 -4
- package/dist/components/state/Wrapper/index.js +5 -5
- package/dist/config/default-config.d.ts +47 -45
- package/dist/config/defaults/props.d.ts +45 -37
- package/dist/config/defaults/props.js +42 -41
- package/dist/config/defaults/tokens.d.ts +1 -1
- package/dist/config/defaults/tokens.js +1 -1
- package/dist/config/defaults/traits.d.ts +1 -7
- package/dist/config/defaults/traits.js +1 -7
- package/dist/config/index.d.ts +95 -91
- package/dist/css/base/set.css +1 -1
- package/dist/css/base.css +1 -1
- package/dist/css/main.css +1 -1
- package/dist/css/main_no_layer.css +1 -1
- package/dist/css/primitives/layout.css +1 -1
- package/dist/css/props.css +1 -1
- package/dist/css/trait.css +1 -1
- package/dist/lib/getLismProps.d.ts +2 -9
- package/dist/lib/getLismProps.js +98 -95
- package/dist/lib/types/PropValueTypes.d.ts +14 -10
- package/dist/lib/types/TraitProps.d.ts +10 -11
- package/dist/lib/types/allowedTags.d.ts +1 -1
- package/dist/lib/warnUnsupportedBp.d.ts +10 -0
- package/dist/lib/warnUnsupportedBp.js +20 -0
- package/package.json +1 -1
- package/packages/astro/state/Wrapper/Wrapper.astro +2 -8
- package/src/scss/_prop-config.scss +30 -66
- package/src/scss/base/_html.scss +7 -2
- package/src/scss/base/set/_bdrsInner.scss +1 -1
- package/src/scss/base/set/_bleed.scss +3 -0
- package/src/scss/base/set/_hov.scss +4 -4
- package/src/scss/base/set/_revert.scss +1 -1
- package/src/scss/base/set/index.scss +1 -0
- package/src/scss/base/tokens/_shadow.scss +2 -2
- package/src/scss/base/tokens/_space.scss +3 -3
- package/src/scss/base/tokens/_tokens.scss +15 -1
- package/src/scss/primitives/layout/_flow.scss +0 -4
- package/src/scss/props/_border.scss +4 -4
- package/src/scss/props/_hover.scss +4 -7
- package/src/scss/trait/is/_wrapper.scss +1 -8
package/config/defaults/props.ts
CHANGED
|
@@ -43,9 +43,9 @@ export default {
|
|
|
43
43
|
isVar: 1,
|
|
44
44
|
token: 'hl',
|
|
45
45
|
tokenClass: 0,
|
|
46
|
-
bp:
|
|
46
|
+
bp: 0,
|
|
47
47
|
},
|
|
48
|
-
lts: { prop: 'letterSpacing', token: 'lts', tokenClass: 1 },
|
|
48
|
+
lts: { prop: 'letterSpacing', token: 'lts', tokenClass: 1, bp: 0 },
|
|
49
49
|
ta: { prop: 'textAlign', presets: ['center', 'left', 'right'] },
|
|
50
50
|
td: { prop: 'textDecoration', utils: { none: 'none' } },
|
|
51
51
|
tt: { prop: 'textTransform', utils: { upper: 'uppercase', lower: 'lowercase' } },
|
|
@@ -55,7 +55,7 @@ export default {
|
|
|
55
55
|
d: {
|
|
56
56
|
prop: 'display',
|
|
57
57
|
presets: ['none', 'block', 'flex', 'inline-flex', 'grid', 'inline-grid', 'inline', 'inline-block'],
|
|
58
|
-
bp:
|
|
58
|
+
bp: 'lg',
|
|
59
59
|
},
|
|
60
60
|
o: { prop: 'opacity', presets: ['0'], token: 'o', tokenClass: 1 },
|
|
61
61
|
v: { prop: 'visibility', presets: ['hidden'] },
|
|
@@ -79,6 +79,7 @@ export default {
|
|
|
79
79
|
'min-h': { prop: 'minHeight', presets: ['100%'], token: 'sz', bp: 1 },
|
|
80
80
|
'max-h': { prop: 'maxHeight', presets: ['100%'], token: 'sz', bp: 1 },
|
|
81
81
|
|
|
82
|
+
contentSize: { isVar: 1, presets: ['s', 'm', 'l', 'xl'], token: 'sz' },
|
|
82
83
|
sz: { prop: 'inlineSize', token: 'sz' },
|
|
83
84
|
'min-sz': { prop: 'minInlineSize', token: 'sz' },
|
|
84
85
|
'max-sz': {
|
|
@@ -96,7 +97,7 @@ export default {
|
|
|
96
97
|
'max-bsz': { prop: 'maxBlockSize', token: 'sz' },
|
|
97
98
|
|
|
98
99
|
// bg
|
|
99
|
-
bg: { prop: 'background', bp:
|
|
100
|
+
bg: { prop: 'background', bp: 0 },
|
|
100
101
|
bgi: { prop: 'backgroundImage' },
|
|
101
102
|
bgr: { prop: 'backgroundRepeat', presets: ['no-repeat'] },
|
|
102
103
|
bgp: { prop: 'backgroundPosition', presets: ['center'] },
|
|
@@ -139,10 +140,10 @@ export default {
|
|
|
139
140
|
bdw: { isVar: 1, bp: 1 }, // --bdw のみ
|
|
140
141
|
'bd-x': { prop: 'borderInline' },
|
|
141
142
|
'bd-y': { prop: 'borderBlock' },
|
|
142
|
-
'bd-
|
|
143
|
-
'bd-
|
|
144
|
-
'bd-
|
|
145
|
-
'bd-
|
|
143
|
+
'bd-s': { prop: 'borderInlineStart' },
|
|
144
|
+
'bd-e': { prop: 'borderInlineEnd' },
|
|
145
|
+
'bd-bs': { prop: 'borderBlockStart' },
|
|
146
|
+
'bd-be': { prop: 'borderBlockEnd' },
|
|
146
147
|
'bd-t': { prop: 'borderTop' },
|
|
147
148
|
'bd-b': { prop: 'borderBottom' },
|
|
148
149
|
'bd-l': { prop: 'borderLeft' },
|
|
@@ -171,6 +172,7 @@ export default {
|
|
|
171
172
|
pos: {
|
|
172
173
|
prop: 'position',
|
|
173
174
|
presets: ['static', 'fixed', 'sticky', 'relative', 'absolute'],
|
|
175
|
+
bp: 1,
|
|
174
176
|
},
|
|
175
177
|
z: { prop: 'zIndex', presets: ['-1', '0', '1', '99'] },
|
|
176
178
|
t: { prop: 'top', utils: { 0: '0%' }, presets: ['50%', '100%'], token: 'space' },
|
|
@@ -180,10 +182,10 @@ export default {
|
|
|
180
182
|
i: { prop: 'inset', utils: { 0: '0%' }, token: 'space' },
|
|
181
183
|
'i-x': { prop: 'insetInline', token: 'space' },
|
|
182
184
|
'i-y': { prop: 'insetBlock', token: 'space' },
|
|
183
|
-
'i-
|
|
184
|
-
'i-
|
|
185
|
-
'i-
|
|
186
|
-
'i-
|
|
185
|
+
'i-s': { prop: 'insetInlineStart', token: 'space' },
|
|
186
|
+
'i-e': { prop: 'insetInlineEnd', token: 'space' },
|
|
187
|
+
'i-bs': { prop: 'insetBlockStart', token: 'space' },
|
|
188
|
+
'i-be': { prop: 'insetBlockEnd', token: 'space' },
|
|
187
189
|
|
|
188
190
|
// space
|
|
189
191
|
p: {
|
|
@@ -196,14 +198,14 @@ export default {
|
|
|
196
198
|
},
|
|
197
199
|
px: { prop: 'paddingInline', presets: ['0'], token: 'space', tokenClass: 1, bp: 1 },
|
|
198
200
|
py: { prop: 'paddingBlock', presets: ['0'], token: 'space', tokenClass: 1, bp: 1 },
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
pl: { prop: 'paddingLeft', token: 'space', bp:
|
|
204
|
-
pr: { prop: 'paddingRight', token: 'space', bp:
|
|
205
|
-
pt: { prop: 'paddingTop', token: 'space', bp:
|
|
206
|
-
pb: { prop: 'paddingBottom', token: 'space', bp:
|
|
201
|
+
ps: { prop: 'paddingInlineStart', token: 'space', bp: 1 },
|
|
202
|
+
pe: { prop: 'paddingInlineEnd', token: 'space', bp: 1 },
|
|
203
|
+
pbs: { prop: 'paddingBlockStart', token: 'space', bp: 1 },
|
|
204
|
+
pbe: { prop: 'paddingBlockEnd', token: 'space', bp: 1 },
|
|
205
|
+
pl: { prop: 'paddingLeft', token: 'space', bp: 0 },
|
|
206
|
+
pr: { prop: 'paddingRight', token: 'space', bp: 0 },
|
|
207
|
+
pt: { prop: 'paddingTop', token: 'space', bp: 0 },
|
|
208
|
+
pb: { prop: 'paddingBottom', token: 'space', bp: 0 },
|
|
207
209
|
m: {
|
|
208
210
|
prop: 'margin',
|
|
209
211
|
presets: ['auto', '0'],
|
|
@@ -214,14 +216,14 @@ export default {
|
|
|
214
216
|
},
|
|
215
217
|
mx: { prop: 'marginInline', presets: ['auto', '0'], token: 'space', tokenClass: 1, bp: 1 },
|
|
216
218
|
my: { prop: 'marginBlock', presets: ['auto', '0'], token: 'space', tokenClass: 1, bp: 1 },
|
|
217
|
-
|
|
218
|
-
|
|
219
|
-
|
|
220
|
-
|
|
221
|
-
ml: { prop: 'marginLeft', token: 'space', bp:
|
|
222
|
-
mr: { prop: 'marginRight', token: 'space', bp:
|
|
223
|
-
mt: { prop: 'marginTop', token: 'space', bp:
|
|
224
|
-
mb: { prop: 'marginBottom', token: 'space', bp:
|
|
219
|
+
ms: { prop: 'marginInlineStart', presets: ['auto'], token: 'space', bp: 1 },
|
|
220
|
+
me: { prop: 'marginInlineEnd', presets: ['auto'], token: 'space', bp: 1 },
|
|
221
|
+
mbs: { prop: 'marginBlockStart', token: 'space', bp: 1, presets: ['auto', '0'], tokenClass: 1 },
|
|
222
|
+
mbe: { prop: 'marginBlockEnd', presets: ['auto'], token: 'space', bp: 1 },
|
|
223
|
+
ml: { prop: 'marginLeft', token: 'space', bp: 0 },
|
|
224
|
+
mr: { prop: 'marginRight', token: 'space', bp: 0 },
|
|
225
|
+
mt: { prop: 'marginTop', token: 'space', bp: 0 },
|
|
226
|
+
mb: { prop: 'marginBottom', token: 'space', bp: 0 },
|
|
225
227
|
|
|
226
228
|
g: {
|
|
227
229
|
prop: 'gap',
|
|
@@ -229,11 +231,11 @@ export default {
|
|
|
229
231
|
exUtility: { inherit: { gap: 'inherit' } },
|
|
230
232
|
token: 'space',
|
|
231
233
|
tokenClass: 1,
|
|
232
|
-
bp:
|
|
234
|
+
bp: 'lg',
|
|
233
235
|
},
|
|
234
|
-
cg: { prop: 'columnGap', token: 'space', bp:
|
|
235
|
-
rg: { prop: 'rowGap', token: 'space', bp:
|
|
236
|
-
cols: { isVar: 1, bp:
|
|
236
|
+
cg: { prop: 'columnGap', token: 'space', bp: 0 },
|
|
237
|
+
rg: { prop: 'rowGap', token: 'space', bp: 0 },
|
|
238
|
+
cols: { isVar: 1, bp: 'lg' },
|
|
237
239
|
rows: { isVar: 1, bp: 1 },
|
|
238
240
|
|
|
239
241
|
// flex
|
|
@@ -251,26 +253,25 @@ export default {
|
|
|
251
253
|
prop: 'gridTemplate',
|
|
252
254
|
bp: 1,
|
|
253
255
|
},
|
|
254
|
-
gta: { prop: 'gridTemplateAreas', bp:
|
|
256
|
+
gta: { prop: 'gridTemplateAreas', bp: 'lg' },
|
|
255
257
|
gtc: {
|
|
256
258
|
prop: 'gridTemplateColumns',
|
|
257
259
|
presets: ['subgrid'],
|
|
258
|
-
bp:
|
|
260
|
+
bp: 'lg',
|
|
259
261
|
},
|
|
260
262
|
gtr: {
|
|
261
263
|
prop: 'gridTemplateRows',
|
|
262
264
|
presets: ['subgrid'],
|
|
263
|
-
|
|
264
|
-
bp: 1,
|
|
265
|
+
bp: 'lg',
|
|
265
266
|
},
|
|
266
267
|
gaf: { prop: 'gridAutoFlow', presets: ['row', 'column'], bp: 1 }, //dense
|
|
267
268
|
gac: { prop: 'gridAutoColumns' },
|
|
268
269
|
gar: { prop: 'gridAutoRows' },
|
|
269
270
|
|
|
270
271
|
// grid item
|
|
271
|
-
ga: { prop: 'gridArea', utils: { '1/1': '1 / 1' }, bp:
|
|
272
|
-
gc: { prop: 'gridColumn', utils: { '1/-1': '1 / -1' }, bp:
|
|
273
|
-
gr: { prop: 'gridRow', utils: { '1/-1': '1 / -1' }, bp:
|
|
272
|
+
ga: { prop: 'gridArea', utils: { '1/1': '1 / 1' }, bp: 'lg' },
|
|
273
|
+
gc: { prop: 'gridColumn', utils: { '1/-1': '1 / -1' }, bp: 'lg' },
|
|
274
|
+
gr: { prop: 'gridRow', utils: { '1/-1': '1 / -1' }, bp: 'lg' },
|
|
274
275
|
gcs: { prop: 'gridColumnStart' },
|
|
275
276
|
gce: { prop: 'gridColumnEnd' },
|
|
276
277
|
grs: { prop: 'gridRowStart' },
|
|
@@ -317,7 +318,7 @@ export default {
|
|
|
317
318
|
shorthands: PLACE_SHORTHANDS,
|
|
318
319
|
},
|
|
319
320
|
pslf: { prop: 'placeSelf', presets: PLACE_PRESETS },
|
|
320
|
-
order: { prop: 'order', presets: ['0', '-1', '1'] },
|
|
321
|
+
order: { prop: 'order', presets: ['0', '-1', '1'], bp: 1 },
|
|
321
322
|
|
|
322
323
|
// transform
|
|
323
324
|
// translate: {
|
|
@@ -16,7 +16,7 @@ export default {
|
|
|
16
16
|
},
|
|
17
17
|
c: {
|
|
18
18
|
pre: '--',
|
|
19
|
-
values: ['base', 'base-2', 'text', 'text-2', 'divider', 'link', 'brand', 'accent'],
|
|
19
|
+
values: ['base', 'base-2', 'text', 'text-2', 'divider', 'link', 'brand', 'accent', 'neutral'],
|
|
20
20
|
},
|
|
21
21
|
palette: {
|
|
22
22
|
pre: '--',
|
|
@@ -1,12 +1,6 @@
|
|
|
1
1
|
export default {
|
|
2
2
|
isContainer: 'is--container',
|
|
3
|
-
isWrapper:
|
|
4
|
-
className: 'is--wrapper',
|
|
5
|
-
preset: ['s', 'l'],
|
|
6
|
-
presetClass: '-contentSize',
|
|
7
|
-
customVar: '--contentSize',
|
|
8
|
-
tokenKey: 'sz',
|
|
9
|
-
},
|
|
3
|
+
isWrapper: 'is--wrapper',
|
|
10
4
|
isLayer: 'is--layer',
|
|
11
5
|
isBoxLink: 'is--boxLink',
|
|
12
6
|
isCoverLink: 'is--coverLink',
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import { LismComponentProps } from '../../Lism';
|
|
2
|
-
type WrapperProps = LismComponentProps
|
|
3
|
-
|
|
4
|
-
};
|
|
5
|
-
export default function Wrapper({ contentSize, ...props }: WrapperProps): import("react").JSX.Element;
|
|
2
|
+
type WrapperProps = LismComponentProps;
|
|
3
|
+
export default function Wrapper(props: WrapperProps): import("react").JSX.Element;
|
|
6
4
|
export {};
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { jsx as
|
|
2
|
-
import
|
|
3
|
-
function
|
|
4
|
-
return /* @__PURE__ */ t
|
|
1
|
+
import { jsx as p } from "react/jsx-runtime";
|
|
2
|
+
import t from "../../Lism/index.js";
|
|
3
|
+
function i(r) {
|
|
4
|
+
return /* @__PURE__ */ p(t, { isWrapper: !0, ...r });
|
|
5
5
|
}
|
|
6
6
|
export {
|
|
7
|
-
|
|
7
|
+
i as default
|
|
8
8
|
};
|
|
@@ -17,7 +17,7 @@ declare const _default: {
|
|
|
17
17
|
};
|
|
18
18
|
readonly c: {
|
|
19
19
|
readonly pre: "--";
|
|
20
|
-
readonly values: readonly ["base", "base-2", "text", "text-2", "divider", "link", "brand", "accent"];
|
|
20
|
+
readonly values: readonly ["base", "base-2", "text", "text-2", "divider", "link", "brand", "accent", "neutral"];
|
|
21
21
|
};
|
|
22
22
|
readonly palette: {
|
|
23
23
|
readonly pre: "--";
|
|
@@ -68,12 +68,13 @@ declare const _default: {
|
|
|
68
68
|
readonly isVar: 1;
|
|
69
69
|
readonly token: "hl";
|
|
70
70
|
readonly tokenClass: 0;
|
|
71
|
-
readonly bp:
|
|
71
|
+
readonly bp: 0;
|
|
72
72
|
};
|
|
73
73
|
readonly lts: {
|
|
74
74
|
readonly prop: "letterSpacing";
|
|
75
75
|
readonly token: "lts";
|
|
76
76
|
readonly tokenClass: 1;
|
|
77
|
+
readonly bp: 0;
|
|
77
78
|
};
|
|
78
79
|
readonly ta: {
|
|
79
80
|
readonly prop: "textAlign";
|
|
@@ -95,7 +96,7 @@ declare const _default: {
|
|
|
95
96
|
readonly d: {
|
|
96
97
|
readonly prop: "display";
|
|
97
98
|
readonly presets: readonly ["none", "block", "flex", "inline-flex", "grid", "inline-grid", "inline", "inline-block"];
|
|
98
|
-
readonly bp:
|
|
99
|
+
readonly bp: "lg";
|
|
99
100
|
};
|
|
100
101
|
readonly o: {
|
|
101
102
|
readonly prop: "opacity";
|
|
@@ -168,6 +169,11 @@ declare const _default: {
|
|
|
168
169
|
readonly token: "sz";
|
|
169
170
|
readonly bp: 1;
|
|
170
171
|
};
|
|
172
|
+
readonly contentSize: {
|
|
173
|
+
readonly isVar: 1;
|
|
174
|
+
readonly presets: readonly ["s", "m", "l", "xl"];
|
|
175
|
+
readonly token: "sz";
|
|
176
|
+
};
|
|
171
177
|
readonly sz: {
|
|
172
178
|
readonly prop: "inlineSize";
|
|
173
179
|
readonly token: "sz";
|
|
@@ -200,7 +206,7 @@ declare const _default: {
|
|
|
200
206
|
};
|
|
201
207
|
readonly bg: {
|
|
202
208
|
readonly prop: "background";
|
|
203
|
-
readonly bp:
|
|
209
|
+
readonly bp: 0;
|
|
204
210
|
};
|
|
205
211
|
readonly bgi: {
|
|
206
212
|
readonly prop: "backgroundImage";
|
|
@@ -269,16 +275,16 @@ declare const _default: {
|
|
|
269
275
|
readonly 'bd-y': {
|
|
270
276
|
readonly prop: "borderBlock";
|
|
271
277
|
};
|
|
272
|
-
readonly 'bd-
|
|
278
|
+
readonly 'bd-s': {
|
|
273
279
|
readonly prop: "borderInlineStart";
|
|
274
280
|
};
|
|
275
|
-
readonly 'bd-
|
|
281
|
+
readonly 'bd-e': {
|
|
276
282
|
readonly prop: "borderInlineEnd";
|
|
277
283
|
};
|
|
278
|
-
readonly 'bd-
|
|
284
|
+
readonly 'bd-bs': {
|
|
279
285
|
readonly prop: "borderBlockStart";
|
|
280
286
|
};
|
|
281
|
-
readonly 'bd-
|
|
287
|
+
readonly 'bd-be': {
|
|
282
288
|
readonly prop: "borderBlockEnd";
|
|
283
289
|
};
|
|
284
290
|
readonly 'bd-t': {
|
|
@@ -345,6 +351,7 @@ declare const _default: {
|
|
|
345
351
|
readonly pos: {
|
|
346
352
|
readonly prop: "position";
|
|
347
353
|
readonly presets: readonly ["static", "fixed", "sticky", "relative", "absolute"];
|
|
354
|
+
readonly bp: 1;
|
|
348
355
|
};
|
|
349
356
|
readonly z: {
|
|
350
357
|
readonly prop: "zIndex";
|
|
@@ -397,19 +404,19 @@ declare const _default: {
|
|
|
397
404
|
readonly prop: "insetBlock";
|
|
398
405
|
readonly token: "space";
|
|
399
406
|
};
|
|
400
|
-
readonly 'i-
|
|
407
|
+
readonly 'i-s': {
|
|
401
408
|
readonly prop: "insetInlineStart";
|
|
402
409
|
readonly token: "space";
|
|
403
410
|
};
|
|
404
|
-
readonly 'i-
|
|
411
|
+
readonly 'i-e': {
|
|
405
412
|
readonly prop: "insetInlineEnd";
|
|
406
413
|
readonly token: "space";
|
|
407
414
|
};
|
|
408
|
-
readonly 'i-
|
|
415
|
+
readonly 'i-bs': {
|
|
409
416
|
readonly prop: "insetBlockStart";
|
|
410
417
|
readonly token: "space";
|
|
411
418
|
};
|
|
412
|
-
readonly 'i-
|
|
419
|
+
readonly 'i-be': {
|
|
413
420
|
readonly prop: "insetBlockEnd";
|
|
414
421
|
readonly token: "space";
|
|
415
422
|
};
|
|
@@ -435,22 +442,22 @@ declare const _default: {
|
|
|
435
442
|
readonly tokenClass: 1;
|
|
436
443
|
readonly bp: 1;
|
|
437
444
|
};
|
|
438
|
-
readonly
|
|
445
|
+
readonly ps: {
|
|
439
446
|
readonly prop: "paddingInlineStart";
|
|
440
447
|
readonly token: "space";
|
|
441
448
|
readonly bp: 1;
|
|
442
449
|
};
|
|
443
|
-
readonly
|
|
450
|
+
readonly pe: {
|
|
444
451
|
readonly prop: "paddingInlineEnd";
|
|
445
452
|
readonly token: "space";
|
|
446
453
|
readonly bp: 1;
|
|
447
454
|
};
|
|
448
|
-
readonly
|
|
455
|
+
readonly pbs: {
|
|
449
456
|
readonly prop: "paddingBlockStart";
|
|
450
457
|
readonly token: "space";
|
|
451
458
|
readonly bp: 1;
|
|
452
459
|
};
|
|
453
|
-
readonly
|
|
460
|
+
readonly pbe: {
|
|
454
461
|
readonly prop: "paddingBlockEnd";
|
|
455
462
|
readonly token: "space";
|
|
456
463
|
readonly bp: 1;
|
|
@@ -458,22 +465,22 @@ declare const _default: {
|
|
|
458
465
|
readonly pl: {
|
|
459
466
|
readonly prop: "paddingLeft";
|
|
460
467
|
readonly token: "space";
|
|
461
|
-
readonly bp:
|
|
468
|
+
readonly bp: 0;
|
|
462
469
|
};
|
|
463
470
|
readonly pr: {
|
|
464
471
|
readonly prop: "paddingRight";
|
|
465
472
|
readonly token: "space";
|
|
466
|
-
readonly bp:
|
|
473
|
+
readonly bp: 0;
|
|
467
474
|
};
|
|
468
475
|
readonly pt: {
|
|
469
476
|
readonly prop: "paddingTop";
|
|
470
477
|
readonly token: "space";
|
|
471
|
-
readonly bp:
|
|
478
|
+
readonly bp: 0;
|
|
472
479
|
};
|
|
473
480
|
readonly pb: {
|
|
474
481
|
readonly prop: "paddingBottom";
|
|
475
482
|
readonly token: "space";
|
|
476
|
-
readonly bp:
|
|
483
|
+
readonly bp: 0;
|
|
477
484
|
};
|
|
478
485
|
readonly m: {
|
|
479
486
|
readonly prop: "margin";
|
|
@@ -497,26 +504,26 @@ declare const _default: {
|
|
|
497
504
|
readonly tokenClass: 1;
|
|
498
505
|
readonly bp: 1;
|
|
499
506
|
};
|
|
500
|
-
readonly
|
|
507
|
+
readonly ms: {
|
|
501
508
|
readonly prop: "marginInlineStart";
|
|
502
509
|
readonly presets: readonly ["auto"];
|
|
503
510
|
readonly token: "space";
|
|
504
511
|
readonly bp: 1;
|
|
505
512
|
};
|
|
506
|
-
readonly
|
|
513
|
+
readonly me: {
|
|
507
514
|
readonly prop: "marginInlineEnd";
|
|
508
515
|
readonly presets: readonly ["auto"];
|
|
509
516
|
readonly token: "space";
|
|
510
517
|
readonly bp: 1;
|
|
511
518
|
};
|
|
512
|
-
readonly
|
|
519
|
+
readonly mbs: {
|
|
513
520
|
readonly prop: "marginBlockStart";
|
|
514
521
|
readonly token: "space";
|
|
515
522
|
readonly bp: 1;
|
|
516
523
|
readonly presets: readonly ["auto", "0"];
|
|
517
524
|
readonly tokenClass: 1;
|
|
518
525
|
};
|
|
519
|
-
readonly
|
|
526
|
+
readonly mbe: {
|
|
520
527
|
readonly prop: "marginBlockEnd";
|
|
521
528
|
readonly presets: readonly ["auto"];
|
|
522
529
|
readonly token: "space";
|
|
@@ -525,22 +532,22 @@ declare const _default: {
|
|
|
525
532
|
readonly ml: {
|
|
526
533
|
readonly prop: "marginLeft";
|
|
527
534
|
readonly token: "space";
|
|
528
|
-
readonly bp:
|
|
535
|
+
readonly bp: 0;
|
|
529
536
|
};
|
|
530
537
|
readonly mr: {
|
|
531
538
|
readonly prop: "marginRight";
|
|
532
539
|
readonly token: "space";
|
|
533
|
-
readonly bp:
|
|
540
|
+
readonly bp: 0;
|
|
534
541
|
};
|
|
535
542
|
readonly mt: {
|
|
536
543
|
readonly prop: "marginTop";
|
|
537
544
|
readonly token: "space";
|
|
538
|
-
readonly bp:
|
|
545
|
+
readonly bp: 0;
|
|
539
546
|
};
|
|
540
547
|
readonly mb: {
|
|
541
548
|
readonly prop: "marginBottom";
|
|
542
549
|
readonly token: "space";
|
|
543
|
-
readonly bp:
|
|
550
|
+
readonly bp: 0;
|
|
544
551
|
};
|
|
545
552
|
readonly g: {
|
|
546
553
|
readonly prop: "gap";
|
|
@@ -552,21 +559,21 @@ declare const _default: {
|
|
|
552
559
|
};
|
|
553
560
|
readonly token: "space";
|
|
554
561
|
readonly tokenClass: 1;
|
|
555
|
-
readonly bp:
|
|
562
|
+
readonly bp: "lg";
|
|
556
563
|
};
|
|
557
564
|
readonly cg: {
|
|
558
565
|
readonly prop: "columnGap";
|
|
559
566
|
readonly token: "space";
|
|
560
|
-
readonly bp:
|
|
567
|
+
readonly bp: 0;
|
|
561
568
|
};
|
|
562
569
|
readonly rg: {
|
|
563
570
|
readonly prop: "rowGap";
|
|
564
571
|
readonly token: "space";
|
|
565
|
-
readonly bp:
|
|
572
|
+
readonly bp: 0;
|
|
566
573
|
};
|
|
567
574
|
readonly cols: {
|
|
568
575
|
readonly isVar: 1;
|
|
569
|
-
readonly bp:
|
|
576
|
+
readonly bp: "lg";
|
|
570
577
|
};
|
|
571
578
|
readonly rows: {
|
|
572
579
|
readonly isVar: 1;
|
|
@@ -608,17 +615,17 @@ declare const _default: {
|
|
|
608
615
|
};
|
|
609
616
|
readonly gta: {
|
|
610
617
|
readonly prop: "gridTemplateAreas";
|
|
611
|
-
readonly bp:
|
|
618
|
+
readonly bp: "lg";
|
|
612
619
|
};
|
|
613
620
|
readonly gtc: {
|
|
614
621
|
readonly prop: "gridTemplateColumns";
|
|
615
622
|
readonly presets: readonly ["subgrid"];
|
|
616
|
-
readonly bp:
|
|
623
|
+
readonly bp: "lg";
|
|
617
624
|
};
|
|
618
625
|
readonly gtr: {
|
|
619
626
|
readonly prop: "gridTemplateRows";
|
|
620
627
|
readonly presets: readonly ["subgrid"];
|
|
621
|
-
readonly bp:
|
|
628
|
+
readonly bp: "lg";
|
|
622
629
|
};
|
|
623
630
|
readonly gaf: {
|
|
624
631
|
readonly prop: "gridAutoFlow";
|
|
@@ -636,21 +643,21 @@ declare const _default: {
|
|
|
636
643
|
readonly utils: {
|
|
637
644
|
readonly '1/1': "1 / 1";
|
|
638
645
|
};
|
|
639
|
-
readonly bp:
|
|
646
|
+
readonly bp: "lg";
|
|
640
647
|
};
|
|
641
648
|
readonly gc: {
|
|
642
649
|
readonly prop: "gridColumn";
|
|
643
650
|
readonly utils: {
|
|
644
651
|
readonly '1/-1': "1 / -1";
|
|
645
652
|
};
|
|
646
|
-
readonly bp:
|
|
653
|
+
readonly bp: "lg";
|
|
647
654
|
};
|
|
648
655
|
readonly gr: {
|
|
649
656
|
readonly prop: "gridRow";
|
|
650
657
|
readonly utils: {
|
|
651
658
|
readonly '1/-1': "1 / -1";
|
|
652
659
|
};
|
|
653
|
-
readonly bp:
|
|
660
|
+
readonly bp: "lg";
|
|
654
661
|
};
|
|
655
662
|
readonly gcs: {
|
|
656
663
|
readonly prop: "gridColumnStart";
|
|
@@ -755,6 +762,7 @@ declare const _default: {
|
|
|
755
762
|
readonly order: {
|
|
756
763
|
readonly prop: "order";
|
|
757
764
|
readonly presets: readonly ["0", "-1", "1"];
|
|
765
|
+
readonly bp: 1;
|
|
758
766
|
};
|
|
759
767
|
readonly ovw: {
|
|
760
768
|
readonly prop: "overflowWrap";
|
|
@@ -784,13 +792,7 @@ declare const _default: {
|
|
|
784
792
|
};
|
|
785
793
|
readonly traits: {
|
|
786
794
|
readonly isContainer: "is--container";
|
|
787
|
-
readonly isWrapper:
|
|
788
|
-
readonly className: "is--wrapper";
|
|
789
|
-
readonly preset: readonly ["s", "l"];
|
|
790
|
-
readonly presetClass: "-contentSize";
|
|
791
|
-
readonly customVar: "--contentSize";
|
|
792
|
-
readonly tokenKey: "sz";
|
|
793
|
-
};
|
|
795
|
+
readonly isWrapper: "is--wrapper";
|
|
794
796
|
readonly isLayer: "is--layer";
|
|
795
797
|
readonly isBoxLink: "is--boxLink";
|
|
796
798
|
readonly isCoverLink: "is--coverLink";
|