lism-css 0.22.2 → 0.23.0-beta.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/config/default-config.d.ts +134 -49
- package/dist/config/default-config.js +8 -6
- package/dist/config/defaults/breakpoints.d.ts +15 -0
- package/dist/config/defaults/breakpoints.js +10 -0
- package/dist/config/defaults/props.d.ts +18 -30
- package/dist/config/defaults/props.js +30 -29
- package/dist/config/defaults/token-scope.d.ts +9 -0
- package/dist/config/defaults/token-scope.js +7 -0
- package/dist/config/defaults/token-var-prefix.d.ts +11 -0
- package/dist/config/defaults/token-var-prefix.js +11 -0
- package/dist/config/defaults/tokens.d.ts +118 -21
- package/dist/config/defaults/tokens.js +103 -24
- package/dist/config/index.d.ts +279 -105
- package/dist/config/index.js +18 -15
- package/dist/config/presets/props-full.d.ts +20 -0
- package/dist/config/presets/props-full.js +28 -0
- package/dist/css/base/set.css +1 -1
- package/dist/css/base.css +1 -1
- package/dist/css/full.css +1 -0
- package/dist/css/full_no_layer.css +1 -0
- package/dist/css/main.css +1 -1
- package/dist/css/main_no_layer.css +1 -1
- package/dist/css/props.css +1 -1
- package/dist/index.d.ts +4 -0
- package/dist/index.js +1 -0
- package/dist/lib/getBpData.d.ts +2 -2
- package/dist/lib/getBpData.js +7 -7
- package/dist/lib/getLismProps.d.ts +5 -3
- package/dist/lib/getLismProps.js +59 -54
- package/dist/lib/getMaybeTokenValue.d.ts +1 -7
- package/dist/lib/getMaybeTokenValue.js +10 -22
- package/dist/lib/getTokenVarName.d.ts +13 -0
- package/dist/lib/getTokenVarName.js +8 -0
- package/dist/lib/getTokenVarName.test.d.ts +1 -0
- package/dist/lib/isTokenValue.js +11 -22
- package/dist/lib/types/CustomPropRegistry.d.ts +9 -0
- package/dist/lib/types/CustomTraitRegistry.d.ts +9 -0
- package/dist/lib/types/FullModeRegistry.d.ts +26 -0
- package/dist/lib/types/PropValueTypes.d.ts +45 -13
- package/dist/lib/types/ResponsiveProps.d.ts +57 -13
- package/dist/lib/types/ResponsiveProps.module-augmentation.test.d.ts +1 -0
- package/dist/lib/warnUnsupportedBp.js +5 -5
- package/dist/scss/auto_output.test.d.ts +1 -0
- package/package.json +23 -33
- package/src/scss/_auto_output.scss +54 -42
- package/src/scss/_prop-config-full.gen.scss +1316 -0
- package/src/scss/{_prop-config.scss → _prop-config.gen.scss} +36 -13
- package/src/scss/_setting.scss +6 -11
- package/src/scss/auto_output.test.ts +91 -0
- package/src/scss/base/index.scss +1 -3
- package/src/scss/base/set/index.scss +5 -0
- package/src/scss/base/tokens/_tokens.gen.scss +69 -0
- package/src/scss/base/tokens/_tokens.scss +31 -30
- package/src/scss/full.scss +12 -0
- package/src/scss/full_no_layer.scss +32 -0
- package/src/scss/props/index.scss +0 -1
- package/src/scss/trait/is/_wrapper.scss +1 -1
- package/bin/__build-css.cjs +0 -92
- package/bin/build-config.js +0 -155
- package/bin/build-css.js +0 -90
- package/bin/cli.mjs +0 -79
- package/bin/script-build-css.js +0 -6
- package/src/scss/base/tokens/_shadow.scss +0 -23
- package/src/scss/base/tokens/_space.scss +0 -30
- package/src/scss/base/tokens/_typography.scss +0 -69
- package/src/scss/props/_lh.scss +0 -16
|
@@ -1,30 +1,119 @@
|
|
|
1
1
|
declare const _default: {
|
|
2
2
|
readonly tokens: {
|
|
3
|
-
readonly
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
3
|
+
readonly color: {
|
|
4
|
+
readonly base: "-";
|
|
5
|
+
readonly 'base-2': "-";
|
|
6
|
+
readonly text: "-";
|
|
7
|
+
readonly 'text-2': "-";
|
|
8
|
+
readonly divider: "-";
|
|
9
|
+
readonly link: "-";
|
|
10
|
+
readonly brand: "-";
|
|
11
|
+
readonly accent: "-";
|
|
12
|
+
readonly neutral: "-";
|
|
13
|
+
};
|
|
14
|
+
readonly palette: {
|
|
15
|
+
readonly red: "-";
|
|
16
|
+
readonly blue: "-";
|
|
17
|
+
readonly green: "-";
|
|
18
|
+
readonly yellow: "-";
|
|
19
|
+
readonly purple: "-";
|
|
20
|
+
readonly orange: "-";
|
|
21
|
+
readonly pink: "-";
|
|
22
|
+
readonly gray: "-";
|
|
23
|
+
readonly white: "#fff";
|
|
24
|
+
readonly black: "#000";
|
|
25
|
+
readonly keycolor: "-";
|
|
26
|
+
};
|
|
27
|
+
readonly fz: {
|
|
28
|
+
readonly base: "1rem";
|
|
29
|
+
readonly '5xl': "calc(1em * var(--fz-mol) / (var(--fz-mol) - 6))";
|
|
30
|
+
readonly '4xl': "calc(1em * var(--fz-mol) / (var(--fz-mol) - 5))";
|
|
31
|
+
readonly '3xl': "calc(1em * var(--fz-mol) / (var(--fz-mol) - 4))";
|
|
32
|
+
readonly '2xl': "calc(1em * var(--fz-mol) / (var(--fz-mol) - 3))";
|
|
33
|
+
readonly xl: "calc(1em * var(--fz-mol) / (var(--fz-mol) - 2))";
|
|
34
|
+
readonly l: "calc(1em * var(--fz-mol) / (var(--fz-mol) - 1))";
|
|
35
|
+
readonly m: "1em";
|
|
36
|
+
readonly s: "calc(1em * var(--fz-mol) / (var(--fz-mol) + 1))";
|
|
37
|
+
readonly xs: "calc(1em * var(--fz-mol) / (var(--fz-mol) + 2))";
|
|
38
|
+
readonly '2xs': "calc(1em * var(--fz-mol) / (var(--fz-mol) + 3))";
|
|
39
|
+
};
|
|
40
|
+
readonly lh: {
|
|
41
|
+
readonly base: "-";
|
|
42
|
+
readonly xs: "-";
|
|
43
|
+
readonly s: "-";
|
|
44
|
+
readonly l: "-";
|
|
45
|
+
};
|
|
46
|
+
readonly hl: {
|
|
47
|
+
readonly base: "calc(var(--hl-unit) * 3)";
|
|
48
|
+
readonly xs: "var(--hl-unit)";
|
|
49
|
+
readonly s: "calc(var(--hl-unit) * 2)";
|
|
50
|
+
readonly l: "calc(var(--hl-unit) * 4)";
|
|
51
|
+
};
|
|
52
|
+
readonly lts: {
|
|
53
|
+
readonly base: "normal";
|
|
54
|
+
readonly s: "-0.025em";
|
|
55
|
+
readonly l: "0.05em";
|
|
56
|
+
readonly xl: "0.1em";
|
|
57
|
+
};
|
|
58
|
+
readonly ff: {
|
|
59
|
+
readonly base: "-apple-system, 'BlinkMacSystemFont', 'Hiragino Sans', sans-serif, 'Segoe UI Emoji'";
|
|
60
|
+
readonly accent: "'Garamond', 'Baskerville', 'Times New Roman', serif";
|
|
61
|
+
readonly mono: "ui-monospace, 'SFMono-Regular', Menlo, Consolas, monospace";
|
|
62
|
+
};
|
|
63
|
+
readonly fw: {
|
|
64
|
+
readonly light: "300";
|
|
65
|
+
readonly normal: "400";
|
|
66
|
+
readonly bold: "600";
|
|
67
|
+
};
|
|
68
|
+
readonly o: {
|
|
69
|
+
readonly mp: "0.9";
|
|
70
|
+
readonly p: "0.75";
|
|
71
|
+
readonly pp: "0.5";
|
|
72
|
+
readonly ppp: "0.25";
|
|
73
|
+
};
|
|
74
|
+
readonly bdrs: {
|
|
75
|
+
readonly '10': "0.25rem";
|
|
76
|
+
readonly '20': "0.5rem";
|
|
77
|
+
readonly '30': "1rem";
|
|
78
|
+
readonly '40': "1.5rem";
|
|
79
|
+
readonly '99': "99rem";
|
|
80
|
+
readonly inner: "-";
|
|
81
|
+
};
|
|
82
|
+
readonly bxsh: {
|
|
83
|
+
readonly '10': "var(--shsz--10) var(--shc)";
|
|
84
|
+
readonly '20': "var(--shsz--20) var(--shc)";
|
|
85
|
+
readonly '30': "var(--shsz--30) var(--shc)";
|
|
86
|
+
readonly '40': "var(--shsz--40) var(--shc)";
|
|
87
|
+
readonly '50': "var(--shsz--50) var(--shc)";
|
|
88
|
+
};
|
|
14
89
|
readonly space: {
|
|
15
|
-
readonly
|
|
16
|
-
readonly
|
|
90
|
+
readonly '5': "calc(var(--s-unit) * 0.5)";
|
|
91
|
+
readonly '10': "var(--s-unit)";
|
|
92
|
+
readonly '15': "calc(var(--s-unit) * 1.5)";
|
|
93
|
+
readonly '20': "calc(var(--s-unit) * 2)";
|
|
94
|
+
readonly '25': "calc(var(--s-unit) * 2.5)";
|
|
95
|
+
readonly '30': "calc(var(--s-unit) * 3)";
|
|
96
|
+
readonly '35': "calc(var(--s-unit) * 4)";
|
|
97
|
+
readonly '40': "calc(var(--s-unit) * 5)";
|
|
98
|
+
readonly '50': "calc(var(--s-unit) * 8)";
|
|
99
|
+
readonly '60': "calc(var(--s-unit) * 13)";
|
|
100
|
+
readonly '70': "calc(var(--s-unit) * 21)";
|
|
101
|
+
readonly '80': "calc(var(--s-unit) * 34)";
|
|
102
|
+
};
|
|
103
|
+
readonly flow: {
|
|
104
|
+
readonly s: "-";
|
|
105
|
+
readonly l: "-";
|
|
17
106
|
};
|
|
18
|
-
readonly
|
|
19
|
-
readonly
|
|
20
|
-
readonly
|
|
107
|
+
readonly sz: {
|
|
108
|
+
readonly xs: "400px";
|
|
109
|
+
readonly s: "640px";
|
|
110
|
+
readonly m: "880px";
|
|
111
|
+
readonly l: "1200px";
|
|
112
|
+
readonly xl: "1600px";
|
|
21
113
|
};
|
|
22
|
-
readonly
|
|
23
|
-
readonly
|
|
24
|
-
readonly values: readonly ["red", "blue", "green", "yellow", "purple", "orange", "pink", "gray", "white", "black", "keycolor"];
|
|
114
|
+
readonly ar: {
|
|
115
|
+
readonly og: "1.91/1";
|
|
25
116
|
};
|
|
26
|
-
readonly writing: readonly ["vertical"];
|
|
27
|
-
readonly flow: readonly ["s", "l"];
|
|
28
117
|
};
|
|
29
118
|
readonly props: {
|
|
30
119
|
readonly f: {
|
|
@@ -56,25 +145,25 @@ declare const _default: {
|
|
|
56
145
|
};
|
|
57
146
|
};
|
|
58
147
|
readonly lh: {
|
|
59
|
-
readonly prop: "
|
|
60
|
-
readonly
|
|
148
|
+
readonly prop: "--hl";
|
|
149
|
+
readonly isVar: 1;
|
|
61
150
|
readonly token: "hl";
|
|
62
|
-
readonly tokenClass:
|
|
63
|
-
readonly
|
|
64
|
-
readonly 1: "";
|
|
151
|
+
readonly tokenClass: 1;
|
|
152
|
+
readonly utils: {
|
|
153
|
+
readonly '1': "0px";
|
|
65
154
|
};
|
|
66
155
|
};
|
|
67
156
|
readonly hl: {
|
|
157
|
+
readonly prop: "--hl";
|
|
68
158
|
readonly isVar: 1;
|
|
69
159
|
readonly token: "hl";
|
|
70
|
-
readonly tokenClass:
|
|
71
|
-
readonly bp:
|
|
160
|
+
readonly tokenClass: 1;
|
|
161
|
+
readonly bp: 1;
|
|
72
162
|
};
|
|
73
163
|
readonly lts: {
|
|
74
164
|
readonly prop: "letterSpacing";
|
|
75
165
|
readonly token: "lts";
|
|
76
166
|
readonly tokenClass: 1;
|
|
77
|
-
readonly bp: 0;
|
|
78
167
|
};
|
|
79
168
|
readonly ta: {
|
|
80
169
|
readonly prop: "textAlign";
|
|
@@ -96,7 +185,7 @@ declare const _default: {
|
|
|
96
185
|
readonly d: {
|
|
97
186
|
readonly prop: "display";
|
|
98
187
|
readonly presets: readonly ["none", "block", "flex", "inline-flex", "grid", "inline-grid", "inline", "inline-block"];
|
|
99
|
-
readonly bp:
|
|
188
|
+
readonly bp: 1;
|
|
100
189
|
};
|
|
101
190
|
readonly o: {
|
|
102
191
|
readonly prop: "opacity";
|
|
@@ -206,7 +295,6 @@ declare const _default: {
|
|
|
206
295
|
};
|
|
207
296
|
readonly bg: {
|
|
208
297
|
readonly prop: "background";
|
|
209
|
-
readonly bp: 0;
|
|
210
298
|
};
|
|
211
299
|
readonly bgi: {
|
|
212
300
|
readonly prop: "backgroundImage";
|
|
@@ -465,22 +553,18 @@ declare const _default: {
|
|
|
465
553
|
readonly pl: {
|
|
466
554
|
readonly prop: "paddingLeft";
|
|
467
555
|
readonly token: "space";
|
|
468
|
-
readonly bp: 0;
|
|
469
556
|
};
|
|
470
557
|
readonly pr: {
|
|
471
558
|
readonly prop: "paddingRight";
|
|
472
559
|
readonly token: "space";
|
|
473
|
-
readonly bp: 0;
|
|
474
560
|
};
|
|
475
561
|
readonly pt: {
|
|
476
562
|
readonly prop: "paddingTop";
|
|
477
563
|
readonly token: "space";
|
|
478
|
-
readonly bp: 0;
|
|
479
564
|
};
|
|
480
565
|
readonly pb: {
|
|
481
566
|
readonly prop: "paddingBottom";
|
|
482
567
|
readonly token: "space";
|
|
483
|
-
readonly bp: 0;
|
|
484
568
|
};
|
|
485
569
|
readonly m: {
|
|
486
570
|
readonly prop: "margin";
|
|
@@ -532,22 +616,18 @@ declare const _default: {
|
|
|
532
616
|
readonly ml: {
|
|
533
617
|
readonly prop: "marginLeft";
|
|
534
618
|
readonly token: "space";
|
|
535
|
-
readonly bp: 0;
|
|
536
619
|
};
|
|
537
620
|
readonly mr: {
|
|
538
621
|
readonly prop: "marginRight";
|
|
539
622
|
readonly token: "space";
|
|
540
|
-
readonly bp: 0;
|
|
541
623
|
};
|
|
542
624
|
readonly mt: {
|
|
543
625
|
readonly prop: "marginTop";
|
|
544
626
|
readonly token: "space";
|
|
545
|
-
readonly bp: 0;
|
|
546
627
|
};
|
|
547
628
|
readonly mb: {
|
|
548
629
|
readonly prop: "marginBottom";
|
|
549
630
|
readonly token: "space";
|
|
550
|
-
readonly bp: 0;
|
|
551
631
|
};
|
|
552
632
|
readonly g: {
|
|
553
633
|
readonly prop: "gap";
|
|
@@ -559,21 +639,19 @@ declare const _default: {
|
|
|
559
639
|
};
|
|
560
640
|
readonly token: "space";
|
|
561
641
|
readonly tokenClass: 1;
|
|
562
|
-
readonly bp:
|
|
642
|
+
readonly bp: 1;
|
|
563
643
|
};
|
|
564
644
|
readonly cg: {
|
|
565
645
|
readonly prop: "columnGap";
|
|
566
646
|
readonly token: "space";
|
|
567
|
-
readonly bp: 0;
|
|
568
647
|
};
|
|
569
648
|
readonly rg: {
|
|
570
649
|
readonly prop: "rowGap";
|
|
571
650
|
readonly token: "space";
|
|
572
|
-
readonly bp: 0;
|
|
573
651
|
};
|
|
574
652
|
readonly cols: {
|
|
575
653
|
readonly isVar: 1;
|
|
576
|
-
readonly bp:
|
|
654
|
+
readonly bp: 1;
|
|
577
655
|
};
|
|
578
656
|
readonly rows: {
|
|
579
657
|
readonly isVar: 1;
|
|
@@ -615,17 +693,17 @@ declare const _default: {
|
|
|
615
693
|
};
|
|
616
694
|
readonly gta: {
|
|
617
695
|
readonly prop: "gridTemplateAreas";
|
|
618
|
-
readonly bp:
|
|
696
|
+
readonly bp: 1;
|
|
619
697
|
};
|
|
620
698
|
readonly gtc: {
|
|
621
699
|
readonly prop: "gridTemplateColumns";
|
|
622
700
|
readonly presets: readonly ["subgrid"];
|
|
623
|
-
readonly bp:
|
|
701
|
+
readonly bp: 1;
|
|
624
702
|
};
|
|
625
703
|
readonly gtr: {
|
|
626
704
|
readonly prop: "gridTemplateRows";
|
|
627
705
|
readonly presets: readonly ["subgrid"];
|
|
628
|
-
readonly bp:
|
|
706
|
+
readonly bp: 1;
|
|
629
707
|
};
|
|
630
708
|
readonly gaf: {
|
|
631
709
|
readonly prop: "gridAutoFlow";
|
|
@@ -643,21 +721,21 @@ declare const _default: {
|
|
|
643
721
|
readonly utils: {
|
|
644
722
|
readonly '1/1': "1 / 1";
|
|
645
723
|
};
|
|
646
|
-
readonly bp:
|
|
724
|
+
readonly bp: 1;
|
|
647
725
|
};
|
|
648
726
|
readonly gc: {
|
|
649
727
|
readonly prop: "gridColumn";
|
|
650
728
|
readonly utils: {
|
|
651
729
|
readonly '1/-1': "1 / -1";
|
|
652
730
|
};
|
|
653
|
-
readonly bp:
|
|
731
|
+
readonly bp: 1;
|
|
654
732
|
};
|
|
655
733
|
readonly gr: {
|
|
656
734
|
readonly prop: "gridRow";
|
|
657
735
|
readonly utils: {
|
|
658
736
|
readonly '1/-1': "1 / -1";
|
|
659
737
|
};
|
|
660
|
-
readonly bp:
|
|
738
|
+
readonly bp: 1;
|
|
661
739
|
};
|
|
662
740
|
readonly gcs: {
|
|
663
741
|
readonly prop: "gridColumnStart";
|
|
@@ -803,5 +881,12 @@ declare const _default: {
|
|
|
803
881
|
readonly hasSnap: "has--snap";
|
|
804
882
|
readonly hasMask: "has--mask";
|
|
805
883
|
};
|
|
884
|
+
readonly breakpoints: {
|
|
885
|
+
readonly xs: 0;
|
|
886
|
+
readonly sm: "480px";
|
|
887
|
+
readonly md: "800px";
|
|
888
|
+
readonly lg: "1120px";
|
|
889
|
+
readonly xl: 0;
|
|
890
|
+
};
|
|
806
891
|
};
|
|
807
892
|
export default _default;
|
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
import o from "./defaults/tokens.js";
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
|
|
2
|
+
import r from "./defaults/props.js";
|
|
3
|
+
import t from "./defaults/traits.js";
|
|
4
|
+
import m from "./defaults/breakpoints.js";
|
|
5
|
+
const a = {
|
|
5
6
|
tokens: o,
|
|
6
|
-
props:
|
|
7
|
-
traits:
|
|
7
|
+
props: r,
|
|
8
|
+
traits: t,
|
|
9
|
+
breakpoints: m
|
|
8
10
|
};
|
|
9
11
|
export {
|
|
10
|
-
|
|
12
|
+
a as default
|
|
11
13
|
};
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* ブレイクポイントのデフォルト定義
|
|
3
|
+
*
|
|
4
|
+
* 値 0 は「無効」を表し、`_query.scss` の bp-up / bp-down がクエリ出力をスキップする。
|
|
5
|
+
* xs / xl をあらかじめキーとして並べておくことで、lism.config.js の `breakpoints` で
|
|
6
|
+
* サイズを与えるだけ(差分上書き)で有効化でき、かつ正準順序(min-width カスケード順)を保つ。
|
|
7
|
+
*/
|
|
8
|
+
declare const BREAKPOINTS: {
|
|
9
|
+
readonly xs: 0;
|
|
10
|
+
readonly sm: "480px";
|
|
11
|
+
readonly md: "800px";
|
|
12
|
+
readonly lg: "1120px";
|
|
13
|
+
readonly xl: 0;
|
|
14
|
+
};
|
|
15
|
+
export default BREAKPOINTS;
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
/**
|
|
2
2
|
* isVar: 1 → クラス出力はせずstyle属性での変数出力のみ (--bdw, --keycolor など)
|
|
3
|
-
* bp: 0
|
|
3
|
+
* bp: 0(= bp 省略時のデフォルト)→ Prop-valユーティリティクラス化されなければ、style属性で出力するだけ。
|
|
4
4
|
* bp: 1 → .-prop と --prop の セットがベースにあり、.-prop_bp と .--prop_bp で ブレイクポイント指定できる。
|
|
5
5
|
* .-prop{property:var(--prop)} が基本で、ユーティリティクラスは .-prop:val{property:value} となる。
|
|
6
6
|
*
|
|
7
7
|
* ↓コンポーネント処理で使用される
|
|
8
8
|
* tokenClass: 1 → 対応するトークン値がそのまま全てユーティリティクラス化されるもの。
|
|
9
|
-
* 2 → ユーティリティクラスされ、内容は別途ファイルで記述するもの。
|
|
10
9
|
* shorthands: → コンポーネント側で短く書くための設定
|
|
11
10
|
*
|
|
12
11
|
* ↓SCSS出力で使用される
|
|
@@ -46,25 +45,25 @@ declare const _default: {
|
|
|
46
45
|
};
|
|
47
46
|
};
|
|
48
47
|
readonly lh: {
|
|
49
|
-
readonly prop: "
|
|
50
|
-
readonly
|
|
48
|
+
readonly prop: "--hl";
|
|
49
|
+
readonly isVar: 1;
|
|
51
50
|
readonly token: "hl";
|
|
52
|
-
readonly tokenClass:
|
|
53
|
-
readonly
|
|
54
|
-
readonly 1: "";
|
|
51
|
+
readonly tokenClass: 1;
|
|
52
|
+
readonly utils: {
|
|
53
|
+
readonly '1': "0px";
|
|
55
54
|
};
|
|
56
55
|
};
|
|
57
56
|
readonly hl: {
|
|
57
|
+
readonly prop: "--hl";
|
|
58
58
|
readonly isVar: 1;
|
|
59
59
|
readonly token: "hl";
|
|
60
|
-
readonly tokenClass:
|
|
61
|
-
readonly bp:
|
|
60
|
+
readonly tokenClass: 1;
|
|
61
|
+
readonly bp: 1;
|
|
62
62
|
};
|
|
63
63
|
readonly lts: {
|
|
64
64
|
readonly prop: "letterSpacing";
|
|
65
65
|
readonly token: "lts";
|
|
66
66
|
readonly tokenClass: 1;
|
|
67
|
-
readonly bp: 0;
|
|
68
67
|
};
|
|
69
68
|
readonly ta: {
|
|
70
69
|
readonly prop: "textAlign";
|
|
@@ -86,7 +85,7 @@ declare const _default: {
|
|
|
86
85
|
readonly d: {
|
|
87
86
|
readonly prop: "display";
|
|
88
87
|
readonly presets: readonly ["none", "block", "flex", "inline-flex", "grid", "inline-grid", "inline", "inline-block"];
|
|
89
|
-
readonly bp:
|
|
88
|
+
readonly bp: 1;
|
|
90
89
|
};
|
|
91
90
|
readonly o: {
|
|
92
91
|
readonly prop: "opacity";
|
|
@@ -196,7 +195,6 @@ declare const _default: {
|
|
|
196
195
|
};
|
|
197
196
|
readonly bg: {
|
|
198
197
|
readonly prop: "background";
|
|
199
|
-
readonly bp: 0;
|
|
200
198
|
};
|
|
201
199
|
readonly bgi: {
|
|
202
200
|
readonly prop: "backgroundImage";
|
|
@@ -455,22 +453,18 @@ declare const _default: {
|
|
|
455
453
|
readonly pl: {
|
|
456
454
|
readonly prop: "paddingLeft";
|
|
457
455
|
readonly token: "space";
|
|
458
|
-
readonly bp: 0;
|
|
459
456
|
};
|
|
460
457
|
readonly pr: {
|
|
461
458
|
readonly prop: "paddingRight";
|
|
462
459
|
readonly token: "space";
|
|
463
|
-
readonly bp: 0;
|
|
464
460
|
};
|
|
465
461
|
readonly pt: {
|
|
466
462
|
readonly prop: "paddingTop";
|
|
467
463
|
readonly token: "space";
|
|
468
|
-
readonly bp: 0;
|
|
469
464
|
};
|
|
470
465
|
readonly pb: {
|
|
471
466
|
readonly prop: "paddingBottom";
|
|
472
467
|
readonly token: "space";
|
|
473
|
-
readonly bp: 0;
|
|
474
468
|
};
|
|
475
469
|
readonly m: {
|
|
476
470
|
readonly prop: "margin";
|
|
@@ -522,22 +516,18 @@ declare const _default: {
|
|
|
522
516
|
readonly ml: {
|
|
523
517
|
readonly prop: "marginLeft";
|
|
524
518
|
readonly token: "space";
|
|
525
|
-
readonly bp: 0;
|
|
526
519
|
};
|
|
527
520
|
readonly mr: {
|
|
528
521
|
readonly prop: "marginRight";
|
|
529
522
|
readonly token: "space";
|
|
530
|
-
readonly bp: 0;
|
|
531
523
|
};
|
|
532
524
|
readonly mt: {
|
|
533
525
|
readonly prop: "marginTop";
|
|
534
526
|
readonly token: "space";
|
|
535
|
-
readonly bp: 0;
|
|
536
527
|
};
|
|
537
528
|
readonly mb: {
|
|
538
529
|
readonly prop: "marginBottom";
|
|
539
530
|
readonly token: "space";
|
|
540
|
-
readonly bp: 0;
|
|
541
531
|
};
|
|
542
532
|
readonly g: {
|
|
543
533
|
readonly prop: "gap";
|
|
@@ -549,21 +539,19 @@ declare const _default: {
|
|
|
549
539
|
};
|
|
550
540
|
readonly token: "space";
|
|
551
541
|
readonly tokenClass: 1;
|
|
552
|
-
readonly bp:
|
|
542
|
+
readonly bp: 1;
|
|
553
543
|
};
|
|
554
544
|
readonly cg: {
|
|
555
545
|
readonly prop: "columnGap";
|
|
556
546
|
readonly token: "space";
|
|
557
|
-
readonly bp: 0;
|
|
558
547
|
};
|
|
559
548
|
readonly rg: {
|
|
560
549
|
readonly prop: "rowGap";
|
|
561
550
|
readonly token: "space";
|
|
562
|
-
readonly bp: 0;
|
|
563
551
|
};
|
|
564
552
|
readonly cols: {
|
|
565
553
|
readonly isVar: 1;
|
|
566
|
-
readonly bp:
|
|
554
|
+
readonly bp: 1;
|
|
567
555
|
};
|
|
568
556
|
readonly rows: {
|
|
569
557
|
readonly isVar: 1;
|
|
@@ -605,17 +593,17 @@ declare const _default: {
|
|
|
605
593
|
};
|
|
606
594
|
readonly gta: {
|
|
607
595
|
readonly prop: "gridTemplateAreas";
|
|
608
|
-
readonly bp:
|
|
596
|
+
readonly bp: 1;
|
|
609
597
|
};
|
|
610
598
|
readonly gtc: {
|
|
611
599
|
readonly prop: "gridTemplateColumns";
|
|
612
600
|
readonly presets: readonly ["subgrid"];
|
|
613
|
-
readonly bp:
|
|
601
|
+
readonly bp: 1;
|
|
614
602
|
};
|
|
615
603
|
readonly gtr: {
|
|
616
604
|
readonly prop: "gridTemplateRows";
|
|
617
605
|
readonly presets: readonly ["subgrid"];
|
|
618
|
-
readonly bp:
|
|
606
|
+
readonly bp: 1;
|
|
619
607
|
};
|
|
620
608
|
readonly gaf: {
|
|
621
609
|
readonly prop: "gridAutoFlow";
|
|
@@ -633,21 +621,21 @@ declare const _default: {
|
|
|
633
621
|
readonly utils: {
|
|
634
622
|
readonly '1/1': "1 / 1";
|
|
635
623
|
};
|
|
636
|
-
readonly bp:
|
|
624
|
+
readonly bp: 1;
|
|
637
625
|
};
|
|
638
626
|
readonly gc: {
|
|
639
627
|
readonly prop: "gridColumn";
|
|
640
628
|
readonly utils: {
|
|
641
629
|
readonly '1/-1': "1 / -1";
|
|
642
630
|
};
|
|
643
|
-
readonly bp:
|
|
631
|
+
readonly bp: 1;
|
|
644
632
|
};
|
|
645
633
|
readonly gr: {
|
|
646
634
|
readonly prop: "gridRow";
|
|
647
635
|
readonly utils: {
|
|
648
636
|
readonly '1/-1': "1 / -1";
|
|
649
637
|
};
|
|
650
|
-
readonly bp:
|
|
638
|
+
readonly bp: 1;
|
|
651
639
|
};
|
|
652
640
|
readonly gcs: {
|
|
653
641
|
readonly prop: "gridColumnStart";
|