@plumeria/eslint-plugin 0.1.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/LICENSE +21 -0
- package/lib/index.d.ts +18 -0
- package/lib/index.js +47 -0
- package/lib/rules/no-inner-call.js +69 -0
- package/lib/rules/no-unused-keys.js +96 -0
- package/lib/rules/sort-properties.js +126 -0
- package/lib/rules/validate-values.js +2251 -0
- package/lib/util/colorData.js +211 -0
- package/lib/util/place.js +291 -0
- package/lib/util/propertyGroups.js +557 -0
- package/lib/util/unitData.js +42 -0
- package/lib/util/validData.js +1052 -0
- package/package.json +26 -0
- package/readme.md +37 -0
|
@@ -0,0 +1,1052 @@
|
|
|
1
|
+
const fontSizeSubValues = [
|
|
2
|
+
'xx-small',
|
|
3
|
+
'x-small',
|
|
4
|
+
'small',
|
|
5
|
+
'medium',
|
|
6
|
+
'large',
|
|
7
|
+
'x-large',
|
|
8
|
+
'xx-large',
|
|
9
|
+
'math',
|
|
10
|
+
'smaller',
|
|
11
|
+
'larger',
|
|
12
|
+
]
|
|
13
|
+
const lengthSubValues = ['max-content', 'min-content', 'fit-content']
|
|
14
|
+
const widthKeywords = ['thin', 'medium', 'thick']
|
|
15
|
+
const alignKeywords = [
|
|
16
|
+
'start',
|
|
17
|
+
'end',
|
|
18
|
+
'left',
|
|
19
|
+
'right',
|
|
20
|
+
'center',
|
|
21
|
+
'justify',
|
|
22
|
+
'match-parent',
|
|
23
|
+
]
|
|
24
|
+
const breakBeforeAfterValues = [
|
|
25
|
+
'auto',
|
|
26
|
+
'avoid',
|
|
27
|
+
'always',
|
|
28
|
+
'all',
|
|
29
|
+
'avoid-page',
|
|
30
|
+
'page',
|
|
31
|
+
'left',
|
|
32
|
+
'right',
|
|
33
|
+
'recto',
|
|
34
|
+
'verso',
|
|
35
|
+
'avoid-column',
|
|
36
|
+
'column',
|
|
37
|
+
'avoid-region',
|
|
38
|
+
'region',
|
|
39
|
+
]
|
|
40
|
+
const lineStyle = [
|
|
41
|
+
'none',
|
|
42
|
+
'hidden',
|
|
43
|
+
'dotted',
|
|
44
|
+
'dashed',
|
|
45
|
+
'solid',
|
|
46
|
+
'double',
|
|
47
|
+
'groove',
|
|
48
|
+
'ridge',
|
|
49
|
+
'inset',
|
|
50
|
+
'outset',
|
|
51
|
+
]
|
|
52
|
+
const overflowKeyword = ['visible', 'hidden', 'clip', 'scroll', 'auto']
|
|
53
|
+
const overflowAlignment = [
|
|
54
|
+
'safe start',
|
|
55
|
+
'safe end',
|
|
56
|
+
'safe center',
|
|
57
|
+
'safe flex-start',
|
|
58
|
+
'safe flex-end',
|
|
59
|
+
'unsafe start',
|
|
60
|
+
'unsafe end',
|
|
61
|
+
'unsafe center',
|
|
62
|
+
'unsafe flex-start',
|
|
63
|
+
'unsafe flex-end',
|
|
64
|
+
]
|
|
65
|
+
|
|
66
|
+
const validData = {
|
|
67
|
+
all: [], // 1
|
|
68
|
+
appearance: [
|
|
69
|
+
'none',
|
|
70
|
+
'auto',
|
|
71
|
+
'base',
|
|
72
|
+
// <compat-auto> =
|
|
73
|
+
'searchfield',
|
|
74
|
+
'textarea',
|
|
75
|
+
'checkbox',
|
|
76
|
+
'radio',
|
|
77
|
+
'menulist',
|
|
78
|
+
'listbox',
|
|
79
|
+
'meter',
|
|
80
|
+
'progress-bar',
|
|
81
|
+
'button',
|
|
82
|
+
// <compat-special> =
|
|
83
|
+
'textfield',
|
|
84
|
+
'menulist-button',
|
|
85
|
+
], // 2
|
|
86
|
+
alignContent: [
|
|
87
|
+
'normal',
|
|
88
|
+
/* align-content does not take left and right values */
|
|
89
|
+
'start',
|
|
90
|
+
'center',
|
|
91
|
+
'end',
|
|
92
|
+
'flex-start',
|
|
93
|
+
'flex-end',
|
|
94
|
+
/* Baseline alignment */
|
|
95
|
+
'baseline',
|
|
96
|
+
// 'first baseline',
|
|
97
|
+
// 'last baseline',
|
|
98
|
+
/* Distributed alignment */
|
|
99
|
+
'space-between',
|
|
100
|
+
'space-around',
|
|
101
|
+
'space-evenly',
|
|
102
|
+
'stretch',
|
|
103
|
+
// ...overflowAlignment,
|
|
104
|
+
], // 3
|
|
105
|
+
|
|
106
|
+
alignItems: [
|
|
107
|
+
'normal',
|
|
108
|
+
'stretch',
|
|
109
|
+
'center',
|
|
110
|
+
'start',
|
|
111
|
+
'end',
|
|
112
|
+
'flex-start',
|
|
113
|
+
'flex-end',
|
|
114
|
+
'self-start',
|
|
115
|
+
'self-end',
|
|
116
|
+
'anchor-center',
|
|
117
|
+
/* Baseline alignment */
|
|
118
|
+
'baseline',
|
|
119
|
+
// 'first baseline',
|
|
120
|
+
// 'last baseline',
|
|
121
|
+
/* Overflow alignment */
|
|
122
|
+
// ...overflowAlignment,
|
|
123
|
+
// 'safe self-start',
|
|
124
|
+
// 'safe self-end',
|
|
125
|
+
// 'safe anchor-center',
|
|
126
|
+
// 'unsafe self-start',
|
|
127
|
+
// 'unsafe self-end',
|
|
128
|
+
// 'unsafe anchor-center',
|
|
129
|
+
], // 4
|
|
130
|
+
alignSelf: [
|
|
131
|
+
'auto',
|
|
132
|
+
'normal',
|
|
133
|
+
'stretch',
|
|
134
|
+
'center',
|
|
135
|
+
'start',
|
|
136
|
+
'end',
|
|
137
|
+
'flex-start',
|
|
138
|
+
'flex-end',
|
|
139
|
+
'self-start',
|
|
140
|
+
'self-end',
|
|
141
|
+
'anchor-center',
|
|
142
|
+
/* Baseline alignment */
|
|
143
|
+
'baseline',
|
|
144
|
+
// 'first baseline',
|
|
145
|
+
// 'last baseline',
|
|
146
|
+
/* Overflow alignment */
|
|
147
|
+
// ...overflowAlignment,
|
|
148
|
+
// 'safe self-start',
|
|
149
|
+
// 'safe self-end',
|
|
150
|
+
// 'safe anchor-center',
|
|
151
|
+
// 'unsafe self-start',
|
|
152
|
+
// 'unsafe self-end',
|
|
153
|
+
// 'unsafe anchor-center',
|
|
154
|
+
], // 5
|
|
155
|
+
animationDelay: [], // <times># // 6
|
|
156
|
+
animationDirection: [], // Single animation# // 7
|
|
157
|
+
animationDuration: ['auto'], // auto, <times># // 8
|
|
158
|
+
animationFillMode: [], // Single animation# // 9
|
|
159
|
+
animationIterationCount: [], // <number|infinite># // 10
|
|
160
|
+
animationName: ['none', 'slide', 'bounce'], // <custom-indent> | <string># // 11
|
|
161
|
+
animationPlayState: [], // paused running # // 12
|
|
162
|
+
animationTimingFunction: [], // <easing keyword | cubic-bezier() | linear() | steps()># // 13
|
|
163
|
+
aspectRatio: ['auto'], // 14
|
|
164
|
+
|
|
165
|
+
backdropFilter: ['none'], // 15
|
|
166
|
+
backfaceVisibility: ['visible', 'hidden'], // 16
|
|
167
|
+
background: ['none'], // 17
|
|
168
|
+
backgroundAttachment: [], // 18
|
|
169
|
+
backgroundBlendMode: [], // <brend-mode># // 19
|
|
170
|
+
backgroundClip: ['text', 'border-area'], // 20
|
|
171
|
+
backgroundImage: ['none'], // 21
|
|
172
|
+
backgroundOrigin: [], // 22
|
|
173
|
+
backgroundPosition: [], // 23
|
|
174
|
+
backgroundPositionX: [], // 24
|
|
175
|
+
backgroundPositionY: [], // 25
|
|
176
|
+
backgroundRepeat: [
|
|
177
|
+
'repeat',
|
|
178
|
+
'repeat-x',
|
|
179
|
+
'repeat-y',
|
|
180
|
+
'space',
|
|
181
|
+
'round',
|
|
182
|
+
'no-repeat',
|
|
183
|
+
// 'repeat repeat',
|
|
184
|
+
// 'repeat no-repeat',
|
|
185
|
+
// 'repeat space',
|
|
186
|
+
// 'repeat round',
|
|
187
|
+
// 'no-repeat repeat',
|
|
188
|
+
// 'no-repeat no-repeat',
|
|
189
|
+
// 'no-repeat space',
|
|
190
|
+
// 'no-repeat round',
|
|
191
|
+
// 'space repeat',
|
|
192
|
+
// 'space no-repeat',
|
|
193
|
+
// 'space space',
|
|
194
|
+
// 'space round',
|
|
195
|
+
// 'round repeat',
|
|
196
|
+
// 'round no-repeat',
|
|
197
|
+
// 'round space',
|
|
198
|
+
// 'round round',
|
|
199
|
+
], // 26
|
|
200
|
+
backgroundSize: ['auto', 'cover', 'contain'], // 27
|
|
201
|
+
blockSize: ['auto'], // 28
|
|
202
|
+
boxDecorationBreak: ['slice', 'clone'], // 29
|
|
203
|
+
boxShadow: [], // 30
|
|
204
|
+
boxSizing: ['content-box', 'border-box'], // 31
|
|
205
|
+
breakAfter: [...breakBeforeAfterValues], // 32
|
|
206
|
+
breakBefore: [...breakBeforeAfterValues], // 33
|
|
207
|
+
breakInside: ['auto', 'avoid', 'avoid-page', 'avoid-column', 'avoid-region'], // 34
|
|
208
|
+
// single value
|
|
209
|
+
top: ['auto'], // 35
|
|
210
|
+
right: ['auto'], // 36
|
|
211
|
+
bottom: ['auto'], // 37
|
|
212
|
+
left: ['auto'], // 38
|
|
213
|
+
marginTop: ['auto'], // 39
|
|
214
|
+
marginRight: ['auto'], // 40
|
|
215
|
+
marginBottom: ['auto'], // 41
|
|
216
|
+
marginLeft: ['auto'], // 42
|
|
217
|
+
paddingTop: [], // 43
|
|
218
|
+
paddingRight: [], // 44
|
|
219
|
+
paddingBottom: [], // 45
|
|
220
|
+
paddingLeft: [], // 46
|
|
221
|
+
borderTopWidth: [...widthKeywords], // 47
|
|
222
|
+
borderBottomWidth: [...widthKeywords], //48
|
|
223
|
+
borderLeftWidth: [...widthKeywords], // 49
|
|
224
|
+
borderRightWidth: [...widthKeywords], // 50
|
|
225
|
+
borderTopStyle: ['none', ...lineStyle], // 51
|
|
226
|
+
borderBottomStyle: ['none', ...lineStyle], // 52
|
|
227
|
+
borderLeftStyle: ['none', ...lineStyle], // 53
|
|
228
|
+
borderRightStyle: ['none', ...lineStyle], // 54
|
|
229
|
+
borderBlockStyle: [...lineStyle], // 55
|
|
230
|
+
borderBlockStartStyle: [...lineStyle], // 56
|
|
231
|
+
borderBlockEndStyle: [...lineStyle], // 57
|
|
232
|
+
borderBlockStartWidth: [...widthKeywords], // 58
|
|
233
|
+
borderBlockEndWidth: [...widthKeywords], // 59
|
|
234
|
+
borderInlineStyle: [...lineStyle], // 60
|
|
235
|
+
borderInlineStartStyle: [...lineStyle], // 61
|
|
236
|
+
borderInlineEndStyle: [...lineStyle], // 62
|
|
237
|
+
borderInlineStartWidth: [...widthKeywords], // 63
|
|
238
|
+
borderInlineEndWidth: [...widthKeywords], // 64
|
|
239
|
+
borderCollapse: ['collapse', 'separate'], // 65
|
|
240
|
+
borderImageSource: ['none'], // 66
|
|
241
|
+
lineHeight: ['normal'], // 67
|
|
242
|
+
letterSpacing: ['normal'], // 68
|
|
243
|
+
wordSpacing: ['normal'], //69
|
|
244
|
+
opacity: [], // 70
|
|
245
|
+
zIndex: ['auto'], // 71
|
|
246
|
+
fontSize: [...fontSizeSubValues], // 72
|
|
247
|
+
fontWeight: ['normal', 'bold', 'lighter', 'bolder'], // 73
|
|
248
|
+
|
|
249
|
+
// length value
|
|
250
|
+
maxWidth: ['none', 'stretch', ...lengthSubValues], // 74
|
|
251
|
+
maxHeight: ['none', 'stretch', ...lengthSubValues], // 75
|
|
252
|
+
minWidth: ['none', 'stretch', ...lengthSubValues], // 76
|
|
253
|
+
minHeight: ['none', 'stretch', ...lengthSubValues], // 77
|
|
254
|
+
width: ['auto', 'stretch', ...lengthSubValues], // 78
|
|
255
|
+
height: ['auto', 'stretch', ...lengthSubValues], // 79
|
|
256
|
+
flexBasis: ['auto', 'content', ...lengthSubValues], // 80
|
|
257
|
+
|
|
258
|
+
// multiple value
|
|
259
|
+
gap: [], // 81
|
|
260
|
+
inset: ['auto'], // 82
|
|
261
|
+
margin: ['auto'], // 83
|
|
262
|
+
padding: [], // 84
|
|
263
|
+
border: [...widthKeywords, ...lineStyle], // 85
|
|
264
|
+
borderTop: [...widthKeywords, ...lineStyle], // 86
|
|
265
|
+
borderBottom: [...widthKeywords, ...lineStyle], // 87
|
|
266
|
+
borderLeft: [...widthKeywords, ...lineStyle], // 88
|
|
267
|
+
borderRight: [...widthKeywords, ...lineStyle], // 89
|
|
268
|
+
borderBlock: [...widthKeywords, ...lineStyle], // 90
|
|
269
|
+
borderBlockStart: [...widthKeywords, ...lineStyle], // 91
|
|
270
|
+
borderBlockEnd: [...widthKeywords, ...lineStyle], // 92
|
|
271
|
+
borderInline: [...widthKeywords, ...lineStyle], // 93
|
|
272
|
+
borderInlineStart: [...widthKeywords, ...lineStyle], // 94
|
|
273
|
+
borderInlineEnd: [...widthKeywords, ...lineStyle], // 95
|
|
274
|
+
borderWidth: [...widthKeywords], // 96
|
|
275
|
+
borderBlockWidth: [...widthKeywords], // 97
|
|
276
|
+
borderInlineWidth: [...widthKeywords], // 98
|
|
277
|
+
borderStyle: [...lineStyle], // 99
|
|
278
|
+
borderSpacing: [], // 100
|
|
279
|
+
borderEndEndRadius: [], // 101
|
|
280
|
+
borderEndStartRadius: [], // 102
|
|
281
|
+
borderStartEndRadius: [], // 103
|
|
282
|
+
borderStartStartRadius: [], // 104
|
|
283
|
+
borderTopLeftRadius: [], // 105
|
|
284
|
+
borderTopRightRadius: [], // 106
|
|
285
|
+
borderBottomLeftRadius: [], // 107
|
|
286
|
+
borderBottomRightRadius: [], // 108
|
|
287
|
+
borderImageWidth: ['auto'], // 109
|
|
288
|
+
// borderRadius
|
|
289
|
+
borderRadius: [], // 110
|
|
290
|
+
|
|
291
|
+
// borderImage
|
|
292
|
+
borderImage: ['none'], // 111
|
|
293
|
+
|
|
294
|
+
// borderImageSlice
|
|
295
|
+
borderImageSlice: ['fill'], // 112
|
|
296
|
+
|
|
297
|
+
// borderImageSlice
|
|
298
|
+
borderImageRepeat: [], // 113
|
|
299
|
+
|
|
300
|
+
// borderImageOutset
|
|
301
|
+
borderImageOutset: [], // 114
|
|
302
|
+
|
|
303
|
+
// singleColor
|
|
304
|
+
accentColor: ['auto'], // 115
|
|
305
|
+
color: [], // 116
|
|
306
|
+
borderLeftColor: [], // 117
|
|
307
|
+
borderRightColor: [], // 118
|
|
308
|
+
borderTopColor: [], // 119
|
|
309
|
+
borderBottomColor: [], // 120
|
|
310
|
+
borderBlockColor: [], // 121
|
|
311
|
+
borderBlockStartColor: [], // 122
|
|
312
|
+
borderBlockEndColor: [], // 123
|
|
313
|
+
borderInlineColor: [], // 124
|
|
314
|
+
borderInlineStartColor: [], // 125
|
|
315
|
+
borderInlineEndColor: [], // 126
|
|
316
|
+
backgroundColor: [], // 127
|
|
317
|
+
outlineColor: [], // 128
|
|
318
|
+
textDecorationColor: [], // 129
|
|
319
|
+
caretColor: ['auto'], // 130
|
|
320
|
+
columnRuleColor: [], // 131
|
|
321
|
+
|
|
322
|
+
// borderColor
|
|
323
|
+
borderColor: [], // 4 value // 132
|
|
324
|
+
|
|
325
|
+
// AB is done. next Alphabet C continue
|
|
326
|
+
captionSide: ['top', 'bottom'], // 133
|
|
327
|
+
// caretColor: ['auto'] // in the single color group
|
|
328
|
+
clear: [
|
|
329
|
+
'inline-start',
|
|
330
|
+
'inline-end',
|
|
331
|
+
'block-start',
|
|
332
|
+
'block-end',
|
|
333
|
+
'left',
|
|
334
|
+
'right',
|
|
335
|
+
'top',
|
|
336
|
+
'bottom',
|
|
337
|
+
'both-inline',
|
|
338
|
+
'both-block',
|
|
339
|
+
'both',
|
|
340
|
+
'none',
|
|
341
|
+
], // 134
|
|
342
|
+
clipPath: [], // 135
|
|
343
|
+
clipRule: ['nonzero', 'evenodd'], // 136
|
|
344
|
+
colorScheme: ['normal', 'dark', 'light'], // 137
|
|
345
|
+
columnCount: ['auto'], // 138
|
|
346
|
+
columnFill: ['auto', 'balance'], // 139
|
|
347
|
+
columnGap: [], // 140
|
|
348
|
+
columnRule: [], // 141 // use border function
|
|
349
|
+
columnRuleStyle: [...lineStyle], // 142
|
|
350
|
+
columnRuleWidth: [], // 143
|
|
351
|
+
columnSpan: ['none', 'all'], // 144
|
|
352
|
+
columnWidth: ['auto'], // 145
|
|
353
|
+
columns: [], // 146
|
|
354
|
+
content: [
|
|
355
|
+
'open-quote',
|
|
356
|
+
'close-quote',
|
|
357
|
+
'no-open-quote',
|
|
358
|
+
'no-close-quote',
|
|
359
|
+
'normal',
|
|
360
|
+
'none',
|
|
361
|
+
], // 147
|
|
362
|
+
counterIncrement: ['none'], // 148
|
|
363
|
+
counterReset: ['none'], // 149
|
|
364
|
+
counterSet: ['none'], // 150
|
|
365
|
+
cursor: ['auto'], // 151
|
|
366
|
+
|
|
367
|
+
position: ['static', 'relative', 'absolute', 'fixed', 'sticky'], // 152
|
|
368
|
+
display: [
|
|
369
|
+
// <display-outside> =
|
|
370
|
+
'block',
|
|
371
|
+
'inline',
|
|
372
|
+
'run-in',
|
|
373
|
+
|
|
374
|
+
// <display-inside> =
|
|
375
|
+
'flow',
|
|
376
|
+
'flow-root',
|
|
377
|
+
'table',
|
|
378
|
+
'flex',
|
|
379
|
+
'grid',
|
|
380
|
+
'ruby',
|
|
381
|
+
'math',
|
|
382
|
+
|
|
383
|
+
// // multi-keyword syntax
|
|
384
|
+
// 'block flex',
|
|
385
|
+
// 'block flow',
|
|
386
|
+
// 'block flow-root',
|
|
387
|
+
// 'block table',
|
|
388
|
+
// 'block grid',
|
|
389
|
+
// 'block ruby',
|
|
390
|
+
// 'block math',
|
|
391
|
+
|
|
392
|
+
// 'inline flex',
|
|
393
|
+
// 'inline flow',
|
|
394
|
+
// 'inline flow-root',
|
|
395
|
+
// 'inline table',
|
|
396
|
+
// 'inline grid',
|
|
397
|
+
// 'inline ruby',
|
|
398
|
+
// 'inline math',
|
|
399
|
+
|
|
400
|
+
// // <display-listitem> =
|
|
401
|
+
// 'list-item',
|
|
402
|
+
// 'list-item block',
|
|
403
|
+
// 'list-item inline',
|
|
404
|
+
// 'list-item flow',
|
|
405
|
+
// 'list-item flow-root',
|
|
406
|
+
// 'list-item block flow',
|
|
407
|
+
// 'list-item block flow-root',
|
|
408
|
+
// 'list-item inline flow',
|
|
409
|
+
// 'list-item inline flow-root',
|
|
410
|
+
|
|
411
|
+
// // listitem run-in
|
|
412
|
+
// 'list-item run-in',
|
|
413
|
+
// 'list-item run-in flow',
|
|
414
|
+
// 'list-item run-in flow-root',
|
|
415
|
+
|
|
416
|
+
// <display-internal> =
|
|
417
|
+
'table-header-group',
|
|
418
|
+
'table-footer-group',
|
|
419
|
+
'table-row',
|
|
420
|
+
'table-row-group',
|
|
421
|
+
'table-cell',
|
|
422
|
+
'table-column-group',
|
|
423
|
+
'table-column',
|
|
424
|
+
'table-caption',
|
|
425
|
+
'ruby-base',
|
|
426
|
+
'ruby-text',
|
|
427
|
+
'ruby-base-container',
|
|
428
|
+
'ruby-text-container',
|
|
429
|
+
|
|
430
|
+
// <display-box> =
|
|
431
|
+
'contents',
|
|
432
|
+
'none',
|
|
433
|
+
|
|
434
|
+
// <display-legacy> =
|
|
435
|
+
'inline-block',
|
|
436
|
+
'inline-table',
|
|
437
|
+
'inline-flex',
|
|
438
|
+
'inline-grid',
|
|
439
|
+
'inline-list-item',
|
|
440
|
+
], // 153
|
|
441
|
+
emptyCells: ['show', 'hide'], // 154
|
|
442
|
+
filter: ['none'], // 155
|
|
443
|
+
flex: ['none'], // 156
|
|
444
|
+
flexDirection: ['row', 'row-reverse', 'column', 'column-reverse'], // 157
|
|
445
|
+
flexFlow: [
|
|
446
|
+
// <'flex-direction'>
|
|
447
|
+
'row',
|
|
448
|
+
'row-reverse',
|
|
449
|
+
'column',
|
|
450
|
+
'column-reverse',
|
|
451
|
+
|
|
452
|
+
// <'flex-wrap'>
|
|
453
|
+
'nowrap',
|
|
454
|
+
'wrap',
|
|
455
|
+
'wrap-reverse',
|
|
456
|
+
|
|
457
|
+
// // <'flex-direction'> and <'flex-wrap'>
|
|
458
|
+
// 'row nowrap',
|
|
459
|
+
// 'row wrap',
|
|
460
|
+
// 'row wrap-reverse',
|
|
461
|
+
// 'row-reverse nowrap',
|
|
462
|
+
// 'row-reverse wrap',
|
|
463
|
+
// 'row-reverse wrap-reverse',
|
|
464
|
+
// 'column nowrap',
|
|
465
|
+
// 'column wrap',
|
|
466
|
+
// 'column wrap-reverse',
|
|
467
|
+
// 'column-reverse nowrap',
|
|
468
|
+
// 'column-reverse wrap',
|
|
469
|
+
// 'column-reverse wrap-reverse',
|
|
470
|
+
], // 158
|
|
471
|
+
flexGrow: [], // 159
|
|
472
|
+
flexShrink: [], // 160
|
|
473
|
+
flexWrap: ['nowrap', 'wrap', 'wrap-reverse'], // 161
|
|
474
|
+
float: ['inline-start', 'inline-end', 'left', 'none', 'right'], // 162
|
|
475
|
+
font: ['none'], // 163
|
|
476
|
+
fontFamily: [], // 164
|
|
477
|
+
fontFeatureSettings: [], // 165
|
|
478
|
+
fontKerning: ['auto', 'normal', 'none'], // 166
|
|
479
|
+
fontLanguageOverride: ['normal'], // 167
|
|
480
|
+
fontOpticalSizing: ['auto', 'none'], // 168
|
|
481
|
+
fontPalette: ['normal', 'light', 'dark'], // 169
|
|
482
|
+
fontSizeAdjust: ['none'], // 170
|
|
483
|
+
fontStretch: [
|
|
484
|
+
'normal',
|
|
485
|
+
'ultra-condensed',
|
|
486
|
+
'extra-condensed',
|
|
487
|
+
'condensed',
|
|
488
|
+
'semi-condensed',
|
|
489
|
+
'semi-expanded',
|
|
490
|
+
'expanded',
|
|
491
|
+
'extra-expanded',
|
|
492
|
+
'ultra-expanded',
|
|
493
|
+
], // 171
|
|
494
|
+
fontStyle: ['normal', 'italic', 'oblique'], // 172
|
|
495
|
+
fontSynthesis: ['none', 'weight', 'style', 'small-caps', 'position'], // 173
|
|
496
|
+
fontSynthesisSmallCaps: ['auto', 'none'], // 174
|
|
497
|
+
fontSynthesisStyle: ['auto', 'none'], // 175
|
|
498
|
+
fontSynthesisWeight: ['auto', 'none'], // 176
|
|
499
|
+
fontVariant: ['normal', 'none'], // 177
|
|
500
|
+
fontVariantAlternates: ['normal', 'historical-forms'], // 178
|
|
501
|
+
fontVariantCaps: [
|
|
502
|
+
'normal',
|
|
503
|
+
'small-caps',
|
|
504
|
+
'all-small-caps',
|
|
505
|
+
'petite-caps',
|
|
506
|
+
'all-petite-caps',
|
|
507
|
+
'unicase',
|
|
508
|
+
'titling-caps',
|
|
509
|
+
], // 179
|
|
510
|
+
fontVariantEastAsian: [
|
|
511
|
+
'normal',
|
|
512
|
+
'ruby',
|
|
513
|
+
'jis78',
|
|
514
|
+
'jis83',
|
|
515
|
+
'jis90',
|
|
516
|
+
'jis04',
|
|
517
|
+
'simplified',
|
|
518
|
+
'traditional',
|
|
519
|
+
'full-width',
|
|
520
|
+
'proportional-width',
|
|
521
|
+
], // 180
|
|
522
|
+
fontVariantEmoji: ['normal', 'text', 'emoji', 'unicode'], // 181
|
|
523
|
+
fontVariantLigatures: ['none', 'normal'], // 182
|
|
524
|
+
fontVariantNumeric: ['normal'], // 183
|
|
525
|
+
fontVariantPosition: ['normal', 'sub', 'super'], // 184
|
|
526
|
+
fontVariationSettings: [
|
|
527
|
+
'normal',
|
|
528
|
+
'"wght"',
|
|
529
|
+
'"wdth"',
|
|
530
|
+
'"slnt"',
|
|
531
|
+
'"ital"',
|
|
532
|
+
'"opsz"',
|
|
533
|
+
], // 185
|
|
534
|
+
grid: ['none'], // 186
|
|
535
|
+
gridArea: ['auto'], //187
|
|
536
|
+
gridAutoColumns: ['auto'], // 188
|
|
537
|
+
gridAutoFlow: ['row', 'column', 'dense', 'row dense', 'column dense'], // 189
|
|
538
|
+
gridAutoRows: ['auto'], // 190
|
|
539
|
+
gridColumn: ['auto'], // 191
|
|
540
|
+
gridColumnEnd: ['auto'], // 192
|
|
541
|
+
gridColumnStart: ['auto'], // 193
|
|
542
|
+
gridRow: ['auto'], // 194
|
|
543
|
+
gridRowEnd: ['auto'], // 195
|
|
544
|
+
gridRowStart: ['auto'], // 196
|
|
545
|
+
gridTemplate: ['none'], // 197
|
|
546
|
+
gridTemplateAreas: ['none'], // 198
|
|
547
|
+
gridTemplateColumns: ['none'], // 199
|
|
548
|
+
gridTemplateRows: ['none'], // 200
|
|
549
|
+
|
|
550
|
+
hangingPunctuation: [
|
|
551
|
+
'none',
|
|
552
|
+
'first',
|
|
553
|
+
'last',
|
|
554
|
+
'allow-end',
|
|
555
|
+
'force-end',
|
|
556
|
+
// 'first force-end',
|
|
557
|
+
// 'first allow-end',
|
|
558
|
+
// 'first last',
|
|
559
|
+
// 'last allow-end',
|
|
560
|
+
// 'last force-end',
|
|
561
|
+
// 'first allow-end last',
|
|
562
|
+
// 'first force-end last',
|
|
563
|
+
], // 201
|
|
564
|
+
hyphenateCharacter: ['auto'], // 202
|
|
565
|
+
hyphenateLimitChars: ['auto'], // 203
|
|
566
|
+
hyphens: ['none', 'manual', 'auto'], // 204
|
|
567
|
+
imageOrientation: ['none', 'from-image'], // 205
|
|
568
|
+
imageRendering: [
|
|
569
|
+
'auto',
|
|
570
|
+
'smooth',
|
|
571
|
+
'high-quality',
|
|
572
|
+
'crisp-edges',
|
|
573
|
+
'pixelated',
|
|
574
|
+
], // 206
|
|
575
|
+
initialLetter: ['normal'], // 207
|
|
576
|
+
inlineSize: ['auto'], // 208
|
|
577
|
+
insetBlock: ['auto'], // 209
|
|
578
|
+
insetBlockEnd: ['auto'], // 210
|
|
579
|
+
insetBlockStart: ['auto'], // 211
|
|
580
|
+
insetInline: ['auto'], // 212
|
|
581
|
+
insetInlineEnd: ['auto'], // 213
|
|
582
|
+
insetInlineStart: ['auto'], // 214
|
|
583
|
+
isolation: ['auto', 'isolate'], // 215
|
|
584
|
+
justifyContent: [
|
|
585
|
+
'normal',
|
|
586
|
+
'stretch',
|
|
587
|
+
'start',
|
|
588
|
+
'end',
|
|
589
|
+
'flex-start',
|
|
590
|
+
'flex-end',
|
|
591
|
+
'center',
|
|
592
|
+
'left',
|
|
593
|
+
'right',
|
|
594
|
+
'space-between',
|
|
595
|
+
'space-around',
|
|
596
|
+
'space-evenly',
|
|
597
|
+
...overflowAlignment,
|
|
598
|
+
'safe left',
|
|
599
|
+
'safe right',
|
|
600
|
+
'unsafe left',
|
|
601
|
+
'unsafe right',
|
|
602
|
+
], // 216
|
|
603
|
+
justifyItems: [
|
|
604
|
+
'normal',
|
|
605
|
+
'stretch',
|
|
606
|
+
'start',
|
|
607
|
+
'end',
|
|
608
|
+
'flex-start',
|
|
609
|
+
'flex-end',
|
|
610
|
+
'center',
|
|
611
|
+
'left',
|
|
612
|
+
'right',
|
|
613
|
+
'anchor-center',
|
|
614
|
+
'baseline',
|
|
615
|
+
// 'first baseline',
|
|
616
|
+
// 'last baseline',
|
|
617
|
+
// ...overflowAlignment,
|
|
618
|
+
// 'legacy left',
|
|
619
|
+
// 'legacy right',
|
|
620
|
+
// 'legacy center',
|
|
621
|
+
], // 217
|
|
622
|
+
justifySelf: [
|
|
623
|
+
'auto',
|
|
624
|
+
'normal',
|
|
625
|
+
'stretch',
|
|
626
|
+
'start',
|
|
627
|
+
'end',
|
|
628
|
+
'flex-start',
|
|
629
|
+
'flex-end',
|
|
630
|
+
'center',
|
|
631
|
+
'left',
|
|
632
|
+
'right',
|
|
633
|
+
'anchor-center',
|
|
634
|
+
'baseline',
|
|
635
|
+
'first baseline',
|
|
636
|
+
'last baseline',
|
|
637
|
+
// ...overflowAlignment,
|
|
638
|
+
// 'safe left',
|
|
639
|
+
// 'safe right',
|
|
640
|
+
// 'unsafe left',
|
|
641
|
+
// 'unsafe right',
|
|
642
|
+
// 'safe self-start',
|
|
643
|
+
// 'safe self-end',
|
|
644
|
+
// 'safe anchor-center',
|
|
645
|
+
// 'unsafe self-start',
|
|
646
|
+
// 'unsafe self-end',
|
|
647
|
+
// 'unsafe anchor-center',
|
|
648
|
+
], // 218
|
|
649
|
+
lineBreak: ['auto', 'loose', 'normal', 'strict', 'anywhere'], // 219
|
|
650
|
+
listStyleImage: ['none'], // 220
|
|
651
|
+
listStylePosition: ['inside', 'outside'], // 221
|
|
652
|
+
listStyleType: ['none'], // 222
|
|
653
|
+
marginBlock: ['auto'], // 223
|
|
654
|
+
marginBlockEnd: ['auto'], // 224
|
|
655
|
+
marginBlockStart: ['auto'], // 225
|
|
656
|
+
marginInline: ['auto'], // 226
|
|
657
|
+
marginInlineEnd: ['auto'], // 227
|
|
658
|
+
marginInlineStart: ['auto'], // 228
|
|
659
|
+
marker: ['none'], // 229
|
|
660
|
+
markerEnd: ['none'], // 230
|
|
661
|
+
markerMid: ['none'], // 231
|
|
662
|
+
markerStart: ['none'], // 232
|
|
663
|
+
mask: ['none'], // 233
|
|
664
|
+
maskBorder: ['none'], // 234
|
|
665
|
+
maskBorderMode: ['luminance', 'alpha'], // 235
|
|
666
|
+
maskBorderOutset: [], // 236
|
|
667
|
+
maskBorderRepeat: [
|
|
668
|
+
'stretch',
|
|
669
|
+
'repeat',
|
|
670
|
+
'round',
|
|
671
|
+
'space',
|
|
672
|
+
// 'stretch stretch',
|
|
673
|
+
// 'stretch repeat',
|
|
674
|
+
// 'stretch round',
|
|
675
|
+
// 'stretch space',
|
|
676
|
+
// 'repeat stretch',
|
|
677
|
+
// 'repeat repeat',
|
|
678
|
+
// 'repeat round',
|
|
679
|
+
// 'repeat space',
|
|
680
|
+
// 'round stretch',
|
|
681
|
+
// 'round repeat',
|
|
682
|
+
// 'round round',
|
|
683
|
+
// 'round space',
|
|
684
|
+
// 'space stretch',
|
|
685
|
+
// 'space repeat',
|
|
686
|
+
// 'space round',
|
|
687
|
+
// 'space space',
|
|
688
|
+
], // 237
|
|
689
|
+
maskBorderSlice: ['fill'], // 238
|
|
690
|
+
maskBorderSource: ['none'], // 239
|
|
691
|
+
maskBorderWidth: ['auto'], // 240
|
|
692
|
+
maskClip: ['no-clip'], // 241
|
|
693
|
+
maskComposite: ['add', 'subtract', 'intersect', 'exclude'], // 242
|
|
694
|
+
maskImage: ['none'], // 243
|
|
695
|
+
maskMode: ['alpha', 'luminance', 'match-source'], // 244
|
|
696
|
+
maskOrigin: [], // 245
|
|
697
|
+
maskPosition: ['top', 'bottom', 'left', 'right', 'center'], // 246
|
|
698
|
+
maskRepeat: [], // 247
|
|
699
|
+
maskSize: ['cover', 'contain'], // 248
|
|
700
|
+
maskType: ['luminance', 'alpha'], // 249
|
|
701
|
+
mathDepth: ['auto-add'], // 250
|
|
702
|
+
mathStyle: ['normal', 'compact'], // 251
|
|
703
|
+
maxBlockSize: ['none', ...lengthSubValues], // 252
|
|
704
|
+
minBlockSize: ['none', ...lengthSubValues], // 253
|
|
705
|
+
maxInlineSize: ['none', ...lengthSubValues], // 254
|
|
706
|
+
minInlineSize: ['none', ...lengthSubValues], // 255
|
|
707
|
+
mixBlendMode: [
|
|
708
|
+
'normal',
|
|
709
|
+
'multiply',
|
|
710
|
+
'screen',
|
|
711
|
+
'overlay',
|
|
712
|
+
'darken',
|
|
713
|
+
'lighten',
|
|
714
|
+
'color-dodge',
|
|
715
|
+
'color-burn',
|
|
716
|
+
'hard-light',
|
|
717
|
+
'soft-light',
|
|
718
|
+
'difference',
|
|
719
|
+
'exclusion',
|
|
720
|
+
'hue',
|
|
721
|
+
'saturation',
|
|
722
|
+
'color',
|
|
723
|
+
'luminosity',
|
|
724
|
+
'plus-darker',
|
|
725
|
+
'plus-lighter',
|
|
726
|
+
], // 256
|
|
727
|
+
|
|
728
|
+
objectFit: ['none', 'contain', 'cover', 'fill', 'scale-down'], // 257
|
|
729
|
+
objectPosition: ['top', 'bottom', 'left', 'right', 'center'], // 258
|
|
730
|
+
offset: [], // 259
|
|
731
|
+
offsetAnchor: ['auto'], // 260
|
|
732
|
+
offsetDistance: [], // 261
|
|
733
|
+
offsetPath: [], // 262
|
|
734
|
+
offsetPosition: [], // 263
|
|
735
|
+
offsetRotate: ['auto', 'reverse'], // 264
|
|
736
|
+
order: [], // 265
|
|
737
|
+
outline: [], // 266
|
|
738
|
+
// outlineColor: [], // single coloer group
|
|
739
|
+
outlineOffset: [], // 267
|
|
740
|
+
outlineStyle: [...lineStyle.filter((style) => style !== 'hidden')], // 268
|
|
741
|
+
outlineWidth: [...widthKeywords], // 269
|
|
742
|
+
overflow: [...overflowKeyword], // 270
|
|
743
|
+
overflowAnchor: ['none', 'auto'], // 271
|
|
744
|
+
overflowBlock: [...overflowKeyword], // 272
|
|
745
|
+
overflowClipMargin: ['content-box', 'padding-box', 'border-box'], // 273
|
|
746
|
+
overflowInline: [...overflowKeyword], // 274
|
|
747
|
+
overflowWrap: ['normal', 'anywhere', 'break-word'], // 275
|
|
748
|
+
overflowX: [...overflowKeyword], // 276
|
|
749
|
+
overflowY: [...overflowKeyword], // 277
|
|
750
|
+
overscrollBehavior: ['none', 'auto', 'contain'], // 278
|
|
751
|
+
overscrollBehaviorBlock: ['none', 'auto', 'contain'], // 279
|
|
752
|
+
overscrollBehaviorInline: ['none', 'auto', 'contain'], // 280
|
|
753
|
+
overscrollBehaviorX: ['none', 'auto', 'contain'], // 281
|
|
754
|
+
overscrollBehaviorY: ['none', 'auto', 'contain'], // 282
|
|
755
|
+
paddingBlock: [], // 283
|
|
756
|
+
paddingBlockEnd: [], // 284
|
|
757
|
+
paddingBlockStart: [], // 285
|
|
758
|
+
paddingInline: [], // 286
|
|
759
|
+
paddingInlineEnd: [], // 287
|
|
760
|
+
paddingInlineStart: [], // 288
|
|
761
|
+
paintOrder: ['normal'], // 289
|
|
762
|
+
perspective: ['none'], // 290
|
|
763
|
+
placeContent: [], // 291
|
|
764
|
+
placeItems: [], // 292,
|
|
765
|
+
placeSelf: [], // 293
|
|
766
|
+
pointerEvents: [
|
|
767
|
+
'none',
|
|
768
|
+
'auto',
|
|
769
|
+
'all',
|
|
770
|
+
'bounding-box',
|
|
771
|
+
'visiblePainted',
|
|
772
|
+
'visibleFill',
|
|
773
|
+
'visibleStroke',
|
|
774
|
+
'visible',
|
|
775
|
+
'painted',
|
|
776
|
+
'fill',
|
|
777
|
+
'stroke',
|
|
778
|
+
], // 294
|
|
779
|
+
printColorAdjust: ['economy', 'exact'], // 295
|
|
780
|
+
quotes: ['none', 'auto', 'match-parent'], // 296
|
|
781
|
+
r: [], // 297
|
|
782
|
+
resize: ['none', 'both', 'horizontal', 'vertical', 'block', 'inline'], // 298
|
|
783
|
+
rotate: ['none'], // 299
|
|
784
|
+
rowGap: [], // 300
|
|
785
|
+
rubyAlign: ['start', 'center', 'space-between', 'space-around'], // 301
|
|
786
|
+
rubyPosition: [
|
|
787
|
+
'over',
|
|
788
|
+
'under',
|
|
789
|
+
'alternate',
|
|
790
|
+
'alternate over',
|
|
791
|
+
'alternate under',
|
|
792
|
+
'inter-character',
|
|
793
|
+
], // 302
|
|
794
|
+
rx: ['auto'], // 303
|
|
795
|
+
ry: ['auto'], // 304
|
|
796
|
+
scale: ['none'], // 305
|
|
797
|
+
scrollBehavior: ['auto', 'smooth'], // 306
|
|
798
|
+
scrollMargin: [], // 307
|
|
799
|
+
scrollMarginBlock: [], // 308
|
|
800
|
+
scrollMarginBlockEnd: [], // 309
|
|
801
|
+
scrollMarginBlockStart: [], // 310
|
|
802
|
+
scrollMarginInline: [], // 311
|
|
803
|
+
scrollMarginInlineEnd: [], // 312
|
|
804
|
+
scrollMarginInlineStart: [], // 313
|
|
805
|
+
scrollMarginTop: [], // 314
|
|
806
|
+
scrollMarginRight: [], // 315
|
|
807
|
+
scrollMarginBottom: [], // 316
|
|
808
|
+
scrollMarginLeft: [], // 317
|
|
809
|
+
scrollPadding: [], // 318
|
|
810
|
+
scrollPaddingBlock: [], // 319
|
|
811
|
+
scrollPaddingBlockEnd: [], // 320
|
|
812
|
+
scrollPaddingBlockStart: [], // 321
|
|
813
|
+
scrollPaddingInline: [], // 322
|
|
814
|
+
scrollPaddingInlineEnd: [], // 323
|
|
815
|
+
scrollPaddingInlineStart: [], // 324
|
|
816
|
+
scrollPaddingLeft: [], // 325
|
|
817
|
+
scrollPaddingRight: [], // 326
|
|
818
|
+
scrollPaddingTop: [], // 327
|
|
819
|
+
scrollPaddingBottom: [], // 328
|
|
820
|
+
scrollSnapAlign: [
|
|
821
|
+
'none',
|
|
822
|
+
'start',
|
|
823
|
+
'end',
|
|
824
|
+
'center',
|
|
825
|
+
// 'start start',
|
|
826
|
+
// 'start center',
|
|
827
|
+
// 'start end',
|
|
828
|
+
// 'center start',
|
|
829
|
+
// 'center center',
|
|
830
|
+
// 'center end',
|
|
831
|
+
// 'end start',
|
|
832
|
+
// 'end center',
|
|
833
|
+
// 'end end',
|
|
834
|
+
], // 329
|
|
835
|
+
scrollSnapStop: ['normal', 'always'], // 330
|
|
836
|
+
scrollSnapType: [
|
|
837
|
+
'none',
|
|
838
|
+
'x',
|
|
839
|
+
'y',
|
|
840
|
+
'block',
|
|
841
|
+
'inline',
|
|
842
|
+
'both',
|
|
843
|
+
// 'x mandatory',
|
|
844
|
+
// 'x proximity',
|
|
845
|
+
// 'y mandatory',
|
|
846
|
+
// 'y proximity',
|
|
847
|
+
// 'block mandatory',
|
|
848
|
+
// 'block proximity',
|
|
849
|
+
// 'inline mandatory',
|
|
850
|
+
// 'inline proximity',
|
|
851
|
+
// 'both mandatory',
|
|
852
|
+
// 'both proximity',
|
|
853
|
+
], // 331
|
|
854
|
+
scrollbarColor: ['auto'], // 332
|
|
855
|
+
scrollbarGutter: ['auto', 'stable', 'stable both-edges'], // 333
|
|
856
|
+
scrollbarWidth: ['none', 'auto', 'thin'], // 334
|
|
857
|
+
shapeImageThreshold: [], // 335
|
|
858
|
+
shapeOutSide: ['none'], // 336
|
|
859
|
+
shapeRendering: ['auto', 'optimizeSpeed', 'crispEdges', 'geometricPrecision'], // 337
|
|
860
|
+
stopColor: [], // 338
|
|
861
|
+
stopOpacity: [], // 339
|
|
862
|
+
stroke: ['context-stroke'], // 340
|
|
863
|
+
strokeDasharray: ['none'], // 341
|
|
864
|
+
strokeDashoffset: ['none'], // 342
|
|
865
|
+
strokeLinecap: ['butt', 'round', 'square'], // 343
|
|
866
|
+
strokeLinejoin: ['miter', 'round', 'bevel'], // 344
|
|
867
|
+
strokeMiterlimit: [], // 345
|
|
868
|
+
strokeOpacity: [], // 346
|
|
869
|
+
strokeWidth: [], // 347
|
|
870
|
+
tabSize: [], // 348
|
|
871
|
+
tableLayout: ['auto', 'fixed'], // 349
|
|
872
|
+
textAlign: [...alignKeywords], // 350
|
|
873
|
+
textAlignLast: ['auto', ...alignKeywords], // 351
|
|
874
|
+
textAnchor: ['start', 'middle', 'end'], // 352
|
|
875
|
+
textCombineUpright: ['none', 'all'], // 353
|
|
876
|
+
textDecorationLine: [
|
|
877
|
+
'none',
|
|
878
|
+
'underline',
|
|
879
|
+
'overline',
|
|
880
|
+
'line-through',
|
|
881
|
+
'blink',
|
|
882
|
+
], // 354
|
|
883
|
+
textDecorationSkipInk: ['none', 'auto', 'all'], // 355
|
|
884
|
+
textDecorationStyle: ['solid', 'double', 'dotted', 'dashed', 'wavy'], // 356
|
|
885
|
+
textDecorationThickness: ['auto', 'from-font'], // 357
|
|
886
|
+
textEmphasis: [
|
|
887
|
+
'none',
|
|
888
|
+
'filled',
|
|
889
|
+
'open',
|
|
890
|
+
'dot',
|
|
891
|
+
'circle',
|
|
892
|
+
'double-circle',
|
|
893
|
+
'triangle',
|
|
894
|
+
'sesame',
|
|
895
|
+
], // 358
|
|
896
|
+
textEmphasisColor: [], // 359
|
|
897
|
+
textEmphasisPosition: [
|
|
898
|
+
'auto',
|
|
899
|
+
'over',
|
|
900
|
+
'under',
|
|
901
|
+
// 'over right',
|
|
902
|
+
// 'over left',
|
|
903
|
+
// 'under right',
|
|
904
|
+
// 'under left',
|
|
905
|
+
// 'left over',
|
|
906
|
+
// 'right over',
|
|
907
|
+
// 'right under',
|
|
908
|
+
// 'left under',
|
|
909
|
+
], // 360
|
|
910
|
+
textEmphasisStyle: [
|
|
911
|
+
'none',
|
|
912
|
+
'filled',
|
|
913
|
+
'open',
|
|
914
|
+
'dot',
|
|
915
|
+
'circle',
|
|
916
|
+
'double-circle',
|
|
917
|
+
'triangle',
|
|
918
|
+
'sesame',
|
|
919
|
+
// 'filled dot',
|
|
920
|
+
// 'filled circle',
|
|
921
|
+
// 'filled double-circle',
|
|
922
|
+
// 'filled triangle',
|
|
923
|
+
// 'filled sesame',
|
|
924
|
+
// 'open dot',
|
|
925
|
+
// 'open circle',
|
|
926
|
+
// 'open double-circle',
|
|
927
|
+
// 'open triangle',
|
|
928
|
+
// 'open sesame',
|
|
929
|
+
], // 361
|
|
930
|
+
textIndent: [], // 362
|
|
931
|
+
textJustify: ['none', 'auto', 'inter-word', 'inter-character', 'distribute'], // 363
|
|
932
|
+
textOrientation: [
|
|
933
|
+
'mixed',
|
|
934
|
+
'upright',
|
|
935
|
+
'sideways',
|
|
936
|
+
'sideways-right',
|
|
937
|
+
'use-glyph-orientation',
|
|
938
|
+
], // 364
|
|
939
|
+
textOverflow: ['clip', 'ellipsis'], // 365
|
|
940
|
+
textRendering: [
|
|
941
|
+
'auto',
|
|
942
|
+
'optimizeSpeed',
|
|
943
|
+
'optimizeLegibility',
|
|
944
|
+
'geometricPrecision',
|
|
945
|
+
], // 366
|
|
946
|
+
textShadow: [], // 367
|
|
947
|
+
textTransform: [
|
|
948
|
+
'none',
|
|
949
|
+
'captalize',
|
|
950
|
+
'uppercase',
|
|
951
|
+
'lowercase',
|
|
952
|
+
'full-width',
|
|
953
|
+
'full-size-kana',
|
|
954
|
+
'math-auto',
|
|
955
|
+
], // 368
|
|
956
|
+
textUnderlineOffset: ['auto'], // 369
|
|
957
|
+
textUnderlinePosition: [
|
|
958
|
+
'auto',
|
|
959
|
+
'under',
|
|
960
|
+
'left',
|
|
961
|
+
'right',
|
|
962
|
+
'under left',
|
|
963
|
+
'left under',
|
|
964
|
+
'under right',
|
|
965
|
+
'right under',
|
|
966
|
+
], // 370
|
|
967
|
+
textWrap: [
|
|
968
|
+
'auto',
|
|
969
|
+
'wrap',
|
|
970
|
+
'nowrap',
|
|
971
|
+
'balance',
|
|
972
|
+
'pretty',
|
|
973
|
+
'stable',
|
|
974
|
+
'avoid-orphans',
|
|
975
|
+
], // 371
|
|
976
|
+
textWrapMode: ['wrap', 'nowrap'], // 372
|
|
977
|
+
textWrapStyle: ['auto', 'balance', 'stable', 'pretty', 'avoid-orphans'], // 373
|
|
978
|
+
touchAction: ['auto', 'none'], // 374
|
|
979
|
+
transform: ['none'], // 375
|
|
980
|
+
transformBox: [
|
|
981
|
+
'content-box',
|
|
982
|
+
'border-box',
|
|
983
|
+
'fill-box',
|
|
984
|
+
'stroke-box',
|
|
985
|
+
'view-box',
|
|
986
|
+
], // 376
|
|
987
|
+
transformOrigin: [], // 377
|
|
988
|
+
transformStyle: ['flat', 'preserve-3d'], // 378
|
|
989
|
+
transition: [], // 379
|
|
990
|
+
transitionBehavior: ['normal', 'allow-discrete'], // 380
|
|
991
|
+
transitionDelay: [], // 381
|
|
992
|
+
transitionDuration: [], // 382
|
|
993
|
+
transitionProperty: ['none', 'all'], // 383
|
|
994
|
+
transitionTimingFunction: [], // 384
|
|
995
|
+
translate: ['none'], // 385
|
|
996
|
+
unicodeBibi: [
|
|
997
|
+
'normal',
|
|
998
|
+
'embed',
|
|
999
|
+
'isolate',
|
|
1000
|
+
'bibi-override',
|
|
1001
|
+
'isolate-override',
|
|
1002
|
+
'plaintext',
|
|
1003
|
+
], // 386
|
|
1004
|
+
userSelect: ['none', 'auto', 'text', 'all'], // 387
|
|
1005
|
+
vectorEffect: [
|
|
1006
|
+
'none',
|
|
1007
|
+
'non-scaling-stroke',
|
|
1008
|
+
'non-scaling-size',
|
|
1009
|
+
'non-rotation',
|
|
1010
|
+
'fixed-position',
|
|
1011
|
+
], // 388
|
|
1012
|
+
verticalAlign: [
|
|
1013
|
+
'baseline',
|
|
1014
|
+
'sub',
|
|
1015
|
+
'super',
|
|
1016
|
+
'text-top',
|
|
1017
|
+
'text-bottom',
|
|
1018
|
+
'middle',
|
|
1019
|
+
'top',
|
|
1020
|
+
'bottom',
|
|
1021
|
+
], // 389
|
|
1022
|
+
visibility: ['visible', 'hideen', 'collapse'], // 390
|
|
1023
|
+
whiteSpace: [
|
|
1024
|
+
'normal',
|
|
1025
|
+
'pre',
|
|
1026
|
+
'nowrap',
|
|
1027
|
+
'pre-wrap',
|
|
1028
|
+
'break-spaces',
|
|
1029
|
+
'pre-line',
|
|
1030
|
+
], // 391
|
|
1031
|
+
whiteSpaceCollapse: [
|
|
1032
|
+
'collapse',
|
|
1033
|
+
'discard',
|
|
1034
|
+
'preserve',
|
|
1035
|
+
'preserve-breaks',
|
|
1036
|
+
'preserve-spaces',
|
|
1037
|
+
'break-spaces',
|
|
1038
|
+
], // 392
|
|
1039
|
+
widows: [], // 393
|
|
1040
|
+
willChange: [], // 394
|
|
1041
|
+
wordBreak: ['normal', 'keep-all', 'break-all', 'break-word', 'auto-phrase'], // 395
|
|
1042
|
+
writingMode: [
|
|
1043
|
+
'horizontal-tb',
|
|
1044
|
+
'vertical-rl',
|
|
1045
|
+
'vertical-lr',
|
|
1046
|
+
'sideways-rl',
|
|
1047
|
+
'sideways-lr',
|
|
1048
|
+
], // 396
|
|
1049
|
+
zoom: ['normal', 'reset'], // 397
|
|
1050
|
+
}
|
|
1051
|
+
|
|
1052
|
+
module.exports = validData
|