lism-css 0.18.0 → 0.20.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 +38 -39
- package/config/defaults/tokens.ts +1 -1
- package/dist/config/default-config.d.ts +39 -38
- package/dist/config/defaults/props.d.ts +38 -37
- package/dist/config/defaults/props.js +38 -39
- package/dist/config/defaults/tokens.d.ts +1 -1
- package/dist/config/defaults/tokens.js +1 -1
- package/dist/config/index.d.ts +79 -77
- 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/lib/getLismProps.d.ts +1 -1
- package/dist/lib/getLismProps.js +24 -23
- package/dist/lib/types/PropValueTypes.d.ts +14 -10
- package/dist/lib/warnUnsupportedBp.d.ts +10 -0
- package/dist/lib/warnUnsupportedBp.js +20 -0
- package/package.json +1 -1
- package/src/scss/_prop-config.scss +18 -66
- package/src/scss/base/_html.scss +7 -2
- package/src/scss/base/set/_revert.scss +1 -1
- 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 +3 -6
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'] },
|
|
@@ -96,7 +96,7 @@ export default {
|
|
|
96
96
|
'max-bsz': { prop: 'maxBlockSize', token: 'sz' },
|
|
97
97
|
|
|
98
98
|
// bg
|
|
99
|
-
bg: { prop: 'background', bp:
|
|
99
|
+
bg: { prop: 'background', bp: 0 },
|
|
100
100
|
bgi: { prop: 'backgroundImage' },
|
|
101
101
|
bgr: { prop: 'backgroundRepeat', presets: ['no-repeat'] },
|
|
102
102
|
bgp: { prop: 'backgroundPosition', presets: ['center'] },
|
|
@@ -139,10 +139,10 @@ export default {
|
|
|
139
139
|
bdw: { isVar: 1, bp: 1 }, // --bdw のみ
|
|
140
140
|
'bd-x': { prop: 'borderInline' },
|
|
141
141
|
'bd-y': { prop: 'borderBlock' },
|
|
142
|
-
'bd-
|
|
143
|
-
'bd-
|
|
144
|
-
'bd-
|
|
145
|
-
'bd-
|
|
142
|
+
'bd-s': { prop: 'borderInlineStart' },
|
|
143
|
+
'bd-e': { prop: 'borderInlineEnd' },
|
|
144
|
+
'bd-bs': { prop: 'borderBlockStart' },
|
|
145
|
+
'bd-be': { prop: 'borderBlockEnd' },
|
|
146
146
|
'bd-t': { prop: 'borderTop' },
|
|
147
147
|
'bd-b': { prop: 'borderBottom' },
|
|
148
148
|
'bd-l': { prop: 'borderLeft' },
|
|
@@ -180,10 +180,10 @@ export default {
|
|
|
180
180
|
i: { prop: 'inset', utils: { 0: '0%' }, token: 'space' },
|
|
181
181
|
'i-x': { prop: 'insetInline', token: 'space' },
|
|
182
182
|
'i-y': { prop: 'insetBlock', token: 'space' },
|
|
183
|
-
'i-
|
|
184
|
-
'i-
|
|
185
|
-
'i-
|
|
186
|
-
'i-
|
|
183
|
+
'i-s': { prop: 'insetInlineStart', token: 'space' },
|
|
184
|
+
'i-e': { prop: 'insetInlineEnd', token: 'space' },
|
|
185
|
+
'i-bs': { prop: 'insetBlockStart', token: 'space' },
|
|
186
|
+
'i-be': { prop: 'insetBlockEnd', token: 'space' },
|
|
187
187
|
|
|
188
188
|
// space
|
|
189
189
|
p: {
|
|
@@ -196,14 +196,14 @@ export default {
|
|
|
196
196
|
},
|
|
197
197
|
px: { prop: 'paddingInline', presets: ['0'], token: 'space', tokenClass: 1, bp: 1 },
|
|
198
198
|
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:
|
|
199
|
+
ps: { prop: 'paddingInlineStart', token: 'space', bp: 1 },
|
|
200
|
+
pe: { prop: 'paddingInlineEnd', token: 'space', bp: 1 },
|
|
201
|
+
pbs: { prop: 'paddingBlockStart', token: 'space', bp: 1 },
|
|
202
|
+
pbe: { prop: 'paddingBlockEnd', token: 'space', bp: 1 },
|
|
203
|
+
pl: { prop: 'paddingLeft', token: 'space', bp: 0 },
|
|
204
|
+
pr: { prop: 'paddingRight', token: 'space', bp: 0 },
|
|
205
|
+
pt: { prop: 'paddingTop', token: 'space', bp: 0 },
|
|
206
|
+
pb: { prop: 'paddingBottom', token: 'space', bp: 0 },
|
|
207
207
|
m: {
|
|
208
208
|
prop: 'margin',
|
|
209
209
|
presets: ['auto', '0'],
|
|
@@ -214,14 +214,14 @@ export default {
|
|
|
214
214
|
},
|
|
215
215
|
mx: { prop: 'marginInline', presets: ['auto', '0'], token: 'space', tokenClass: 1, bp: 1 },
|
|
216
216
|
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:
|
|
217
|
+
ms: { prop: 'marginInlineStart', presets: ['auto'], token: 'space', bp: 1 },
|
|
218
|
+
me: { prop: 'marginInlineEnd', presets: ['auto'], token: 'space', bp: 1 },
|
|
219
|
+
mbs: { prop: 'marginBlockStart', token: 'space', bp: 1, presets: ['auto', '0'], tokenClass: 1 },
|
|
220
|
+
mbe: { prop: 'marginBlockEnd', presets: ['auto'], token: 'space', bp: 1 },
|
|
221
|
+
ml: { prop: 'marginLeft', token: 'space', bp: 0 },
|
|
222
|
+
mr: { prop: 'marginRight', token: 'space', bp: 0 },
|
|
223
|
+
mt: { prop: 'marginTop', token: 'space', bp: 0 },
|
|
224
|
+
mb: { prop: 'marginBottom', token: 'space', bp: 0 },
|
|
225
225
|
|
|
226
226
|
g: {
|
|
227
227
|
prop: 'gap',
|
|
@@ -229,11 +229,11 @@ export default {
|
|
|
229
229
|
exUtility: { inherit: { gap: 'inherit' } },
|
|
230
230
|
token: 'space',
|
|
231
231
|
tokenClass: 1,
|
|
232
|
-
bp:
|
|
232
|
+
bp: 'lg',
|
|
233
233
|
},
|
|
234
|
-
cg: { prop: 'columnGap', token: 'space', bp:
|
|
235
|
-
rg: { prop: 'rowGap', token: 'space', bp:
|
|
236
|
-
cols: { isVar: 1, bp:
|
|
234
|
+
cg: { prop: 'columnGap', token: 'space', bp: 0 },
|
|
235
|
+
rg: { prop: 'rowGap', token: 'space', bp: 0 },
|
|
236
|
+
cols: { isVar: 1, bp: 'lg' },
|
|
237
237
|
rows: { isVar: 1, bp: 1 },
|
|
238
238
|
|
|
239
239
|
// flex
|
|
@@ -251,26 +251,25 @@ export default {
|
|
|
251
251
|
prop: 'gridTemplate',
|
|
252
252
|
bp: 1,
|
|
253
253
|
},
|
|
254
|
-
gta: { prop: 'gridTemplateAreas', bp:
|
|
254
|
+
gta: { prop: 'gridTemplateAreas', bp: 'lg' },
|
|
255
255
|
gtc: {
|
|
256
256
|
prop: 'gridTemplateColumns',
|
|
257
257
|
presets: ['subgrid'],
|
|
258
|
-
bp:
|
|
258
|
+
bp: 'lg',
|
|
259
259
|
},
|
|
260
260
|
gtr: {
|
|
261
261
|
prop: 'gridTemplateRows',
|
|
262
262
|
presets: ['subgrid'],
|
|
263
|
-
|
|
264
|
-
bp: 1,
|
|
263
|
+
bp: 'lg',
|
|
265
264
|
},
|
|
266
265
|
gaf: { prop: 'gridAutoFlow', presets: ['row', 'column'], bp: 1 }, //dense
|
|
267
266
|
gac: { prop: 'gridAutoColumns' },
|
|
268
267
|
gar: { prop: 'gridAutoRows' },
|
|
269
268
|
|
|
270
269
|
// 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:
|
|
270
|
+
ga: { prop: 'gridArea', utils: { '1/1': '1 / 1' }, bp: 'lg' },
|
|
271
|
+
gc: { prop: 'gridColumn', utils: { '1/-1': '1 / -1' }, bp: 'lg' },
|
|
272
|
+
gr: { prop: 'gridRow', utils: { '1/-1': '1 / -1' }, bp: 'lg' },
|
|
274
273
|
gcs: { prop: 'gridColumnStart' },
|
|
275
274
|
gce: { prop: 'gridColumnEnd' },
|
|
276
275
|
grs: { prop: 'gridRowStart' },
|
|
@@ -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: '--',
|
|
@@ -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";
|
|
@@ -200,7 +201,7 @@ declare const _default: {
|
|
|
200
201
|
};
|
|
201
202
|
readonly bg: {
|
|
202
203
|
readonly prop: "background";
|
|
203
|
-
readonly bp:
|
|
204
|
+
readonly bp: 0;
|
|
204
205
|
};
|
|
205
206
|
readonly bgi: {
|
|
206
207
|
readonly prop: "backgroundImage";
|
|
@@ -269,16 +270,16 @@ declare const _default: {
|
|
|
269
270
|
readonly 'bd-y': {
|
|
270
271
|
readonly prop: "borderBlock";
|
|
271
272
|
};
|
|
272
|
-
readonly 'bd-
|
|
273
|
+
readonly 'bd-s': {
|
|
273
274
|
readonly prop: "borderInlineStart";
|
|
274
275
|
};
|
|
275
|
-
readonly 'bd-
|
|
276
|
+
readonly 'bd-e': {
|
|
276
277
|
readonly prop: "borderInlineEnd";
|
|
277
278
|
};
|
|
278
|
-
readonly 'bd-
|
|
279
|
+
readonly 'bd-bs': {
|
|
279
280
|
readonly prop: "borderBlockStart";
|
|
280
281
|
};
|
|
281
|
-
readonly 'bd-
|
|
282
|
+
readonly 'bd-be': {
|
|
282
283
|
readonly prop: "borderBlockEnd";
|
|
283
284
|
};
|
|
284
285
|
readonly 'bd-t': {
|
|
@@ -397,19 +398,19 @@ declare const _default: {
|
|
|
397
398
|
readonly prop: "insetBlock";
|
|
398
399
|
readonly token: "space";
|
|
399
400
|
};
|
|
400
|
-
readonly 'i-
|
|
401
|
+
readonly 'i-s': {
|
|
401
402
|
readonly prop: "insetInlineStart";
|
|
402
403
|
readonly token: "space";
|
|
403
404
|
};
|
|
404
|
-
readonly 'i-
|
|
405
|
+
readonly 'i-e': {
|
|
405
406
|
readonly prop: "insetInlineEnd";
|
|
406
407
|
readonly token: "space";
|
|
407
408
|
};
|
|
408
|
-
readonly 'i-
|
|
409
|
+
readonly 'i-bs': {
|
|
409
410
|
readonly prop: "insetBlockStart";
|
|
410
411
|
readonly token: "space";
|
|
411
412
|
};
|
|
412
|
-
readonly 'i-
|
|
413
|
+
readonly 'i-be': {
|
|
413
414
|
readonly prop: "insetBlockEnd";
|
|
414
415
|
readonly token: "space";
|
|
415
416
|
};
|
|
@@ -435,22 +436,22 @@ declare const _default: {
|
|
|
435
436
|
readonly tokenClass: 1;
|
|
436
437
|
readonly bp: 1;
|
|
437
438
|
};
|
|
438
|
-
readonly
|
|
439
|
+
readonly ps: {
|
|
439
440
|
readonly prop: "paddingInlineStart";
|
|
440
441
|
readonly token: "space";
|
|
441
442
|
readonly bp: 1;
|
|
442
443
|
};
|
|
443
|
-
readonly
|
|
444
|
+
readonly pe: {
|
|
444
445
|
readonly prop: "paddingInlineEnd";
|
|
445
446
|
readonly token: "space";
|
|
446
447
|
readonly bp: 1;
|
|
447
448
|
};
|
|
448
|
-
readonly
|
|
449
|
+
readonly pbs: {
|
|
449
450
|
readonly prop: "paddingBlockStart";
|
|
450
451
|
readonly token: "space";
|
|
451
452
|
readonly bp: 1;
|
|
452
453
|
};
|
|
453
|
-
readonly
|
|
454
|
+
readonly pbe: {
|
|
454
455
|
readonly prop: "paddingBlockEnd";
|
|
455
456
|
readonly token: "space";
|
|
456
457
|
readonly bp: 1;
|
|
@@ -458,22 +459,22 @@ declare const _default: {
|
|
|
458
459
|
readonly pl: {
|
|
459
460
|
readonly prop: "paddingLeft";
|
|
460
461
|
readonly token: "space";
|
|
461
|
-
readonly bp:
|
|
462
|
+
readonly bp: 0;
|
|
462
463
|
};
|
|
463
464
|
readonly pr: {
|
|
464
465
|
readonly prop: "paddingRight";
|
|
465
466
|
readonly token: "space";
|
|
466
|
-
readonly bp:
|
|
467
|
+
readonly bp: 0;
|
|
467
468
|
};
|
|
468
469
|
readonly pt: {
|
|
469
470
|
readonly prop: "paddingTop";
|
|
470
471
|
readonly token: "space";
|
|
471
|
-
readonly bp:
|
|
472
|
+
readonly bp: 0;
|
|
472
473
|
};
|
|
473
474
|
readonly pb: {
|
|
474
475
|
readonly prop: "paddingBottom";
|
|
475
476
|
readonly token: "space";
|
|
476
|
-
readonly bp:
|
|
477
|
+
readonly bp: 0;
|
|
477
478
|
};
|
|
478
479
|
readonly m: {
|
|
479
480
|
readonly prop: "margin";
|
|
@@ -497,26 +498,26 @@ declare const _default: {
|
|
|
497
498
|
readonly tokenClass: 1;
|
|
498
499
|
readonly bp: 1;
|
|
499
500
|
};
|
|
500
|
-
readonly
|
|
501
|
+
readonly ms: {
|
|
501
502
|
readonly prop: "marginInlineStart";
|
|
502
503
|
readonly presets: readonly ["auto"];
|
|
503
504
|
readonly token: "space";
|
|
504
505
|
readonly bp: 1;
|
|
505
506
|
};
|
|
506
|
-
readonly
|
|
507
|
+
readonly me: {
|
|
507
508
|
readonly prop: "marginInlineEnd";
|
|
508
509
|
readonly presets: readonly ["auto"];
|
|
509
510
|
readonly token: "space";
|
|
510
511
|
readonly bp: 1;
|
|
511
512
|
};
|
|
512
|
-
readonly
|
|
513
|
+
readonly mbs: {
|
|
513
514
|
readonly prop: "marginBlockStart";
|
|
514
515
|
readonly token: "space";
|
|
515
516
|
readonly bp: 1;
|
|
516
517
|
readonly presets: readonly ["auto", "0"];
|
|
517
518
|
readonly tokenClass: 1;
|
|
518
519
|
};
|
|
519
|
-
readonly
|
|
520
|
+
readonly mbe: {
|
|
520
521
|
readonly prop: "marginBlockEnd";
|
|
521
522
|
readonly presets: readonly ["auto"];
|
|
522
523
|
readonly token: "space";
|
|
@@ -525,22 +526,22 @@ declare const _default: {
|
|
|
525
526
|
readonly ml: {
|
|
526
527
|
readonly prop: "marginLeft";
|
|
527
528
|
readonly token: "space";
|
|
528
|
-
readonly bp:
|
|
529
|
+
readonly bp: 0;
|
|
529
530
|
};
|
|
530
531
|
readonly mr: {
|
|
531
532
|
readonly prop: "marginRight";
|
|
532
533
|
readonly token: "space";
|
|
533
|
-
readonly bp:
|
|
534
|
+
readonly bp: 0;
|
|
534
535
|
};
|
|
535
536
|
readonly mt: {
|
|
536
537
|
readonly prop: "marginTop";
|
|
537
538
|
readonly token: "space";
|
|
538
|
-
readonly bp:
|
|
539
|
+
readonly bp: 0;
|
|
539
540
|
};
|
|
540
541
|
readonly mb: {
|
|
541
542
|
readonly prop: "marginBottom";
|
|
542
543
|
readonly token: "space";
|
|
543
|
-
readonly bp:
|
|
544
|
+
readonly bp: 0;
|
|
544
545
|
};
|
|
545
546
|
readonly g: {
|
|
546
547
|
readonly prop: "gap";
|
|
@@ -552,21 +553,21 @@ declare const _default: {
|
|
|
552
553
|
};
|
|
553
554
|
readonly token: "space";
|
|
554
555
|
readonly tokenClass: 1;
|
|
555
|
-
readonly bp:
|
|
556
|
+
readonly bp: "lg";
|
|
556
557
|
};
|
|
557
558
|
readonly cg: {
|
|
558
559
|
readonly prop: "columnGap";
|
|
559
560
|
readonly token: "space";
|
|
560
|
-
readonly bp:
|
|
561
|
+
readonly bp: 0;
|
|
561
562
|
};
|
|
562
563
|
readonly rg: {
|
|
563
564
|
readonly prop: "rowGap";
|
|
564
565
|
readonly token: "space";
|
|
565
|
-
readonly bp:
|
|
566
|
+
readonly bp: 0;
|
|
566
567
|
};
|
|
567
568
|
readonly cols: {
|
|
568
569
|
readonly isVar: 1;
|
|
569
|
-
readonly bp:
|
|
570
|
+
readonly bp: "lg";
|
|
570
571
|
};
|
|
571
572
|
readonly rows: {
|
|
572
573
|
readonly isVar: 1;
|
|
@@ -608,17 +609,17 @@ declare const _default: {
|
|
|
608
609
|
};
|
|
609
610
|
readonly gta: {
|
|
610
611
|
readonly prop: "gridTemplateAreas";
|
|
611
|
-
readonly bp:
|
|
612
|
+
readonly bp: "lg";
|
|
612
613
|
};
|
|
613
614
|
readonly gtc: {
|
|
614
615
|
readonly prop: "gridTemplateColumns";
|
|
615
616
|
readonly presets: readonly ["subgrid"];
|
|
616
|
-
readonly bp:
|
|
617
|
+
readonly bp: "lg";
|
|
617
618
|
};
|
|
618
619
|
readonly gtr: {
|
|
619
620
|
readonly prop: "gridTemplateRows";
|
|
620
621
|
readonly presets: readonly ["subgrid"];
|
|
621
|
-
readonly bp:
|
|
622
|
+
readonly bp: "lg";
|
|
622
623
|
};
|
|
623
624
|
readonly gaf: {
|
|
624
625
|
readonly prop: "gridAutoFlow";
|
|
@@ -636,21 +637,21 @@ declare const _default: {
|
|
|
636
637
|
readonly utils: {
|
|
637
638
|
readonly '1/1': "1 / 1";
|
|
638
639
|
};
|
|
639
|
-
readonly bp:
|
|
640
|
+
readonly bp: "lg";
|
|
640
641
|
};
|
|
641
642
|
readonly gc: {
|
|
642
643
|
readonly prop: "gridColumn";
|
|
643
644
|
readonly utils: {
|
|
644
645
|
readonly '1/-1': "1 / -1";
|
|
645
646
|
};
|
|
646
|
-
readonly bp:
|
|
647
|
+
readonly bp: "lg";
|
|
647
648
|
};
|
|
648
649
|
readonly gr: {
|
|
649
650
|
readonly prop: "gridRow";
|
|
650
651
|
readonly utils: {
|
|
651
652
|
readonly '1/-1': "1 / -1";
|
|
652
653
|
};
|
|
653
|
-
readonly bp:
|
|
654
|
+
readonly bp: "lg";
|
|
654
655
|
};
|
|
655
656
|
readonly gcs: {
|
|
656
657
|
readonly prop: "gridColumnStart";
|