@heliosgraphics/css 1.0.0-alpha.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.
@@ -0,0 +1,272 @@
1
+ import type { FractureRuleType } from "../types/meta"
2
+
3
+ export const GRID: Array<FractureRuleType> = [
4
+ { selector: "grid-gap-px", declarations: { gridGap: "var(--space-px)" } },
5
+ { selector: "grid-gap-1", declarations: { gridGap: "var(--space-1)" } },
6
+ { selector: "grid-gap-2", declarations: { gridGap: "var(--space-2)" } },
7
+ { selector: "grid-gap-3", declarations: { gridGap: "var(--space-3)" } },
8
+ { selector: "grid-gap-4", declarations: { gridGap: "var(--space-4)" } },
9
+ { selector: "grid-gap-5", declarations: { gridGap: "var(--space-5)" } },
10
+ { selector: "grid-gap-6", declarations: { gridGap: "var(--space-6)" } },
11
+ { selector: "grid-gap-7", declarations: { gridGap: "var(--space-7)" } },
12
+ { selector: "grid-gap-8", declarations: { gridGap: "var(--space-8)" } },
13
+ { selector: "grid-gap-9", declarations: { gridGap: "var(--space-9)" } },
14
+ { selector: "grid-gap-10", declarations: { gridGap: "var(--space-10)" } },
15
+ { selector: "grid-gap-11", declarations: { gridGap: "var(--space-11)" } },
16
+ { selector: "grid-gap-12", declarations: { gridGap: "var(--space-12)" } },
17
+ { selector: "grid-gap-13", declarations: { gridGap: "var(--space-13)" } },
18
+ { selector: "grid-gap-14", declarations: { gridGap: "var(--space-14)" } },
19
+ { selector: "grid-gap-15", declarations: { gridGap: "var(--space-15)" } },
20
+ { selector: "grid-gap-16", declarations: { gridGap: "var(--space-16)" } },
21
+ { selector: "grid-gap-24", declarations: { gridGap: "var(--space-24)" } },
22
+ { selector: "grid-gap-32", declarations: { gridGap: "var(--space-32)" } },
23
+ { selector: "grid-gap-40", declarations: { gridGap: "var(--space-40)" } },
24
+ { selector: "grid-gap-48", declarations: { gridGap: "var(--space-48)" } },
25
+
26
+ {
27
+ selector: "grid-gap-x-px",
28
+ declarations: { gridRowGap: "var(--space-px)" },
29
+ },
30
+ { selector: "grid-gap-x-1", declarations: { gridRowGap: "var(--space-1)" } },
31
+ { selector: "grid-gap-x-2", declarations: { gridRowGap: "var(--space-2)" } },
32
+ { selector: "grid-gap-x-3", declarations: { gridRowGap: "var(--space-3)" } },
33
+ { selector: "grid-gap-x-4", declarations: { gridRowGap: "var(--space-4)" } },
34
+ { selector: "grid-gap-x-5", declarations: { gridRowGap: "var(--space-5)" } },
35
+ { selector: "grid-gap-x-6", declarations: { gridRowGap: "var(--space-6)" } },
36
+ { selector: "grid-gap-x-7", declarations: { gridRowGap: "var(--space-7)" } },
37
+ { selector: "grid-gap-x-8", declarations: { gridRowGap: "var(--space-8)" } },
38
+ { selector: "grid-gap-x-9", declarations: { gridRowGap: "var(--space-9)" } },
39
+ {
40
+ selector: "grid-gap-x-10",
41
+ declarations: { gridRowGap: "var(--space-10)" },
42
+ },
43
+ {
44
+ selector: "grid-gap-x-11",
45
+ declarations: { gridRowGap: "var(--space-11)" },
46
+ },
47
+ {
48
+ selector: "grid-gap-x-12",
49
+ declarations: { gridRowGap: "var(--space-12)" },
50
+ },
51
+ {
52
+ selector: "grid-gap-x-13",
53
+ declarations: { gridRowGap: "var(--space-13)" },
54
+ },
55
+ {
56
+ selector: "grid-gap-x-14",
57
+ declarations: { gridRowGap: "var(--space-14)" },
58
+ },
59
+ {
60
+ selector: "grid-gap-x-15",
61
+ declarations: { gridRowGap: "var(--space-15)" },
62
+ },
63
+ {
64
+ selector: "grid-gap-x-16",
65
+ declarations: { gridRowGap: "var(--space-16)" },
66
+ },
67
+ {
68
+ selector: "grid-gap-x-24",
69
+ declarations: { gridRowGap: "var(--space-24)" },
70
+ },
71
+ {
72
+ selector: "grid-gap-x-32",
73
+ declarations: { gridRowGap: "var(--space-32)" },
74
+ },
75
+ {
76
+ selector: "grid-gap-x-40",
77
+ declarations: { gridRowGap: "var(--space-40)" },
78
+ },
79
+ {
80
+ selector: "grid-gap-x-48",
81
+ declarations: { gridRowGap: "var(--space-48)" },
82
+ },
83
+
84
+ {
85
+ selector: "grid-gap-y-px",
86
+ declarations: { gridColumnGap: "var(--space-px)" },
87
+ },
88
+ {
89
+ selector: "grid-gap-y-1",
90
+ declarations: { gridColumnGap: "var(--space-1)" },
91
+ },
92
+ {
93
+ selector: "grid-gap-y-2",
94
+ declarations: { gridColumnGap: "var(--space-2)" },
95
+ },
96
+ {
97
+ selector: "grid-gap-y-3",
98
+ declarations: { gridColumnGap: "var(--space-3)" },
99
+ },
100
+ {
101
+ selector: "grid-gap-y-4",
102
+ declarations: { gridColumnGap: "var(--space-4)" },
103
+ },
104
+ {
105
+ selector: "grid-gap-y-5",
106
+ declarations: { gridColumnGap: "var(--space-5)" },
107
+ },
108
+ {
109
+ selector: "grid-gap-y-6",
110
+ declarations: { gridColumnGap: "var(--space-6)" },
111
+ },
112
+ {
113
+ selector: "grid-gap-y-7",
114
+ declarations: { gridColumnGap: "var(--space-7)" },
115
+ },
116
+ {
117
+ selector: "grid-gap-y-8",
118
+ declarations: { gridColumnGap: "var(--space-8)" },
119
+ },
120
+ {
121
+ selector: "grid-gap-y-9",
122
+ declarations: { gridColumnGap: "var(--space-9)" },
123
+ },
124
+ {
125
+ selector: "grid-gap-y-10",
126
+ declarations: { gridColumnGap: "var(--space-10)" },
127
+ },
128
+ {
129
+ selector: "grid-gap-y-11",
130
+ declarations: { gridColumnGap: "var(--space-11)" },
131
+ },
132
+ {
133
+ selector: "grid-gap-y-12",
134
+ declarations: { gridColumnGap: "var(--space-12)" },
135
+ },
136
+ {
137
+ selector: "grid-gap-y-13",
138
+ declarations: { gridColumnGap: "var(--space-13)" },
139
+ },
140
+ {
141
+ selector: "grid-gap-y-14",
142
+ declarations: { gridColumnGap: "var(--space-14)" },
143
+ },
144
+ {
145
+ selector: "grid-gap-y-15",
146
+ declarations: { gridColumnGap: "var(--space-15)" },
147
+ },
148
+ {
149
+ selector: "grid-gap-y-16",
150
+ declarations: { gridColumnGap: "var(--space-16)" },
151
+ },
152
+ {
153
+ selector: "grid-gap-y-24",
154
+ declarations: { gridColumnGap: "var(--space-24)" },
155
+ },
156
+ {
157
+ selector: "grid-gap-y-32",
158
+ declarations: { gridColumnGap: "var(--space-32)" },
159
+ },
160
+ {
161
+ selector: "grid-gap-y-40",
162
+ declarations: { gridColumnGap: "var(--space-40)" },
163
+ },
164
+ {
165
+ selector: "grid-gap-y-48",
166
+ declarations: { gridColumnGap: "var(--space-48)" },
167
+ },
168
+
169
+ { selector: "grid-dense-row", declarations: { gridAutoFlow: "row dense" } },
170
+ {
171
+ selector: "grid-dense-column",
172
+ declarations: { gridAutoFlow: "column dense" },
173
+ },
174
+
175
+ {
176
+ selector: "grid-cols-1",
177
+ declarations: { gridTemplateColumns: "repeat(1, 1fr)" },
178
+ },
179
+ {
180
+ selector: "grid-cols-2",
181
+ declarations: { gridTemplateColumns: "repeat(2, 1fr)" },
182
+ },
183
+ {
184
+ selector: "grid-cols-3",
185
+ declarations: { gridTemplateColumns: "repeat(3, 1fr)" },
186
+ },
187
+ {
188
+ selector: "grid-cols-4",
189
+ declarations: { gridTemplateColumns: "repeat(4, 1fr)" },
190
+ },
191
+ {
192
+ selector: "grid-cols-5",
193
+ declarations: { gridTemplateColumns: "repeat(5, 1fr)" },
194
+ },
195
+ {
196
+ selector: "grid-cols-6",
197
+ declarations: { gridTemplateColumns: "repeat(6, 1fr)" },
198
+ },
199
+ {
200
+ selector: "grid-cols-7",
201
+ declarations: { gridTemplateColumns: "repeat(7, 1fr)" },
202
+ },
203
+ {
204
+ selector: "grid-cols-8",
205
+ declarations: { gridTemplateColumns: "repeat(8, 1fr)" },
206
+ },
207
+ {
208
+ selector: "grid-cols-9",
209
+ declarations: { gridTemplateColumns: "repeat(9, 1fr)" },
210
+ },
211
+ {
212
+ selector: "grid-cols-10",
213
+ declarations: { gridTemplateColumns: "repeat(10, 1fr)" },
214
+ },
215
+ {
216
+ selector: "grid-cols-11",
217
+ declarations: { gridTemplateColumns: "repeat(11, 1fr)" },
218
+ },
219
+ {
220
+ selector: "grid-cols-12",
221
+ declarations: { gridTemplateColumns: "repeat(12, 1fr)" },
222
+ },
223
+
224
+ {
225
+ selector: "grid-rows-1",
226
+ declarations: { gridTemplateRows: "repeat(1, 1fr)" },
227
+ },
228
+ {
229
+ selector: "grid-rows-2",
230
+ declarations: { gridTemplateRows: "repeat(2, 1fr)" },
231
+ },
232
+ {
233
+ selector: "grid-rows-3",
234
+ declarations: { gridTemplateRows: "repeat(3, 1fr)" },
235
+ },
236
+ {
237
+ selector: "grid-rows-4",
238
+ declarations: { gridTemplateRows: "repeat(4, 1fr)" },
239
+ },
240
+ {
241
+ selector: "grid-rows-5",
242
+ declarations: { gridTemplateRows: "repeat(5, 1fr)" },
243
+ },
244
+ {
245
+ selector: "grid-rows-6",
246
+ declarations: { gridTemplateRows: "repeat(6, 1fr)" },
247
+ },
248
+ {
249
+ selector: "grid-rows-7",
250
+ declarations: { gridTemplateRows: "repeat(7, 1fr)" },
251
+ },
252
+ {
253
+ selector: "grid-rows-8",
254
+ declarations: { gridTemplateRows: "repeat(8, 1fr)" },
255
+ },
256
+ {
257
+ selector: "grid-rows-9",
258
+ declarations: { gridTemplateRows: "repeat(9, 1fr)" },
259
+ },
260
+ {
261
+ selector: "grid-rows-10",
262
+ declarations: { gridTemplateRows: "repeat(10, 1fr)" },
263
+ },
264
+ {
265
+ selector: "grid-rows-11",
266
+ declarations: { gridTemplateRows: "repeat(11, 1fr)" },
267
+ },
268
+ {
269
+ selector: "grid-rows-12",
270
+ declarations: { gridTemplateRows: "repeat(12, 1fr)" },
271
+ },
272
+ ] as const
@@ -0,0 +1,134 @@
1
+ import type { FractureRuleType } from "../types/meta"
2
+
3
+ export const HEIGHT: Array<FractureRuleType> = [
4
+ { selector: "h-0", declarations: { height: 0 } },
5
+ { selector: "h-viewport", declarations: { height: "100vh" } },
6
+ { selector: "h-px", declarations: { height: "var(--space-px)" } },
7
+ { selector: "h-1", declarations: { height: "var(--space-1)" } },
8
+ { selector: "h-2", declarations: { height: "var(--space-2)" } },
9
+ { selector: "h-3", declarations: { height: "var(--space-3)" } },
10
+ { selector: "h-4", declarations: { height: "var(--space-4)" } },
11
+ { selector: "h-5", declarations: { height: "var(--space-5)" } },
12
+ { selector: "h-6", declarations: { height: "var(--space-6)" } },
13
+ { selector: "h-7", declarations: { height: "var(--space-7)" } },
14
+ { selector: "h-8", declarations: { height: "var(--space-8)" } },
15
+ { selector: "h-9", declarations: { height: "var(--space-9)" } },
16
+ { selector: "h-10", declarations: { height: "var(--space-10)" } },
17
+ { selector: "h-11", declarations: { height: "var(--space-11)" } },
18
+ { selector: "h-12", declarations: { height: "var(--space-12)" } },
19
+ { selector: "h-13", declarations: { height: "var(--space-13)" } },
20
+ { selector: "h-14", declarations: { height: "var(--space-14)" } },
21
+ { selector: "h-15", declarations: { height: "var(--space-15)" } },
22
+ { selector: "h-16", declarations: { height: "var(--space-16)" } },
23
+ { selector: "h-24", declarations: { height: "var(--space-24)" } },
24
+ { selector: "h-32", declarations: { height: "var(--space-32)" } },
25
+ { selector: "h-40", declarations: { height: "var(--space-40)" } },
26
+ { selector: "h-48", declarations: { height: "var(--space-48)" } },
27
+ { selector: "hp-10", declarations: { height: "10%" } },
28
+ { selector: "hp-15", declarations: { height: "15%" } },
29
+ { selector: "hp-20", declarations: { height: "20%" } },
30
+ { selector: "hp-25", declarations: { height: "25%" } },
31
+ { selector: "hp-30", declarations: { height: "30%" } },
32
+ { selector: "hp-33", declarations: { height: "calc(100%/3)" } },
33
+ { selector: "hp-35", declarations: { height: "35%" } },
34
+ { selector: "hp-40", declarations: { height: "40%" } },
35
+ { selector: "hp-45", declarations: { height: "45%" } },
36
+ { selector: "hp-50", declarations: { height: "50%" } },
37
+ { selector: "hp-55", declarations: { height: "55%" } },
38
+ { selector: "hp-60", declarations: { height: "60%" } },
39
+ { selector: "hp-66", declarations: { height: "calc((100%/3)*2)" } },
40
+ { selector: "hp-65", declarations: { height: "65%" } },
41
+ { selector: "hp-70", declarations: { height: "70%" } },
42
+ { selector: "hp-75", declarations: { height: "75%" } },
43
+ { selector: "hp-80", declarations: { height: "80%" } },
44
+ { selector: "hp-85", declarations: { height: "85%" } },
45
+ { selector: "hp-90", declarations: { height: "90%" } },
46
+ { selector: "hp-95", declarations: { height: "95%" } },
47
+ { selector: "hp-100", declarations: { height: "100%" } },
48
+ { selector: "hmax-0", declarations: { maxHeight: 0 } },
49
+ { selector: "hmax-viewport", declarations: { maxHeight: "100vh" } },
50
+ { selector: "hmax-1", declarations: { maxHeight: "var(--space-1)" } },
51
+ { selector: "hmax-2", declarations: { maxHeight: "var(--space-2)" } },
52
+ { selector: "hmax-3", declarations: { maxHeight: "var(--space-3)" } },
53
+ { selector: "hmax-4", declarations: { maxHeight: "var(--space-4)" } },
54
+ { selector: "hmax-5", declarations: { maxHeight: "var(--space-5)" } },
55
+ { selector: "hmax-6", declarations: { maxHeight: "var(--space-6)" } },
56
+ { selector: "hmax-7", declarations: { maxHeight: "var(--space-7)" } },
57
+ { selector: "hmax-8", declarations: { maxHeight: "var(--space-8)" } },
58
+ { selector: "hmax-9", declarations: { maxHeight: "var(--space-9)" } },
59
+ { selector: "hmax-10", declarations: { maxHeight: "var(--space-10)" } },
60
+ { selector: "hmax-11", declarations: { maxHeight: "var(--space-11)" } },
61
+ { selector: "hmax-12", declarations: { maxHeight: "var(--space-12)" } },
62
+ { selector: "hmax-13", declarations: { maxHeight: "var(--space-13)" } },
63
+ { selector: "hmax-14", declarations: { maxHeight: "var(--space-14)" } },
64
+ { selector: "hmax-15", declarations: { maxHeight: "var(--space-15)" } },
65
+ { selector: "hmax-16", declarations: { maxHeight: "var(--space-16)" } },
66
+ { selector: "hmax-24", declarations: { maxHeight: "var(--space-24)" } },
67
+ { selector: "hmax-32", declarations: { maxHeight: "var(--space-32)" } },
68
+ { selector: "hmax-40", declarations: { maxHeight: "var(--space-40)" } },
69
+ { selector: "hmax-48", declarations: { maxHeight: "var(--space-48)" } },
70
+ { selector: "hpmax-15", declarations: { maxHeight: "15%" } },
71
+ { selector: "hpmax-10", declarations: { maxHeight: "10%" } },
72
+ { selector: "hpmax-20", declarations: { maxHeight: "20%" } },
73
+ { selector: "hpmax-25", declarations: { maxHeight: "25%" } },
74
+ { selector: "hpmax-30", declarations: { maxHeight: "30%" } },
75
+ { selector: "hpmax-33", declarations: { maxHeight: "calc(100%/3)" } },
76
+ { selector: "hpmax-35", declarations: { maxHeight: "35%" } },
77
+ { selector: "hpmax-40", declarations: { maxHeight: "40%" } },
78
+ { selector: "hpmax-45", declarations: { maxHeight: "45%" } },
79
+ { selector: "hpmax-50", declarations: { maxHeight: "50%" } },
80
+ { selector: "hpmax-55", declarations: { maxHeight: "55%" } },
81
+ { selector: "hpmax-60", declarations: { maxHeight: "60%" } },
82
+ { selector: "hpmax-66", declarations: { maxHeight: "calc((100%/3)*2)" } },
83
+ { selector: "hpmax-65", declarations: { maxHeight: "65%" } },
84
+ { selector: "hpmax-70", declarations: { maxHeight: "70%" } },
85
+ { selector: "hpmax-75", declarations: { maxHeight: "75%" } },
86
+ { selector: "hpmax-80", declarations: { maxHeight: "80%" } },
87
+ { selector: "hpmax-85", declarations: { maxHeight: "85%" } },
88
+ { selector: "hpmax-90", declarations: { maxHeight: "90%" } },
89
+ { selector: "hpmax-95", declarations: { maxHeight: "95%" } },
90
+ { selector: "hpmax-100", declarations: { maxHeight: "100%" } },
91
+ { selector: "hmin-0", declarations: { minHeight: 0 } },
92
+ { selector: "hmin-viewport", declarations: { minHeight: "100vh" } },
93
+ { selector: "hmin-1", declarations: { minHeight: "var(--space-1)" } },
94
+ { selector: "hmin-2", declarations: { minHeight: "var(--space-2)" } },
95
+ { selector: "hmin-3", declarations: { minHeight: "var(--space-3)" } },
96
+ { selector: "hmin-4", declarations: { minHeight: "var(--space-4)" } },
97
+ { selector: "hmin-5", declarations: { minHeight: "var(--space-5)" } },
98
+ { selector: "hmin-6", declarations: { minHeight: "var(--space-6)" } },
99
+ { selector: "hmin-7", declarations: { minHeight: "var(--space-7)" } },
100
+ { selector: "hmin-8", declarations: { minHeight: "var(--space-8)" } },
101
+ { selector: "hmin-9", declarations: { minHeight: "var(--space-9)" } },
102
+ { selector: "hmin-10", declarations: { minHeight: "var(--space-10)" } },
103
+ { selector: "hmin-11", declarations: { minHeight: "var(--space-11)" } },
104
+ { selector: "hmin-12", declarations: { minHeight: "var(--space-12)" } },
105
+ { selector: "hmin-13", declarations: { minHeight: "var(--space-13)" } },
106
+ { selector: "hmin-14", declarations: { minHeight: "var(--space-14)" } },
107
+ { selector: "hmin-15", declarations: { minHeight: "var(--space-15)" } },
108
+ { selector: "hmin-16", declarations: { minHeight: "var(--space-16)" } },
109
+ { selector: "hmin-24", declarations: { minHeight: "var(--space-24)" } },
110
+ { selector: "hmin-32", declarations: { minHeight: "var(--space-32)" } },
111
+ { selector: "hmin-40", declarations: { minHeight: "var(--space-40)" } },
112
+ { selector: "hmin-48", declarations: { minHeight: "var(--space-48)" } },
113
+ { selector: "hpmin-15", declarations: { minHeight: "15%" } },
114
+ { selector: "hpmin-10", declarations: { minHeight: "10%" } },
115
+ { selector: "hpmin-20", declarations: { minHeight: "20%" } },
116
+ { selector: "hpmin-25", declarations: { minHeight: "25%" } },
117
+ { selector: "hpmin-30", declarations: { minHeight: "30%" } },
118
+ { selector: "hpmin-33", declarations: { minHeight: "calc(100%/3)" } },
119
+ { selector: "hpmin-35", declarations: { minHeight: "35%" } },
120
+ { selector: "hpmin-40", declarations: { minHeight: "40%" } },
121
+ { selector: "hpmin-45", declarations: { minHeight: "45%" } },
122
+ { selector: "hpmin-50", declarations: { minHeight: "50%" } },
123
+ { selector: "hpmin-55", declarations: { minHeight: "55%" } },
124
+ { selector: "hpmin-60", declarations: { minHeight: "60%" } },
125
+ { selector: "hpmin-66", declarations: { minHeight: "calc((100%/3)*2)" } },
126
+ { selector: "hpmin-65", declarations: { minHeight: "65%" } },
127
+ { selector: "hpmin-70", declarations: { minHeight: "70%" } },
128
+ { selector: "hpmin-75", declarations: { minHeight: "75%" } },
129
+ { selector: "hpmin-80", declarations: { minHeight: "80%" } },
130
+ { selector: "hpmin-85", declarations: { minHeight: "85%" } },
131
+ { selector: "hpmin-90", declarations: { minHeight: "90%" } },
132
+ { selector: "hpmin-95", declarations: { minHeight: "95%" } },
133
+ { selector: "hpmin-100", declarations: { minHeight: "100%" } },
134
+ ] as const
@@ -0,0 +1,32 @@
1
+ import { BORDER_RADIUS } from "./border-radius"
2
+ import { CURSOR } from "./cursor"
3
+ import { DISPLAY } from "./display"
4
+ import { FLEX } from "./flex"
5
+ import { GRID } from "./grid"
6
+ import { HEIGHT } from "./height"
7
+ import { LIST } from "./list"
8
+ import { MARGIN } from "./margin"
9
+ import { OPACITY } from "./opacity"
10
+ import { OVERFLOW } from "./overflow"
11
+ import { PADDING } from "./padding"
12
+ import { POSITION } from "./position"
13
+ import { TYPE } from "./type"
14
+ import { WIDTH } from "./width"
15
+ import type { FractureFiles } from "../types/meta"
16
+
17
+ export const FRACTURE_FILES: FractureFiles = {
18
+ borderRadius: BORDER_RADIUS,
19
+ cursor: CURSOR,
20
+ display: DISPLAY,
21
+ flex: FLEX,
22
+ grid: GRID,
23
+ height: HEIGHT,
24
+ list: LIST,
25
+ margin: MARGIN,
26
+ opacity: OPACITY,
27
+ overflow: OVERFLOW,
28
+ padding: PADDING,
29
+ position: POSITION,
30
+ type: TYPE,
31
+ width: WIDTH,
32
+ }
@@ -0,0 +1,69 @@
1
+ import type { FractureRuleType } from "../types/meta"
2
+
3
+ export const LIST: Array<FractureRuleType> = [
4
+ {
5
+ selector: "list-circle > li",
6
+ declarations: { listStyleType: "circle" },
7
+ selectorNice: "list-circle",
8
+ },
9
+ {
10
+ selector: "list-decimal > li",
11
+ declarations: { listStyleType: "decimal" },
12
+ selectorNice: "list-decimal",
13
+ },
14
+ {
15
+ selector: "list-decimal-leading-zero > li",
16
+ declarations: { listStyleType: "decimal-leading-zero" },
17
+ selectorNice: "list-decimal-leading-zero",
18
+ },
19
+ {
20
+ selector: "list-disc > li",
21
+ declarations: { listStyleType: "disc" },
22
+ selectorNice: "list-disc",
23
+ },
24
+ {
25
+ selector: "list-greek > li",
26
+ declarations: { listStyleType: "lower-greek" },
27
+ selectorNice: "list-greek",
28
+ },
29
+ {
30
+ selector: "list-lower-latin > li",
31
+ declarations: { listStyleType: "lower-latin" },
32
+ selectorNice: "list-lower-latin",
33
+ },
34
+ {
35
+ selector: "list-lower-roman > li",
36
+ declarations: { listStyleType: "lower-roman" },
37
+ selectorNice: "list-lower-roman",
38
+ },
39
+ {
40
+ selector: "list-none > li",
41
+ declarations: { listStyleType: "none" },
42
+ selectorNice: "list-none",
43
+ },
44
+ {
45
+ selector: "list-square > li",
46
+ declarations: { listStyleType: "square" },
47
+ selectorNice: "list-square",
48
+ },
49
+ {
50
+ selector: "list-upper-latin > li",
51
+ declarations: { listStyleType: "upper-latin" },
52
+ selectorNice: "list-upper-latin",
53
+ },
54
+ {
55
+ selector: "list-upper-roman > li",
56
+ declarations: { listStyleType: "upper-roman" },
57
+ selectorNice: "list-upper-roman",
58
+ },
59
+ {
60
+ selector: "list-comma > *",
61
+ declarations: { display: "inline-block" },
62
+ selectorNice: "list-comma",
63
+ },
64
+ {
65
+ selector: "list-comma > *:not(:last-child):after",
66
+ declarations: { content: "', '" },
67
+ isHidden: true,
68
+ },
69
+ ] as const