@plumeria/eslint-plugin 0.19.2 → 0.19.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.
- package/README.md +2 -2
- package/dist/index.d.ts +16 -0
- package/dist/index.js +48 -0
- package/dist/rules/no-destructure.d.ts +2 -0
- package/dist/rules/no-destructure.js +45 -0
- package/dist/rules/no-inner-call.d.ts +2 -0
- package/dist/rules/no-inner-call.js +65 -0
- package/dist/rules/no-unused-keys.d.ts +2 -0
- package/dist/rules/no-unused-keys.js +87 -0
- package/dist/rules/sort-properties.d.ts +2 -0
- package/dist/rules/sort-properties.js +114 -0
- package/dist/rules/validate-values.d.ts +2 -0
- package/dist/rules/validate-values.js +2073 -0
- package/dist/util/colorData.d.ts +2 -0
- package/dist/util/colorData.js +186 -0
- package/dist/util/place.d.ts +5 -0
- package/dist/util/place.js +230 -0
- package/dist/util/propertyGroups.d.ts +5 -0
- package/dist/util/propertyGroups.js +508 -0
- package/dist/util/unitData.d.ts +2 -0
- package/dist/util/unitData.js +37 -0
- package/dist/util/validData.d.ts +4 -0
- package/dist/util/validData.js +844 -0
- package/package.json +9 -4
- package/lib/index.d.ts +0 -19
- package/lib/index.js +0 -51
- package/lib/rules/no-destructure.js +0 -52
- package/lib/rules/no-inner-call.js +0 -69
- package/lib/rules/no-unused-keys.js +0 -111
- package/lib/rules/sort-properties.js +0 -131
- package/lib/rules/validate-values.js +0 -2479
- package/lib/util/colorData.js +0 -211
- package/lib/util/place.js +0 -306
- package/lib/util/propertyGroups.js +0 -557
- package/lib/util/unitData.js +0 -42
- package/lib/util/validData.js +0 -1052
|
@@ -0,0 +1,508 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.propertyGroups = void 0;
|
|
4
|
+
exports.propertyGroups = [
|
|
5
|
+
{
|
|
6
|
+
properties: ['composes'],
|
|
7
|
+
},
|
|
8
|
+
{
|
|
9
|
+
properties: ['all'],
|
|
10
|
+
},
|
|
11
|
+
{
|
|
12
|
+
properties: [
|
|
13
|
+
'position',
|
|
14
|
+
'inset',
|
|
15
|
+
'insetBlock',
|
|
16
|
+
'insetBlockStart',
|
|
17
|
+
'insetBlockEnd',
|
|
18
|
+
'insetInline',
|
|
19
|
+
'insetInlineStart',
|
|
20
|
+
'insetInlineEnd',
|
|
21
|
+
'top',
|
|
22
|
+
'right',
|
|
23
|
+
'bottom',
|
|
24
|
+
'left',
|
|
25
|
+
'zIndex',
|
|
26
|
+
'float',
|
|
27
|
+
'clear',
|
|
28
|
+
],
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
properties: ['boxSizing', 'display', 'visibility'],
|
|
32
|
+
},
|
|
33
|
+
{
|
|
34
|
+
properties: [
|
|
35
|
+
'flex',
|
|
36
|
+
'flexGrow',
|
|
37
|
+
'flexShrink',
|
|
38
|
+
'flexBasis',
|
|
39
|
+
'flexFlow',
|
|
40
|
+
'flexDirection',
|
|
41
|
+
'flexWrap',
|
|
42
|
+
'WebkitBoxOrient',
|
|
43
|
+
],
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
properties: [
|
|
47
|
+
'grid',
|
|
48
|
+
'gridArea',
|
|
49
|
+
'gridTemplate',
|
|
50
|
+
'gridTemplateAreas',
|
|
51
|
+
'gridTemplateRows',
|
|
52
|
+
'gridTemplateColumns',
|
|
53
|
+
'gridRow',
|
|
54
|
+
'gridRowStart',
|
|
55
|
+
'gridRowEnd',
|
|
56
|
+
'gridColumn',
|
|
57
|
+
'gridColumnStart',
|
|
58
|
+
'gridColumnEnd',
|
|
59
|
+
'gridAutoRows',
|
|
60
|
+
'gridAutoColumns',
|
|
61
|
+
'gridAutoFlow',
|
|
62
|
+
'gridGap',
|
|
63
|
+
'gridRowGap',
|
|
64
|
+
'gridColumnGap',
|
|
65
|
+
],
|
|
66
|
+
},
|
|
67
|
+
{
|
|
68
|
+
properties: [
|
|
69
|
+
'gap',
|
|
70
|
+
'rowGap',
|
|
71
|
+
'columnGap',
|
|
72
|
+
'placeContent',
|
|
73
|
+
'placeItems',
|
|
74
|
+
'placeSelf',
|
|
75
|
+
'alignContent',
|
|
76
|
+
'alignItems',
|
|
77
|
+
'alignSelf',
|
|
78
|
+
'justifyContent',
|
|
79
|
+
'justifyItems',
|
|
80
|
+
'justifySelf',
|
|
81
|
+
],
|
|
82
|
+
},
|
|
83
|
+
{
|
|
84
|
+
properties: ['order'],
|
|
85
|
+
},
|
|
86
|
+
{
|
|
87
|
+
properties: [
|
|
88
|
+
'inlineSize',
|
|
89
|
+
'minInlineSize',
|
|
90
|
+
'maxInlineSize',
|
|
91
|
+
'width',
|
|
92
|
+
'minWidth',
|
|
93
|
+
'maxWidth',
|
|
94
|
+
'blockSize',
|
|
95
|
+
'minBlockSize',
|
|
96
|
+
'maxBlockSize',
|
|
97
|
+
'height',
|
|
98
|
+
'minHeight',
|
|
99
|
+
'maxHeight',
|
|
100
|
+
'aspectRatio',
|
|
101
|
+
],
|
|
102
|
+
},
|
|
103
|
+
{
|
|
104
|
+
properties: [
|
|
105
|
+
'padding',
|
|
106
|
+
'paddingBlock',
|
|
107
|
+
'paddingBlockStart',
|
|
108
|
+
'paddingBlockEnd',
|
|
109
|
+
'paddingInline',
|
|
110
|
+
'paddingInlineStart',
|
|
111
|
+
'paddingInlineEnd',
|
|
112
|
+
'paddingTop',
|
|
113
|
+
'paddingRight',
|
|
114
|
+
'paddingBottom',
|
|
115
|
+
'paddingLeft',
|
|
116
|
+
'margin',
|
|
117
|
+
'marginBlock',
|
|
118
|
+
'marginBlockStart',
|
|
119
|
+
'marginBlockEnd',
|
|
120
|
+
'marginInline',
|
|
121
|
+
'marginInlineStart',
|
|
122
|
+
'marginInlineEnd',
|
|
123
|
+
'marginTop',
|
|
124
|
+
'marginRight',
|
|
125
|
+
'marginBottom',
|
|
126
|
+
'marginLeft',
|
|
127
|
+
],
|
|
128
|
+
},
|
|
129
|
+
{
|
|
130
|
+
properties: [
|
|
131
|
+
'overflow',
|
|
132
|
+
'overflowInline',
|
|
133
|
+
'overflowBlock',
|
|
134
|
+
'overflowX',
|
|
135
|
+
'overflowY',
|
|
136
|
+
'scrollbarGutter',
|
|
137
|
+
'WebkitOverflowScrolling',
|
|
138
|
+
'msOverflowX',
|
|
139
|
+
'msOverflowY',
|
|
140
|
+
'msOverflowStyle',
|
|
141
|
+
'textOverflow',
|
|
142
|
+
'WebkitLineClamp',
|
|
143
|
+
'lineClamp',
|
|
144
|
+
'scrollBehaviour',
|
|
145
|
+
],
|
|
146
|
+
},
|
|
147
|
+
{
|
|
148
|
+
properties: [
|
|
149
|
+
'overscrollBehavior',
|
|
150
|
+
'overscrollBehaviorInline',
|
|
151
|
+
'overscrollBehaviorBlock',
|
|
152
|
+
'overscrollBehaviorX',
|
|
153
|
+
'overscrollBehaviorY',
|
|
154
|
+
],
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
properties: [
|
|
158
|
+
'font',
|
|
159
|
+
'fontFamily',
|
|
160
|
+
'fontSize',
|
|
161
|
+
'fontSizeAdjust',
|
|
162
|
+
'fontVariationSettings',
|
|
163
|
+
'fontStyle',
|
|
164
|
+
'fontWeight',
|
|
165
|
+
'fontOpticalSizing',
|
|
166
|
+
'fontStretch',
|
|
167
|
+
'fontFeatureSettings',
|
|
168
|
+
'fontKerning',
|
|
169
|
+
'fontVariant',
|
|
170
|
+
'fontVariantLigatures',
|
|
171
|
+
'fontVariantCaps',
|
|
172
|
+
'fontVariantAlternates',
|
|
173
|
+
'fontVariantNumeric',
|
|
174
|
+
'fontVariantEastAsian',
|
|
175
|
+
'fontVariantPosition',
|
|
176
|
+
'WebkitFontSmoothing',
|
|
177
|
+
'MozOsxFontSmoothing',
|
|
178
|
+
'fontSmooth',
|
|
179
|
+
],
|
|
180
|
+
},
|
|
181
|
+
{
|
|
182
|
+
properties: [
|
|
183
|
+
'lineHeight',
|
|
184
|
+
'verticalAlign',
|
|
185
|
+
'alignmentBaseline',
|
|
186
|
+
'baselineShift',
|
|
187
|
+
'dominantBaseline',
|
|
188
|
+
],
|
|
189
|
+
},
|
|
190
|
+
{
|
|
191
|
+
properties: [
|
|
192
|
+
'color',
|
|
193
|
+
'WebkitTextFillColor',
|
|
194
|
+
'WebkitTextStroke',
|
|
195
|
+
'WebkitTextStrokeWidth',
|
|
196
|
+
'WebkitTextStrokeColor',
|
|
197
|
+
],
|
|
198
|
+
},
|
|
199
|
+
{
|
|
200
|
+
properties: [
|
|
201
|
+
'textAlign',
|
|
202
|
+
'textAlignLast',
|
|
203
|
+
'textJustify',
|
|
204
|
+
'textIndent',
|
|
205
|
+
'textTransform',
|
|
206
|
+
'wordSpacing',
|
|
207
|
+
'letterSpacing',
|
|
208
|
+
'hyphens',
|
|
209
|
+
'wordBreak',
|
|
210
|
+
'textWrap',
|
|
211
|
+
'wordWrap',
|
|
212
|
+
'overflowWrap',
|
|
213
|
+
'tabSize',
|
|
214
|
+
'whiteSpace',
|
|
215
|
+
],
|
|
216
|
+
},
|
|
217
|
+
{
|
|
218
|
+
properties: [
|
|
219
|
+
'textEmphasis',
|
|
220
|
+
'textEmphasisColor',
|
|
221
|
+
'textEmphasisStyle',
|
|
222
|
+
'textEmphasisPosition',
|
|
223
|
+
'textDecoration',
|
|
224
|
+
'textDecorationLine',
|
|
225
|
+
'textDecorationThickness',
|
|
226
|
+
'textDecorationStyle',
|
|
227
|
+
'textDecorationColor',
|
|
228
|
+
'textUnderlinePosition',
|
|
229
|
+
'textUnderlineOffset',
|
|
230
|
+
'textShadow',
|
|
231
|
+
],
|
|
232
|
+
},
|
|
233
|
+
{
|
|
234
|
+
properties: [
|
|
235
|
+
'src',
|
|
236
|
+
'fontDisplay',
|
|
237
|
+
'unicodeRange',
|
|
238
|
+
'sizeAdjust',
|
|
239
|
+
'ascentOverride',
|
|
240
|
+
'descentOverride',
|
|
241
|
+
'lineGapOverride',
|
|
242
|
+
],
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
properties: [
|
|
246
|
+
'appearance',
|
|
247
|
+
'accentColor',
|
|
248
|
+
'pointerEvents',
|
|
249
|
+
'msTouchAction',
|
|
250
|
+
'touchAction',
|
|
251
|
+
'cursor',
|
|
252
|
+
'caretColor',
|
|
253
|
+
'zoom',
|
|
254
|
+
'resize',
|
|
255
|
+
'userSelect',
|
|
256
|
+
'WebkitUserSelect',
|
|
257
|
+
'navIndex',
|
|
258
|
+
'navUp',
|
|
259
|
+
'navRight',
|
|
260
|
+
'navDown',
|
|
261
|
+
'navLeft',
|
|
262
|
+
'outline',
|
|
263
|
+
'outlineWidth',
|
|
264
|
+
'outlineStyle',
|
|
265
|
+
'outlineColor',
|
|
266
|
+
'outlineOffset',
|
|
267
|
+
],
|
|
268
|
+
},
|
|
269
|
+
{
|
|
270
|
+
properties: ['colorScheme'],
|
|
271
|
+
},
|
|
272
|
+
{
|
|
273
|
+
properties: [
|
|
274
|
+
'tableLayout',
|
|
275
|
+
'emptyCells',
|
|
276
|
+
'captionSide',
|
|
277
|
+
'borderSpacing',
|
|
278
|
+
'borderCollapse',
|
|
279
|
+
],
|
|
280
|
+
},
|
|
281
|
+
{
|
|
282
|
+
properties: ['content', 'quotes'],
|
|
283
|
+
},
|
|
284
|
+
{
|
|
285
|
+
properties: [
|
|
286
|
+
'listStyle',
|
|
287
|
+
'listStylePosition',
|
|
288
|
+
'listStyleType',
|
|
289
|
+
'listStyleImage',
|
|
290
|
+
'counterReset',
|
|
291
|
+
'counterSet',
|
|
292
|
+
'counterIncrement',
|
|
293
|
+
],
|
|
294
|
+
},
|
|
295
|
+
{
|
|
296
|
+
properties: [
|
|
297
|
+
'scrollSnapType',
|
|
298
|
+
'scrollSnapAlign',
|
|
299
|
+
'scrollSnapStop',
|
|
300
|
+
'scrollPadding',
|
|
301
|
+
'scrollPaddingBlock',
|
|
302
|
+
'scrollPaddingBlockStart',
|
|
303
|
+
'scrollPaddingBlockEnd',
|
|
304
|
+
'scrollPaddingInline',
|
|
305
|
+
'scrollPaddingInlineStart',
|
|
306
|
+
'scrollPaddingInlineEnd',
|
|
307
|
+
'scrollPaddingTop',
|
|
308
|
+
'scrollPaddingRight',
|
|
309
|
+
'scrollPaddingBottom',
|
|
310
|
+
'scrollPaddingLeft',
|
|
311
|
+
'scrollMargin',
|
|
312
|
+
'scrollMarginBlock',
|
|
313
|
+
'scrollMarginBlockStart',
|
|
314
|
+
'scrollMarginBlockEnd',
|
|
315
|
+
'scrollMarginInline',
|
|
316
|
+
'scrollMarginInlineStart',
|
|
317
|
+
'scrollMarginInlineEnd',
|
|
318
|
+
'scrollMarginTop',
|
|
319
|
+
'scrollMarginRight',
|
|
320
|
+
'scrollMarginBottom',
|
|
321
|
+
'scrollMarginLeft',
|
|
322
|
+
],
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
properties: ['scrollbarColor', 'scrollbarWidth'],
|
|
326
|
+
},
|
|
327
|
+
{
|
|
328
|
+
properties: [
|
|
329
|
+
'objectFit',
|
|
330
|
+
'objectPosition',
|
|
331
|
+
'msInterpolationMode',
|
|
332
|
+
'imageOrientation',
|
|
333
|
+
'imageRendering',
|
|
334
|
+
'imageResolution',
|
|
335
|
+
],
|
|
336
|
+
},
|
|
337
|
+
{
|
|
338
|
+
properties: [
|
|
339
|
+
'background',
|
|
340
|
+
'backgroundColor',
|
|
341
|
+
'backgroundImage',
|
|
342
|
+
'backgroundRepeat',
|
|
343
|
+
'backgroundAttachment',
|
|
344
|
+
'backgroundPosition',
|
|
345
|
+
'backgroundPositionX',
|
|
346
|
+
'backgroundPositionY',
|
|
347
|
+
'backgroundClip',
|
|
348
|
+
'backgroundOrigin',
|
|
349
|
+
'backgroundSize',
|
|
350
|
+
'border',
|
|
351
|
+
'borderColor',
|
|
352
|
+
'borderStyle',
|
|
353
|
+
'borderWidth',
|
|
354
|
+
'borderBlock',
|
|
355
|
+
'borderBlockStart',
|
|
356
|
+
'borderBlockStartColor',
|
|
357
|
+
'borderBlockStartStyle',
|
|
358
|
+
'borderBlockStartWidth',
|
|
359
|
+
'borderBlockEnd',
|
|
360
|
+
'borderBlockEndColor',
|
|
361
|
+
'borderBlockEndStyle',
|
|
362
|
+
'borderBlockEndWidth',
|
|
363
|
+
'borderInline',
|
|
364
|
+
'borderInlineStart',
|
|
365
|
+
'borderInlineStartColor',
|
|
366
|
+
'borderInlineStartStyle',
|
|
367
|
+
'borderInlineStartWidth',
|
|
368
|
+
'borderInlineEnd',
|
|
369
|
+
'borderInlineEndColor',
|
|
370
|
+
'borderInlineEndStyle',
|
|
371
|
+
'borderInlineEndWidth',
|
|
372
|
+
'borderTop',
|
|
373
|
+
'borderTopColor',
|
|
374
|
+
'borderTopStyle',
|
|
375
|
+
'borderTopWidth',
|
|
376
|
+
'borderRight',
|
|
377
|
+
'borderRightColor',
|
|
378
|
+
'borderRightStyle',
|
|
379
|
+
'borderRightWidth',
|
|
380
|
+
'borderBottom',
|
|
381
|
+
'borderBottomColor',
|
|
382
|
+
'borderBottomStyle',
|
|
383
|
+
'borderBottomWidth',
|
|
384
|
+
'borderLeft',
|
|
385
|
+
'borderLeftColor',
|
|
386
|
+
'borderLeftStyle',
|
|
387
|
+
'borderLeftWidth',
|
|
388
|
+
'borderRadius',
|
|
389
|
+
'borderStartStartRadius',
|
|
390
|
+
'borderStartEndRadius',
|
|
391
|
+
'borderEndStartRadius',
|
|
392
|
+
'borderEndEndRadius',
|
|
393
|
+
'borderTopLeftRadius',
|
|
394
|
+
'borderTopRightRadius',
|
|
395
|
+
'borderBottomRightRadius',
|
|
396
|
+
'borderBottomLeftRadius',
|
|
397
|
+
'borderImage',
|
|
398
|
+
'borderImageSource',
|
|
399
|
+
'borderImageSlice',
|
|
400
|
+
'borderImageWidth',
|
|
401
|
+
'borderImageOutset',
|
|
402
|
+
'borderImageRepeat',
|
|
403
|
+
'boxShadow',
|
|
404
|
+
],
|
|
405
|
+
},
|
|
406
|
+
{
|
|
407
|
+
properties: ['backgroundBlendMode', 'isolation', 'mixBlendMode'],
|
|
408
|
+
},
|
|
409
|
+
{
|
|
410
|
+
properties: ['filter', 'backdropFilter'],
|
|
411
|
+
},
|
|
412
|
+
{
|
|
413
|
+
properties: [
|
|
414
|
+
'clip',
|
|
415
|
+
'clipPath',
|
|
416
|
+
'maskBorder',
|
|
417
|
+
'maskBorderSource',
|
|
418
|
+
'maskBorderSlice',
|
|
419
|
+
'maskBorderWidth',
|
|
420
|
+
'maskBorderOutset',
|
|
421
|
+
'maskBorderRepeat',
|
|
422
|
+
'maskBorderMode',
|
|
423
|
+
'mask',
|
|
424
|
+
'maskImage',
|
|
425
|
+
'maskMode',
|
|
426
|
+
'maskRepeat',
|
|
427
|
+
'maskPosition',
|
|
428
|
+
'maskClip',
|
|
429
|
+
'maskOrigin',
|
|
430
|
+
'maskSize',
|
|
431
|
+
'maskComposite',
|
|
432
|
+
],
|
|
433
|
+
},
|
|
434
|
+
{
|
|
435
|
+
properties: ['writingMode'],
|
|
436
|
+
},
|
|
437
|
+
{
|
|
438
|
+
properties: [
|
|
439
|
+
'textAnchor',
|
|
440
|
+
'fill',
|
|
441
|
+
'fillRule',
|
|
442
|
+
'fillOpacity',
|
|
443
|
+
'stroke',
|
|
444
|
+
'strokeOpacity',
|
|
445
|
+
'strokeWidth',
|
|
446
|
+
'strokeLinecap',
|
|
447
|
+
'strokeLinejoin',
|
|
448
|
+
'strokeMiterlimit',
|
|
449
|
+
'strokeDasharray',
|
|
450
|
+
'strokeDashoffset',
|
|
451
|
+
'colorInterpolation',
|
|
452
|
+
'colorInterpolationFilters',
|
|
453
|
+
'floodColor',
|
|
454
|
+
'floodOpacity',
|
|
455
|
+
'lightingColor',
|
|
456
|
+
'markerStart',
|
|
457
|
+
'markerMid',
|
|
458
|
+
'markerEnd',
|
|
459
|
+
'stopColor',
|
|
460
|
+
'stopOpacity',
|
|
461
|
+
'shapeRendering',
|
|
462
|
+
],
|
|
463
|
+
},
|
|
464
|
+
{
|
|
465
|
+
properties: [
|
|
466
|
+
'transform',
|
|
467
|
+
'transformOrigin',
|
|
468
|
+
'rotate',
|
|
469
|
+
'scale',
|
|
470
|
+
'translate',
|
|
471
|
+
'perspective',
|
|
472
|
+
'perspectiveOrigin',
|
|
473
|
+
],
|
|
474
|
+
},
|
|
475
|
+
{
|
|
476
|
+
properties: [
|
|
477
|
+
'transition',
|
|
478
|
+
'transitionDelay',
|
|
479
|
+
'transitionTimingFunction',
|
|
480
|
+
'transitionDuration',
|
|
481
|
+
'transitionProperty',
|
|
482
|
+
],
|
|
483
|
+
},
|
|
484
|
+
{
|
|
485
|
+
properties: [
|
|
486
|
+
'animation',
|
|
487
|
+
'animationName',
|
|
488
|
+
'animationDuration',
|
|
489
|
+
'animationTimingFunction',
|
|
490
|
+
'animationDelay',
|
|
491
|
+
'animationIterationCount',
|
|
492
|
+
'animationDirection',
|
|
493
|
+
'animationPlayState',
|
|
494
|
+
],
|
|
495
|
+
},
|
|
496
|
+
{
|
|
497
|
+
properties: ['willChange'],
|
|
498
|
+
},
|
|
499
|
+
{
|
|
500
|
+
properties: [
|
|
501
|
+
'breakBefore',
|
|
502
|
+
'breakAfter',
|
|
503
|
+
'breakInside',
|
|
504
|
+
'widows',
|
|
505
|
+
'orphans',
|
|
506
|
+
],
|
|
507
|
+
},
|
|
508
|
+
];
|
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.unitData = void 0;
|
|
4
|
+
const unitData = [
|
|
5
|
+
'px',
|
|
6
|
+
'cm',
|
|
7
|
+
'mm',
|
|
8
|
+
'Q',
|
|
9
|
+
'in',
|
|
10
|
+
'pc',
|
|
11
|
+
'pt',
|
|
12
|
+
'cap',
|
|
13
|
+
'ch',
|
|
14
|
+
'em',
|
|
15
|
+
'ex',
|
|
16
|
+
'ic',
|
|
17
|
+
'lh',
|
|
18
|
+
'rcap',
|
|
19
|
+
'rch',
|
|
20
|
+
'rem',
|
|
21
|
+
'rex',
|
|
22
|
+
'ric',
|
|
23
|
+
'rlh',
|
|
24
|
+
'vh',
|
|
25
|
+
'vw',
|
|
26
|
+
'vmin',
|
|
27
|
+
'vmax',
|
|
28
|
+
'vb',
|
|
29
|
+
'vi',
|
|
30
|
+
'svw',
|
|
31
|
+
'svh',
|
|
32
|
+
'lvw',
|
|
33
|
+
'lvh',
|
|
34
|
+
'dvw',
|
|
35
|
+
'dvh',
|
|
36
|
+
];
|
|
37
|
+
exports.unitData = unitData;
|