@pandacss/studio 0.9.0 → 0.10.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/studio.js +49 -47
- package/dist/studio.mjs +49 -47
- package/package.json +15 -15
- package/styled-system/css/conditions.mjs +5 -116
- package/styled-system/css/css.mjs +19 -379
- package/styled-system/css/index.d.ts +2 -1
- package/styled-system/css/index.mjs +1 -0
- package/styled-system/css/sva.d.ts +4 -0
- package/styled-system/css/sva.mjs +20 -0
- package/styled-system/helpers.mjs +59 -21
- package/styled-system/jsx/aspect-ratio.mjs +1 -1
- package/styled-system/jsx/box.mjs +1 -1
- package/styled-system/jsx/center.mjs +1 -1
- package/styled-system/jsx/circle.mjs +1 -1
- package/styled-system/jsx/container.mjs +1 -1
- package/styled-system/jsx/divider.mjs +1 -1
- package/styled-system/jsx/factory.mjs +2 -2
- package/styled-system/jsx/flex.mjs +1 -1
- package/styled-system/jsx/float.mjs +1 -1
- package/styled-system/jsx/grid-item.mjs +1 -1
- package/styled-system/jsx/grid.mjs +1 -1
- package/styled-system/jsx/hstack.mjs +1 -1
- package/styled-system/jsx/is-valid-prop.mjs +8 -1018
- package/styled-system/jsx/link-box.mjs +1 -1
- package/styled-system/jsx/link-overlay.mjs +1 -1
- package/styled-system/jsx/spacer.mjs +1 -1
- package/styled-system/jsx/square.mjs +1 -1
- package/styled-system/jsx/stack.mjs +1 -1
- package/styled-system/jsx/styled-link.mjs +1 -1
- package/styled-system/jsx/vstack.mjs +1 -1
- package/styled-system/jsx/wrap.mjs +1 -1
- package/styled-system/tokens/index.css +1 -1
- package/styled-system/tokens/index.mjs +1 -1
- package/styled-system/types/global.d.ts +3 -2
- package/styled-system/types/prop-type.d.ts +5 -0
- package/styled-system/types/recipe.d.ts +65 -3
- package/styled-system/types/style-props.d.ts +3 -72
- package/styled-system/types/system-types.d.ts +3 -4
|
@@ -1,1024 +1,14 @@
|
|
|
1
|
+
import { memo } from '../helpers.mjs'
|
|
1
2
|
// src/index.ts
|
|
2
|
-
var
|
|
3
|
-
'css'
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
'
|
|
7
|
-
|
|
8
|
-
'start',
|
|
9
|
-
'flexDir',
|
|
10
|
-
'p',
|
|
11
|
-
'pl',
|
|
12
|
-
'pr',
|
|
13
|
-
'pt',
|
|
14
|
-
'pb',
|
|
15
|
-
'py',
|
|
16
|
-
'paddingY',
|
|
17
|
-
'paddingX',
|
|
18
|
-
'px',
|
|
19
|
-
'pe',
|
|
20
|
-
'paddingEnd',
|
|
21
|
-
'ps',
|
|
22
|
-
'paddingStart',
|
|
23
|
-
'ml',
|
|
24
|
-
'mr',
|
|
25
|
-
'mt',
|
|
26
|
-
'mb',
|
|
27
|
-
'm',
|
|
28
|
-
'my',
|
|
29
|
-
'marginY',
|
|
30
|
-
'mx',
|
|
31
|
-
'marginX',
|
|
32
|
-
'me',
|
|
33
|
-
'marginEnd',
|
|
34
|
-
'ms',
|
|
35
|
-
'marginStart',
|
|
36
|
-
'ringWidth',
|
|
37
|
-
'ringColor',
|
|
38
|
-
'ring',
|
|
39
|
-
'ringOffset',
|
|
40
|
-
'w',
|
|
41
|
-
'minW',
|
|
42
|
-
'maxW',
|
|
43
|
-
'h',
|
|
44
|
-
'minH',
|
|
45
|
-
'maxH',
|
|
46
|
-
'bgPosition',
|
|
47
|
-
'bgPositionX',
|
|
48
|
-
'bgPositionY',
|
|
49
|
-
'bgAttachment',
|
|
50
|
-
'bgClip',
|
|
51
|
-
'bg',
|
|
52
|
-
'bgColor',
|
|
53
|
-
'bgOrigin',
|
|
54
|
-
'bgImage',
|
|
55
|
-
'bgRepeat',
|
|
56
|
-
'bgBlendMode',
|
|
57
|
-
'bgSize',
|
|
58
|
-
'bgGradient',
|
|
59
|
-
'rounded',
|
|
60
|
-
'roundedTopLeft',
|
|
61
|
-
'roundedTopRight',
|
|
62
|
-
'roundedBottomRight',
|
|
63
|
-
'roundedBottomLeft',
|
|
64
|
-
'roundedTop',
|
|
65
|
-
'roundedRight',
|
|
66
|
-
'roundedBottom',
|
|
67
|
-
'roundedLeft',
|
|
68
|
-
'roundedStartStart',
|
|
69
|
-
'roundedStartEnd',
|
|
70
|
-
'roundedStart',
|
|
71
|
-
'roundedEndStart',
|
|
72
|
-
'roundedEndEnd',
|
|
73
|
-
'roundedEnd',
|
|
74
|
-
'borderX',
|
|
75
|
-
'borderXWidth',
|
|
76
|
-
'borderXColor',
|
|
77
|
-
'borderY',
|
|
78
|
-
'borderYWidth',
|
|
79
|
-
'borderYColor',
|
|
80
|
-
'borderStart',
|
|
81
|
-
'borderStartColor',
|
|
82
|
-
'borderEnd',
|
|
83
|
-
'borderEndColor',
|
|
84
|
-
'shadow',
|
|
85
|
-
'shadowColor',
|
|
86
|
-
'x',
|
|
87
|
-
'y',
|
|
88
|
-
'aspectRatio',
|
|
89
|
-
'boxDecorationBreak',
|
|
90
|
-
'zIndex',
|
|
91
|
-
'boxSizing',
|
|
92
|
-
'objectPosition',
|
|
93
|
-
'objectFit',
|
|
94
|
-
'overscrollBehavior',
|
|
95
|
-
'overscrollBehaviorX',
|
|
96
|
-
'overscrollBehaviorY',
|
|
97
|
-
'position',
|
|
98
|
-
'top',
|
|
99
|
-
'left',
|
|
100
|
-
'insetInline',
|
|
101
|
-
'insetBlock',
|
|
102
|
-
'inset',
|
|
103
|
-
'insetBlockEnd',
|
|
104
|
-
'insetBlockStart',
|
|
105
|
-
'insetInlineEnd',
|
|
106
|
-
'insetInlineStart',
|
|
107
|
-
'right',
|
|
108
|
-
'bottom',
|
|
109
|
-
'insetX',
|
|
110
|
-
'insetY',
|
|
111
|
-
'float',
|
|
112
|
-
'visibility',
|
|
113
|
-
'display',
|
|
114
|
-
'hideFrom',
|
|
115
|
-
'hideBelow',
|
|
116
|
-
'flexBasis',
|
|
117
|
-
'flex',
|
|
118
|
-
'flexDirection',
|
|
119
|
-
'flexGrow',
|
|
120
|
-
'flexShrink',
|
|
121
|
-
'gridTemplateColumns',
|
|
122
|
-
'gridTemplateRows',
|
|
123
|
-
'gridColumn',
|
|
124
|
-
'gridRow',
|
|
125
|
-
'gridColumnStart',
|
|
126
|
-
'gridColumnEnd',
|
|
127
|
-
'gridAutoFlow',
|
|
128
|
-
'gridAutoColumns',
|
|
129
|
-
'gridAutoRows',
|
|
130
|
-
'gap',
|
|
131
|
-
'gridGap',
|
|
132
|
-
'gridRowGap',
|
|
133
|
-
'gridColumnGap',
|
|
134
|
-
'rowGap',
|
|
135
|
-
'columnGap',
|
|
136
|
-
'justifyContent',
|
|
137
|
-
'alignContent',
|
|
138
|
-
'alignItems',
|
|
139
|
-
'alignSelf',
|
|
140
|
-
'padding',
|
|
141
|
-
'paddingLeft',
|
|
142
|
-
'paddingRight',
|
|
143
|
-
'paddingTop',
|
|
144
|
-
'paddingBottom',
|
|
145
|
-
'paddingBlock',
|
|
146
|
-
'paddingBlockEnd',
|
|
147
|
-
'paddingBlockStart',
|
|
148
|
-
'paddingInline',
|
|
149
|
-
'paddingInlineEnd',
|
|
150
|
-
'paddingInlineStart',
|
|
151
|
-
'marginLeft',
|
|
152
|
-
'marginRight',
|
|
153
|
-
'marginTop',
|
|
154
|
-
'marginBottom',
|
|
155
|
-
'margin',
|
|
156
|
-
'marginBlock',
|
|
157
|
-
'marginBlockEnd',
|
|
158
|
-
'marginBlockStart',
|
|
159
|
-
'marginInline',
|
|
160
|
-
'marginInlineEnd',
|
|
161
|
-
'marginInlineStart',
|
|
162
|
-
'outlineWidth',
|
|
163
|
-
'outlineColor',
|
|
164
|
-
'outline',
|
|
165
|
-
'outlineOffset',
|
|
166
|
-
'divideX',
|
|
167
|
-
'divideY',
|
|
168
|
-
'divideColor',
|
|
169
|
-
'divideStyle',
|
|
170
|
-
'width',
|
|
171
|
-
'inlineSize',
|
|
172
|
-
'minWidth',
|
|
173
|
-
'minInlineSize',
|
|
174
|
-
'maxWidth',
|
|
175
|
-
'maxInlineSize',
|
|
176
|
-
'height',
|
|
177
|
-
'blockSize',
|
|
178
|
-
'minHeight',
|
|
179
|
-
'minBlockSize',
|
|
180
|
-
'maxHeight',
|
|
181
|
-
'maxBlockSize',
|
|
182
|
-
'color',
|
|
183
|
-
'fontFamily',
|
|
184
|
-
'fontSize',
|
|
185
|
-
'fontWeight',
|
|
186
|
-
'fontSmoothing',
|
|
187
|
-
'fontVariantNumeric',
|
|
188
|
-
'letterSpacing',
|
|
189
|
-
'lineHeight',
|
|
190
|
-
'textAlign',
|
|
191
|
-
'textDecoration',
|
|
192
|
-
'textDecorationColor',
|
|
193
|
-
'textEmphasisColor',
|
|
194
|
-
'textDecorationStyle',
|
|
195
|
-
'textDecorationThickness',
|
|
196
|
-
'textUnderlineOffset',
|
|
197
|
-
'textTransform',
|
|
198
|
-
'textIndent',
|
|
199
|
-
'textShadow',
|
|
200
|
-
'textOverflow',
|
|
201
|
-
'verticalAlign',
|
|
202
|
-
'wordBreak',
|
|
203
|
-
'textWrap',
|
|
204
|
-
'truncate',
|
|
205
|
-
'lineClamp',
|
|
206
|
-
'listStyleType',
|
|
207
|
-
'listStylePosition',
|
|
208
|
-
'listStyleImage',
|
|
209
|
-
'backgroundPosition',
|
|
210
|
-
'backgroundPositionX',
|
|
211
|
-
'backgroundPositionY',
|
|
212
|
-
'backgroundAttachment',
|
|
213
|
-
'backgroundClip',
|
|
214
|
-
'background',
|
|
215
|
-
'backgroundColor',
|
|
216
|
-
'backgroundOrigin',
|
|
217
|
-
'backgroundImage',
|
|
218
|
-
'backgroundRepeat',
|
|
219
|
-
'backgroundBlendMode',
|
|
220
|
-
'backgroundSize',
|
|
221
|
-
'backgroundGradient',
|
|
222
|
-
'textGradient',
|
|
223
|
-
'gradientFrom',
|
|
224
|
-
'gradientTo',
|
|
225
|
-
'gradientVia',
|
|
226
|
-
'borderRadius',
|
|
227
|
-
'borderTopLeftRadius',
|
|
228
|
-
'borderTopRightRadius',
|
|
229
|
-
'borderBottomRightRadius',
|
|
230
|
-
'borderBottomLeftRadius',
|
|
231
|
-
'borderTopRadius',
|
|
232
|
-
'borderRightRadius',
|
|
233
|
-
'borderBottomRadius',
|
|
234
|
-
'borderLeftRadius',
|
|
235
|
-
'borderStartStartRadius',
|
|
236
|
-
'borderStartEndRadius',
|
|
237
|
-
'borderStartRadius',
|
|
238
|
-
'borderEndStartRadius',
|
|
239
|
-
'borderEndEndRadius',
|
|
240
|
-
'borderEndRadius',
|
|
241
|
-
'border',
|
|
242
|
-
'borderColor',
|
|
243
|
-
'borderInline',
|
|
244
|
-
'borderInlineWidth',
|
|
245
|
-
'borderInlineColor',
|
|
246
|
-
'borderBlock',
|
|
247
|
-
'borderBlockWidth',
|
|
248
|
-
'borderBlockColor',
|
|
249
|
-
'borderLeft',
|
|
250
|
-
'borderLeftColor',
|
|
251
|
-
'borderInlineStart',
|
|
252
|
-
'borderInlineStartColor',
|
|
253
|
-
'borderRight',
|
|
254
|
-
'borderRightColor',
|
|
255
|
-
'borderInlineEnd',
|
|
256
|
-
'borderInlineEndColor',
|
|
257
|
-
'borderTop',
|
|
258
|
-
'borderTopColor',
|
|
259
|
-
'borderBottom',
|
|
260
|
-
'borderBottomColor',
|
|
261
|
-
'borderBlockEnd',
|
|
262
|
-
'borderBlockEndColor',
|
|
263
|
-
'borderBlockStart',
|
|
264
|
-
'borderBlockStartColor',
|
|
265
|
-
'boxShadow',
|
|
266
|
-
'boxShadowColor',
|
|
267
|
-
'mixBlendMode',
|
|
268
|
-
'filter',
|
|
269
|
-
'brightness',
|
|
270
|
-
'contrast',
|
|
271
|
-
'grayscale',
|
|
272
|
-
'hueRotate',
|
|
273
|
-
'invert',
|
|
274
|
-
'saturate',
|
|
275
|
-
'sepia',
|
|
276
|
-
'dropShadow',
|
|
277
|
-
'blur',
|
|
278
|
-
'backdropFilter',
|
|
279
|
-
'backdropBlur',
|
|
280
|
-
'backdropBrightness',
|
|
281
|
-
'backdropContrast',
|
|
282
|
-
'backdropGrayscale',
|
|
283
|
-
'backdropHueRotate',
|
|
284
|
-
'backdropInvert',
|
|
285
|
-
'backdropOpacity',
|
|
286
|
-
'backdropSaturate',
|
|
287
|
-
'backdropSepia',
|
|
288
|
-
'borderCollapse',
|
|
289
|
-
'borderSpacing',
|
|
290
|
-
'borderSpacingX',
|
|
291
|
-
'borderSpacingY',
|
|
292
|
-
'tableLayout',
|
|
293
|
-
'transitionTimingFunction',
|
|
294
|
-
'transitionDelay',
|
|
295
|
-
'transitionDuration',
|
|
296
|
-
'transitionProperty',
|
|
297
|
-
'transition',
|
|
298
|
-
'animation',
|
|
299
|
-
'animationDelay',
|
|
300
|
-
'transformOrigin',
|
|
301
|
-
'scale',
|
|
302
|
-
'scaleX',
|
|
303
|
-
'scaleY',
|
|
304
|
-
'translate',
|
|
305
|
-
'translateX',
|
|
306
|
-
'translateY',
|
|
307
|
-
'accentColor',
|
|
308
|
-
'caretColor',
|
|
309
|
-
'scrollBehavior',
|
|
310
|
-
'scrollbar',
|
|
311
|
-
'scrollMargin',
|
|
312
|
-
'scrollMarginX',
|
|
313
|
-
'scrollMarginY',
|
|
314
|
-
'scrollMarginLeft',
|
|
315
|
-
'scrollMarginRight',
|
|
316
|
-
'scrollMarginTop',
|
|
317
|
-
'scrollMarginBottom',
|
|
318
|
-
'scrollMarginBlock',
|
|
319
|
-
'scrollMarginBlockEnd',
|
|
320
|
-
'scrollMarginBlockStart',
|
|
321
|
-
'scrollMarginInline',
|
|
322
|
-
'scrollMarginInlineEnd',
|
|
323
|
-
'scrollMarginInlineStart',
|
|
324
|
-
'scrollPadding',
|
|
325
|
-
'scrollPaddingBlock',
|
|
326
|
-
'scrollPaddingBlockStart',
|
|
327
|
-
'scrollPaddingBlockEnd',
|
|
328
|
-
'scrollPaddingInline',
|
|
329
|
-
'scrollPaddingInlineEnd',
|
|
330
|
-
'scrollPaddingInlineStart',
|
|
331
|
-
'scrollPaddingX',
|
|
332
|
-
'scrollPaddingY',
|
|
333
|
-
'scrollPaddingLeft',
|
|
334
|
-
'scrollPaddingRight',
|
|
335
|
-
'scrollPaddingTop',
|
|
336
|
-
'scrollPaddingBottom',
|
|
337
|
-
'scrollSnapAlign',
|
|
338
|
-
'scrollSnapStop',
|
|
339
|
-
'scrollSnapType',
|
|
340
|
-
'scrollSnapStrictness',
|
|
341
|
-
'scrollSnapMargin',
|
|
342
|
-
'scrollSnapMarginTop',
|
|
343
|
-
'scrollSnapMarginBottom',
|
|
344
|
-
'scrollSnapMarginLeft',
|
|
345
|
-
'scrollSnapMarginRight',
|
|
346
|
-
'touchAction',
|
|
347
|
-
'userSelect',
|
|
348
|
-
'fill',
|
|
349
|
-
'stroke',
|
|
350
|
-
'srOnly',
|
|
351
|
-
'debug',
|
|
352
|
-
'appearance',
|
|
353
|
-
'backfaceVisibility',
|
|
354
|
-
'clipPath',
|
|
355
|
-
'hyphens',
|
|
356
|
-
'mask',
|
|
357
|
-
'maskImage',
|
|
358
|
-
'maskSize',
|
|
359
|
-
'textSizeAdjust',
|
|
360
|
-
'colorPalette',
|
|
361
|
-
'textStyle',
|
|
362
|
-
'_hover',
|
|
363
|
-
'_focus',
|
|
364
|
-
'_focusWithin',
|
|
365
|
-
'_focusVisible',
|
|
366
|
-
'_disabled',
|
|
367
|
-
'_active',
|
|
368
|
-
'_visited',
|
|
369
|
-
'_target',
|
|
370
|
-
'_readOnly',
|
|
371
|
-
'_readWrite',
|
|
372
|
-
'_empty',
|
|
373
|
-
'_checked',
|
|
374
|
-
'_enabled',
|
|
375
|
-
'_expanded',
|
|
376
|
-
'_highlighted',
|
|
377
|
-
'_before',
|
|
378
|
-
'_after',
|
|
379
|
-
'_firstLetter',
|
|
380
|
-
'_firstLine',
|
|
381
|
-
'_marker',
|
|
382
|
-
'_selection',
|
|
383
|
-
'_file',
|
|
384
|
-
'_backdrop',
|
|
385
|
-
'_first',
|
|
386
|
-
'_last',
|
|
387
|
-
'_only',
|
|
388
|
-
'_even',
|
|
389
|
-
'_odd',
|
|
390
|
-
'_firstOfType',
|
|
391
|
-
'_lastOfType',
|
|
392
|
-
'_onlyOfType',
|
|
393
|
-
'_peerFocus',
|
|
394
|
-
'_peerHover',
|
|
395
|
-
'_peerActive',
|
|
396
|
-
'_peerFocusWithin',
|
|
397
|
-
'_peerFocusVisible',
|
|
398
|
-
'_peerDisabled',
|
|
399
|
-
'_peerChecked',
|
|
400
|
-
'_peerInvalid',
|
|
401
|
-
'_peerExpanded',
|
|
402
|
-
'_peerPlaceholderShown',
|
|
403
|
-
'_groupFocus',
|
|
404
|
-
'_groupHover',
|
|
405
|
-
'_groupActive',
|
|
406
|
-
'_groupFocusWithin',
|
|
407
|
-
'_groupFocusVisible',
|
|
408
|
-
'_groupDisabled',
|
|
409
|
-
'_groupChecked',
|
|
410
|
-
'_groupExpanded',
|
|
411
|
-
'_groupInvalid',
|
|
412
|
-
'_indeterminate',
|
|
413
|
-
'_required',
|
|
414
|
-
'_valid',
|
|
415
|
-
'_invalid',
|
|
416
|
-
'_autofill',
|
|
417
|
-
'_inRange',
|
|
418
|
-
'_outOfRange',
|
|
419
|
-
'_placeholder',
|
|
420
|
-
'_placeholderShown',
|
|
421
|
-
'_pressed',
|
|
422
|
-
'_selected',
|
|
423
|
-
'_default',
|
|
424
|
-
'_optional',
|
|
425
|
-
'_open',
|
|
426
|
-
'_fullscreen',
|
|
427
|
-
'_loading',
|
|
428
|
-
'_currentPage',
|
|
429
|
-
'_currentStep',
|
|
430
|
-
'_motionReduce',
|
|
431
|
-
'_motionSafe',
|
|
432
|
-
'_print',
|
|
433
|
-
'_landscape',
|
|
434
|
-
'_portrait',
|
|
435
|
-
'_dark',
|
|
436
|
-
'_light',
|
|
437
|
-
'_osDark',
|
|
438
|
-
'_osLight',
|
|
439
|
-
'_highContrast',
|
|
440
|
-
'_lessContrast',
|
|
441
|
-
'_moreContrast',
|
|
442
|
-
'_ltr',
|
|
443
|
-
'_rtl',
|
|
444
|
-
'_scrollbar',
|
|
445
|
-
'_scrollbarThumb',
|
|
446
|
-
'_scrollbarTrack',
|
|
447
|
-
'_horizontal',
|
|
448
|
-
'_vertical',
|
|
449
|
-
'sm',
|
|
450
|
-
'smOnly',
|
|
451
|
-
'smDown',
|
|
452
|
-
'md',
|
|
453
|
-
'mdOnly',
|
|
454
|
-
'mdDown',
|
|
455
|
-
'lg',
|
|
456
|
-
'lgOnly',
|
|
457
|
-
'lgDown',
|
|
458
|
-
'xl',
|
|
459
|
-
'xlOnly',
|
|
460
|
-
'xlDown',
|
|
461
|
-
'2xl',
|
|
462
|
-
'2xlOnly',
|
|
463
|
-
'smToMd',
|
|
464
|
-
'smToLg',
|
|
465
|
-
'smToXl',
|
|
466
|
-
'smTo2xl',
|
|
467
|
-
'mdToLg',
|
|
468
|
-
'mdToXl',
|
|
469
|
-
'mdTo2xl',
|
|
470
|
-
'lgToXl',
|
|
471
|
-
'lgTo2xl',
|
|
472
|
-
'xlTo2xl',
|
|
473
|
-
]
|
|
474
|
-
var allCssProperties = [
|
|
475
|
-
'MsAccelerator',
|
|
476
|
-
'MsBlockProgression',
|
|
477
|
-
'MsContentZoomChaining',
|
|
478
|
-
'MsContentZooming',
|
|
479
|
-
'MsContentZoomLimit',
|
|
480
|
-
'MsContentZoomLimitMax',
|
|
481
|
-
'MsContentZoomLimitMin',
|
|
482
|
-
'MsContentZoomSnap',
|
|
483
|
-
'MsContentZoomSnapPoints',
|
|
484
|
-
'MsContentZoomSnapType',
|
|
485
|
-
'MsFilter',
|
|
486
|
-
'MsFlowFrom',
|
|
487
|
-
'MsFlowInto',
|
|
488
|
-
'MsGridColumns',
|
|
489
|
-
'MsGridRows',
|
|
490
|
-
'MsHighContrastAdjust',
|
|
491
|
-
'MsHyphenateLimitChars',
|
|
492
|
-
'MsHyphenateLimitLines',
|
|
493
|
-
'MsHyphenateLimitZone',
|
|
494
|
-
'MsImeAlign',
|
|
495
|
-
'MsOverflowStyle',
|
|
496
|
-
'MsScrollbar3dlightColor',
|
|
497
|
-
'MsScrollbarArrowColor',
|
|
498
|
-
'MsScrollbarBaseColor',
|
|
499
|
-
'MsScrollbarDarkshadowColor',
|
|
500
|
-
'MsScrollbarFaceColor',
|
|
501
|
-
'MsScrollbarHighlightColor',
|
|
502
|
-
'MsScrollbarShadowColor',
|
|
503
|
-
'MsScrollbarTrackColor',
|
|
504
|
-
'MsScrollChaining',
|
|
505
|
-
'MsScrollLimit',
|
|
506
|
-
'MsScrollLimitXMax',
|
|
507
|
-
'MsScrollLimitXMin',
|
|
508
|
-
'MsScrollLimitYMax',
|
|
509
|
-
'MsScrollLimitYMin',
|
|
510
|
-
'MsScrollRails',
|
|
511
|
-
'MsScrollSnapPointsX',
|
|
512
|
-
'MsScrollSnapPointsY',
|
|
513
|
-
'MsScrollSnapType',
|
|
514
|
-
'MsScrollSnapX',
|
|
515
|
-
'MsScrollSnapY',
|
|
516
|
-
'MsScrollTranslation',
|
|
517
|
-
'MsTextAutospace',
|
|
518
|
-
'MsTouchSelect',
|
|
519
|
-
'MsUserSelect',
|
|
520
|
-
'MsWrapFlow',
|
|
521
|
-
'MsWrapMargin',
|
|
522
|
-
'MsWrapThrough',
|
|
523
|
-
'MozAppearance',
|
|
524
|
-
'MozBinding',
|
|
525
|
-
'MozBorderBottomColors',
|
|
526
|
-
'MozBorderLeftColors',
|
|
527
|
-
'MozBorderRightColors',
|
|
528
|
-
'MozBorderTopColors',
|
|
529
|
-
'MozContextProperties',
|
|
530
|
-
'MozFloatEdge',
|
|
531
|
-
'MozForceBrokenImageIcon',
|
|
532
|
-
'MozImageRegion',
|
|
533
|
-
'MozOrient',
|
|
534
|
-
'MozOutlineRadius',
|
|
535
|
-
'MozOutlineRadiusBottomleft',
|
|
536
|
-
'MozOutlineRadiusBottomright',
|
|
537
|
-
'MozOutlineRadiusTopleft',
|
|
538
|
-
'MozOutlineRadiusTopright',
|
|
539
|
-
'MozStackSizing',
|
|
540
|
-
'MozTextBlink',
|
|
541
|
-
'MozUserFocus',
|
|
542
|
-
'MozUserInput',
|
|
543
|
-
'MozUserModify',
|
|
544
|
-
'MozWindowDragging',
|
|
545
|
-
'MozWindowShadow',
|
|
546
|
-
'WebkitAppearance',
|
|
547
|
-
'WebkitBorderBefore',
|
|
548
|
-
'WebkitBorderBeforeColor',
|
|
549
|
-
'WebkitBorderBeforeStyle',
|
|
550
|
-
'WebkitBorderBeforeWidth',
|
|
551
|
-
'WebkitBoxReflect',
|
|
552
|
-
'WebkitLineClamp',
|
|
553
|
-
'WebkitMask',
|
|
554
|
-
'WebkitMaskAttachment',
|
|
555
|
-
'WebkitMaskClip',
|
|
556
|
-
'WebkitMaskComposite',
|
|
557
|
-
'WebkitMaskImage',
|
|
558
|
-
'WebkitMaskOrigin',
|
|
559
|
-
'WebkitMaskPosition',
|
|
560
|
-
'WebkitMaskPositionX',
|
|
561
|
-
'WebkitMaskPositionY',
|
|
562
|
-
'WebkitMaskRepeat',
|
|
563
|
-
'WebkitMaskRepeatX',
|
|
564
|
-
'WebkitMaskRepeatY',
|
|
565
|
-
'WebkitMaskSize',
|
|
566
|
-
'WebkitOverflowScrolling',
|
|
567
|
-
'WebkitTapHighlightColor',
|
|
568
|
-
'WebkitTextFillColor',
|
|
569
|
-
'WebkitTextStroke',
|
|
570
|
-
'WebkitTextStrokeColor',
|
|
571
|
-
'WebkitTextStrokeWidth',
|
|
572
|
-
'WebkitTouchCallout',
|
|
573
|
-
'WebkitUserModify',
|
|
574
|
-
'accentColor',
|
|
575
|
-
'alignContent',
|
|
576
|
-
'alignItems',
|
|
577
|
-
'alignSelf',
|
|
578
|
-
'alignTracks',
|
|
579
|
-
'all',
|
|
580
|
-
'animation',
|
|
581
|
-
'animationComposition',
|
|
582
|
-
'animationDelay',
|
|
583
|
-
'animationDirection',
|
|
584
|
-
'animationDuration',
|
|
585
|
-
'animationFillMode',
|
|
586
|
-
'animationIterationCount',
|
|
587
|
-
'animationName',
|
|
588
|
-
'animationPlayState',
|
|
589
|
-
'animationTimingFunction',
|
|
590
|
-
'animationTimeline',
|
|
591
|
-
'appearance',
|
|
592
|
-
'aspectRatio',
|
|
593
|
-
'azimuth',
|
|
594
|
-
'backdropFilter',
|
|
595
|
-
'backfaceVisibility',
|
|
596
|
-
'background',
|
|
597
|
-
'backgroundAttachment',
|
|
598
|
-
'backgroundBlendMode',
|
|
599
|
-
'backgroundClip',
|
|
600
|
-
'backgroundColor',
|
|
601
|
-
'backgroundImage',
|
|
602
|
-
'backgroundOrigin',
|
|
603
|
-
'backgroundPosition',
|
|
604
|
-
'backgroundPositionX',
|
|
605
|
-
'backgroundPositionY',
|
|
606
|
-
'backgroundRepeat',
|
|
607
|
-
'backgroundSize',
|
|
608
|
-
'blockOverflow',
|
|
609
|
-
'blockSize',
|
|
610
|
-
'border',
|
|
611
|
-
'borderBlock',
|
|
612
|
-
'borderBlockColor',
|
|
613
|
-
'borderBlockStyle',
|
|
614
|
-
'borderBlockWidth',
|
|
615
|
-
'borderBlockEnd',
|
|
616
|
-
'borderBlockEndColor',
|
|
617
|
-
'borderBlockEndStyle',
|
|
618
|
-
'borderBlockEndWidth',
|
|
619
|
-
'borderBlockStart',
|
|
620
|
-
'borderBlockStartColor',
|
|
621
|
-
'borderBlockStartStyle',
|
|
622
|
-
'borderBlockStartWidth',
|
|
623
|
-
'borderBottom',
|
|
624
|
-
'borderBottomColor',
|
|
625
|
-
'borderBottomLeftRadius',
|
|
626
|
-
'borderBottomRightRadius',
|
|
627
|
-
'borderBottomStyle',
|
|
628
|
-
'borderBottomWidth',
|
|
629
|
-
'borderCollapse',
|
|
630
|
-
'borderColor',
|
|
631
|
-
'borderEndEndRadius',
|
|
632
|
-
'borderEndStartRadius',
|
|
633
|
-
'borderImage',
|
|
634
|
-
'borderImageOutset',
|
|
635
|
-
'borderImageRepeat',
|
|
636
|
-
'borderImageSlice',
|
|
637
|
-
'borderImageSource',
|
|
638
|
-
'borderImageWidth',
|
|
639
|
-
'borderInline',
|
|
640
|
-
'borderInlineEnd',
|
|
641
|
-
'borderInlineColor',
|
|
642
|
-
'borderInlineStyle',
|
|
643
|
-
'borderInlineWidth',
|
|
644
|
-
'borderInlineEndColor',
|
|
645
|
-
'borderInlineEndStyle',
|
|
646
|
-
'borderInlineEndWidth',
|
|
647
|
-
'borderInlineStart',
|
|
648
|
-
'borderInlineStartColor',
|
|
649
|
-
'borderInlineStartStyle',
|
|
650
|
-
'borderInlineStartWidth',
|
|
651
|
-
'borderLeft',
|
|
652
|
-
'borderLeftColor',
|
|
653
|
-
'borderLeftStyle',
|
|
654
|
-
'borderLeftWidth',
|
|
655
|
-
'borderRadius',
|
|
656
|
-
'borderRight',
|
|
657
|
-
'borderRightColor',
|
|
658
|
-
'borderRightStyle',
|
|
659
|
-
'borderRightWidth',
|
|
660
|
-
'borderSpacing',
|
|
661
|
-
'borderStartEndRadius',
|
|
662
|
-
'borderStartStartRadius',
|
|
663
|
-
'borderStyle',
|
|
664
|
-
'borderTop',
|
|
665
|
-
'borderTopColor',
|
|
666
|
-
'borderTopLeftRadius',
|
|
667
|
-
'borderTopRightRadius',
|
|
668
|
-
'borderTopStyle',
|
|
669
|
-
'borderTopWidth',
|
|
670
|
-
'borderWidth',
|
|
671
|
-
'bottom',
|
|
672
|
-
'boxAlign',
|
|
673
|
-
'boxDecorationBreak',
|
|
674
|
-
'boxDirection',
|
|
675
|
-
'boxFlex',
|
|
676
|
-
'boxFlexGroup',
|
|
677
|
-
'boxLines',
|
|
678
|
-
'boxOrdinalGroup',
|
|
679
|
-
'boxOrient',
|
|
680
|
-
'boxPack',
|
|
681
|
-
'boxShadow',
|
|
682
|
-
'boxSizing',
|
|
683
|
-
'breakAfter',
|
|
684
|
-
'breakBefore',
|
|
685
|
-
'breakInside',
|
|
686
|
-
'captionSide',
|
|
687
|
-
'caret',
|
|
688
|
-
'caretColor',
|
|
689
|
-
'caretShape',
|
|
690
|
-
'clear',
|
|
691
|
-
'clip',
|
|
692
|
-
'clipPath',
|
|
693
|
-
'color',
|
|
694
|
-
'colorScheme',
|
|
695
|
-
'columnCount',
|
|
696
|
-
'columnFill',
|
|
697
|
-
'columnGap',
|
|
698
|
-
'columnRule',
|
|
699
|
-
'columnRuleColor',
|
|
700
|
-
'columnRuleStyle',
|
|
701
|
-
'columnRuleWidth',
|
|
702
|
-
'columnSpan',
|
|
703
|
-
'columnWidth',
|
|
704
|
-
'columns',
|
|
705
|
-
'contain',
|
|
706
|
-
'containIntrinsicSize',
|
|
707
|
-
'containIntrinsicBlockSize',
|
|
708
|
-
'containIntrinsicHeight',
|
|
709
|
-
'containIntrinsicInlineSize',
|
|
710
|
-
'containIntrinsicWidth',
|
|
711
|
-
'container',
|
|
712
|
-
'containerName',
|
|
713
|
-
'containerType',
|
|
714
|
-
'content',
|
|
715
|
-
'contentVisibility',
|
|
716
|
-
'counterIncrement',
|
|
717
|
-
'counterReset',
|
|
718
|
-
'counterSet',
|
|
719
|
-
'cursor',
|
|
720
|
-
'direction',
|
|
721
|
-
'display',
|
|
722
|
-
'emptyCells',
|
|
723
|
-
'filter',
|
|
724
|
-
'flex',
|
|
725
|
-
'flexBasis',
|
|
726
|
-
'flexDirection',
|
|
727
|
-
'flexFlow',
|
|
728
|
-
'flexGrow',
|
|
729
|
-
'flexShrink',
|
|
730
|
-
'flexWrap',
|
|
731
|
-
'float',
|
|
732
|
-
'font',
|
|
733
|
-
'fontFamily',
|
|
734
|
-
'fontFeatureSettings',
|
|
735
|
-
'fontKerning',
|
|
736
|
-
'fontLanguageOverride',
|
|
737
|
-
'fontOpticalSizing',
|
|
738
|
-
'fontPalette',
|
|
739
|
-
'fontVariationSettings',
|
|
740
|
-
'fontSize',
|
|
741
|
-
'fontSizeAdjust',
|
|
742
|
-
'fontSmooth',
|
|
743
|
-
'fontStretch',
|
|
744
|
-
'fontStyle',
|
|
745
|
-
'fontSynthesis',
|
|
746
|
-
'fontVariant',
|
|
747
|
-
'fontVariantAlternates',
|
|
748
|
-
'fontVariantCaps',
|
|
749
|
-
'fontVariantEastAsian',
|
|
750
|
-
'fontVariantEmoji',
|
|
751
|
-
'fontVariantLigatures',
|
|
752
|
-
'fontVariantNumeric',
|
|
753
|
-
'fontVariantPosition',
|
|
754
|
-
'fontWeight',
|
|
755
|
-
'forcedColorAdjust',
|
|
756
|
-
'gap',
|
|
757
|
-
'grid',
|
|
758
|
-
'gridArea',
|
|
759
|
-
'gridAutoColumns',
|
|
760
|
-
'gridAutoFlow',
|
|
761
|
-
'gridAutoRows',
|
|
762
|
-
'gridColumn',
|
|
763
|
-
'gridColumnEnd',
|
|
764
|
-
'gridColumnGap',
|
|
765
|
-
'gridColumnStart',
|
|
766
|
-
'gridGap',
|
|
767
|
-
'gridRow',
|
|
768
|
-
'gridRowEnd',
|
|
769
|
-
'gridRowGap',
|
|
770
|
-
'gridRowStart',
|
|
771
|
-
'gridTemplate',
|
|
772
|
-
'gridTemplateAreas',
|
|
773
|
-
'gridTemplateColumns',
|
|
774
|
-
'gridTemplateRows',
|
|
775
|
-
'hangingPunctuation',
|
|
776
|
-
'height',
|
|
777
|
-
'hyphenateCharacter',
|
|
778
|
-
'hyphenateLimitChars',
|
|
779
|
-
'hyphens',
|
|
780
|
-
'imageOrientation',
|
|
781
|
-
'imageRendering',
|
|
782
|
-
'imageResolution',
|
|
783
|
-
'imeMode',
|
|
784
|
-
'initialLetter',
|
|
785
|
-
'initialLetterAlign',
|
|
786
|
-
'inlineSize',
|
|
787
|
-
'inputSecurity',
|
|
788
|
-
'inset',
|
|
789
|
-
'insetBlock',
|
|
790
|
-
'insetBlockEnd',
|
|
791
|
-
'insetBlockStart',
|
|
792
|
-
'insetInline',
|
|
793
|
-
'insetInlineEnd',
|
|
794
|
-
'insetInlineStart',
|
|
795
|
-
'isolation',
|
|
796
|
-
'justifyContent',
|
|
797
|
-
'justifyItems',
|
|
798
|
-
'justifySelf',
|
|
799
|
-
'justifyTracks',
|
|
800
|
-
'left',
|
|
801
|
-
'letterSpacing',
|
|
802
|
-
'lineBreak',
|
|
803
|
-
'lineClamp',
|
|
804
|
-
'lineHeight',
|
|
805
|
-
'lineHeightStep',
|
|
806
|
-
'listStyle',
|
|
807
|
-
'listStyleImage',
|
|
808
|
-
'listStylePosition',
|
|
809
|
-
'listStyleType',
|
|
810
|
-
'margin',
|
|
811
|
-
'marginBlock',
|
|
812
|
-
'marginBlockEnd',
|
|
813
|
-
'marginBlockStart',
|
|
814
|
-
'marginBottom',
|
|
815
|
-
'marginInline',
|
|
816
|
-
'marginInlineEnd',
|
|
817
|
-
'marginInlineStart',
|
|
818
|
-
'marginLeft',
|
|
819
|
-
'marginRight',
|
|
820
|
-
'marginTop',
|
|
821
|
-
'marginTrim',
|
|
822
|
-
'mask',
|
|
823
|
-
'maskBorder',
|
|
824
|
-
'maskBorderMode',
|
|
825
|
-
'maskBorderOutset',
|
|
826
|
-
'maskBorderRepeat',
|
|
827
|
-
'maskBorderSlice',
|
|
828
|
-
'maskBorderSource',
|
|
829
|
-
'maskBorderWidth',
|
|
830
|
-
'maskClip',
|
|
831
|
-
'maskComposite',
|
|
832
|
-
'maskImage',
|
|
833
|
-
'maskMode',
|
|
834
|
-
'maskOrigin',
|
|
835
|
-
'maskPosition',
|
|
836
|
-
'maskRepeat',
|
|
837
|
-
'maskSize',
|
|
838
|
-
'maskType',
|
|
839
|
-
'masonryAutoFlow',
|
|
840
|
-
'mathDepth',
|
|
841
|
-
'mathShift',
|
|
842
|
-
'mathStyle',
|
|
843
|
-
'maxBlockSize',
|
|
844
|
-
'maxHeight',
|
|
845
|
-
'maxInlineSize',
|
|
846
|
-
'maxLines',
|
|
847
|
-
'maxWidth',
|
|
848
|
-
'minBlockSize',
|
|
849
|
-
'minHeight',
|
|
850
|
-
'minInlineSize',
|
|
851
|
-
'minWidth',
|
|
852
|
-
'mixBlendMode',
|
|
853
|
-
'objectFit',
|
|
854
|
-
'objectPosition',
|
|
855
|
-
'offset',
|
|
856
|
-
'offsetAnchor',
|
|
857
|
-
'offsetDistance',
|
|
858
|
-
'offsetPath',
|
|
859
|
-
'offsetPosition',
|
|
860
|
-
'offsetRotate',
|
|
861
|
-
'opacity',
|
|
862
|
-
'order',
|
|
863
|
-
'orphans',
|
|
864
|
-
'outline',
|
|
865
|
-
'outlineColor',
|
|
866
|
-
'outlineOffset',
|
|
867
|
-
'outlineStyle',
|
|
868
|
-
'outlineWidth',
|
|
869
|
-
'overflow',
|
|
870
|
-
'overflowAnchor',
|
|
871
|
-
'overflowBlock',
|
|
872
|
-
'overflowClipBox',
|
|
873
|
-
'overflowClipMargin',
|
|
874
|
-
'overflowInline',
|
|
875
|
-
'overflowWrap',
|
|
876
|
-
'overflowX',
|
|
877
|
-
'overflowY',
|
|
878
|
-
'overscrollBehavior',
|
|
879
|
-
'overscrollBehaviorBlock',
|
|
880
|
-
'overscrollBehaviorInline',
|
|
881
|
-
'overscrollBehaviorX',
|
|
882
|
-
'overscrollBehaviorY',
|
|
883
|
-
'padding',
|
|
884
|
-
'paddingBlock',
|
|
885
|
-
'paddingBlockEnd',
|
|
886
|
-
'paddingBlockStart',
|
|
887
|
-
'paddingBottom',
|
|
888
|
-
'paddingInline',
|
|
889
|
-
'paddingInlineEnd',
|
|
890
|
-
'paddingInlineStart',
|
|
891
|
-
'paddingLeft',
|
|
892
|
-
'paddingRight',
|
|
893
|
-
'paddingTop',
|
|
894
|
-
'page',
|
|
895
|
-
'pageBreakAfter',
|
|
896
|
-
'pageBreakBefore',
|
|
897
|
-
'pageBreakInside',
|
|
898
|
-
'paintOrder',
|
|
899
|
-
'perspective',
|
|
900
|
-
'perspectiveOrigin',
|
|
901
|
-
'placeContent',
|
|
902
|
-
'placeItems',
|
|
903
|
-
'placeSelf',
|
|
904
|
-
'pointerEvents',
|
|
905
|
-
'position',
|
|
906
|
-
'printColorAdjust',
|
|
907
|
-
'quotes',
|
|
908
|
-
'resize',
|
|
909
|
-
'right',
|
|
910
|
-
'rotate',
|
|
911
|
-
'rowGap',
|
|
912
|
-
'rubyAlign',
|
|
913
|
-
'rubyMerge',
|
|
914
|
-
'rubyPosition',
|
|
915
|
-
'scale',
|
|
916
|
-
'scrollbarColor',
|
|
917
|
-
'scrollbarGutter',
|
|
918
|
-
'scrollbarWidth',
|
|
919
|
-
'scrollBehavior',
|
|
920
|
-
'scrollMargin',
|
|
921
|
-
'scrollMarginBlock',
|
|
922
|
-
'scrollMarginBlockStart',
|
|
923
|
-
'scrollMarginBlockEnd',
|
|
924
|
-
'scrollMarginBottom',
|
|
925
|
-
'scrollMarginInline',
|
|
926
|
-
'scrollMarginInlineStart',
|
|
927
|
-
'scrollMarginInlineEnd',
|
|
928
|
-
'scrollMarginLeft',
|
|
929
|
-
'scrollMarginRight',
|
|
930
|
-
'scrollMarginTop',
|
|
931
|
-
'scrollPadding',
|
|
932
|
-
'scrollPaddingBlock',
|
|
933
|
-
'scrollPaddingBlockStart',
|
|
934
|
-
'scrollPaddingBlockEnd',
|
|
935
|
-
'scrollPaddingBottom',
|
|
936
|
-
'scrollPaddingInline',
|
|
937
|
-
'scrollPaddingInlineStart',
|
|
938
|
-
'scrollPaddingInlineEnd',
|
|
939
|
-
'scrollPaddingLeft',
|
|
940
|
-
'scrollPaddingRight',
|
|
941
|
-
'scrollPaddingTop',
|
|
942
|
-
'scrollSnapAlign',
|
|
943
|
-
'scrollSnapCoordinate',
|
|
944
|
-
'scrollSnapDestination',
|
|
945
|
-
'scrollSnapPointsX',
|
|
946
|
-
'scrollSnapPointsY',
|
|
947
|
-
'scrollSnapStop',
|
|
948
|
-
'scrollSnapType',
|
|
949
|
-
'scrollSnapTypeX',
|
|
950
|
-
'scrollSnapTypeY',
|
|
951
|
-
'scrollTimeline',
|
|
952
|
-
'scrollTimelineAxis',
|
|
953
|
-
'scrollTimelineName',
|
|
954
|
-
'shapeImageThreshold',
|
|
955
|
-
'shapeMargin',
|
|
956
|
-
'shapeOutside',
|
|
957
|
-
'tabSize',
|
|
958
|
-
'tableLayout',
|
|
959
|
-
'textAlign',
|
|
960
|
-
'textAlignLast',
|
|
961
|
-
'textCombineUpright',
|
|
962
|
-
'textDecoration',
|
|
963
|
-
'textDecorationColor',
|
|
964
|
-
'textDecorationLine',
|
|
965
|
-
'textDecorationSkip',
|
|
966
|
-
'textDecorationSkipInk',
|
|
967
|
-
'textDecorationStyle',
|
|
968
|
-
'textDecorationThickness',
|
|
969
|
-
'textEmphasis',
|
|
970
|
-
'textEmphasisColor',
|
|
971
|
-
'textEmphasisPosition',
|
|
972
|
-
'textEmphasisStyle',
|
|
973
|
-
'textIndent',
|
|
974
|
-
'textJustify',
|
|
975
|
-
'textOrientation',
|
|
976
|
-
'textOverflow',
|
|
977
|
-
'textRendering',
|
|
978
|
-
'textShadow',
|
|
979
|
-
'textSizeAdjust',
|
|
980
|
-
'textTransform',
|
|
981
|
-
'textUnderlineOffset',
|
|
982
|
-
'textUnderlinePosition',
|
|
983
|
-
'top',
|
|
984
|
-
'touchAction',
|
|
985
|
-
'transform',
|
|
986
|
-
'transformBox',
|
|
987
|
-
'transformOrigin',
|
|
988
|
-
'transformStyle',
|
|
989
|
-
'transition',
|
|
990
|
-
'transitionDelay',
|
|
991
|
-
'transitionDuration',
|
|
992
|
-
'transitionProperty',
|
|
993
|
-
'transitionTimingFunction',
|
|
994
|
-
'translate',
|
|
995
|
-
'unicodeBidi',
|
|
996
|
-
'userSelect',
|
|
997
|
-
'verticalAlign',
|
|
998
|
-
'viewTransitionName',
|
|
999
|
-
'visibility',
|
|
1000
|
-
'whiteSpace',
|
|
1001
|
-
'widows',
|
|
1002
|
-
'width',
|
|
1003
|
-
'willChange',
|
|
1004
|
-
'wordBreak',
|
|
1005
|
-
'wordSpacing',
|
|
1006
|
-
'wordWrap',
|
|
1007
|
-
'writingMode',
|
|
1008
|
-
'zIndex',
|
|
1009
|
-
'zoom',
|
|
1010
|
-
...userGenerated,
|
|
1011
|
-
]
|
|
3
|
+
var userGeneratedStr =
|
|
4
|
+
'css,pos,insetEnd,end,insetStart,start,flexDir,p,pl,pr,pt,pb,py,paddingY,paddingX,px,pe,paddingEnd,ps,paddingStart,ml,mr,mt,mb,m,my,marginY,mx,marginX,me,marginEnd,ms,marginStart,ringWidth,ringColor,ring,ringOffset,w,minW,maxW,h,minH,maxH,bgPosition,bgPositionX,bgPositionY,bgAttachment,bgClip,bg,bgColor,bgOrigin,bgImage,bgRepeat,bgBlendMode,bgSize,bgGradient,rounded,roundedTopLeft,roundedTopRight,roundedBottomRight,roundedBottomLeft,roundedTop,roundedRight,roundedBottom,roundedLeft,roundedStartStart,roundedStartEnd,roundedStart,roundedEndStart,roundedEndEnd,roundedEnd,borderX,borderXWidth,borderXColor,borderY,borderYWidth,borderYColor,borderStart,borderStartWidth,borderStartColor,borderEnd,borderEndWidth,borderEndColor,shadow,shadowColor,x,y,aspectRatio,boxDecorationBreak,zIndex,boxSizing,objectPosition,objectFit,overscrollBehavior,overscrollBehaviorX,overscrollBehaviorY,position,top,left,insetInline,insetBlock,inset,insetBlockEnd,insetBlockStart,insetInlineEnd,insetInlineStart,right,bottom,insetX,insetY,float,visibility,display,hideFrom,hideBelow,flexBasis,flex,flexDirection,flexGrow,flexShrink,gridTemplateColumns,gridTemplateRows,gridColumn,gridRow,gridColumnStart,gridColumnEnd,gridAutoFlow,gridAutoColumns,gridAutoRows,gap,gridGap,gridRowGap,gridColumnGap,rowGap,columnGap,justifyContent,alignContent,alignItems,alignSelf,padding,paddingLeft,paddingRight,paddingTop,paddingBottom,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingInline,paddingInlineEnd,paddingInlineStart,marginLeft,marginRight,marginTop,marginBottom,margin,marginBlock,marginBlockEnd,marginBlockStart,marginInline,marginInlineEnd,marginInlineStart,outlineWidth,outlineColor,outline,outlineOffset,divideX,divideY,divideColor,divideStyle,width,inlineSize,minWidth,minInlineSize,maxWidth,maxInlineSize,height,blockSize,minHeight,minBlockSize,maxHeight,maxBlockSize,color,fontFamily,fontSize,fontWeight,fontSmoothing,fontVariantNumeric,letterSpacing,lineHeight,textAlign,textDecoration,textDecorationColor,textEmphasisColor,textDecorationStyle,textDecorationThickness,textUnderlineOffset,textTransform,textIndent,textShadow,textOverflow,verticalAlign,wordBreak,textWrap,truncate,lineClamp,listStyleType,listStylePosition,listStyleImage,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundAttachment,backgroundClip,background,backgroundColor,backgroundOrigin,backgroundImage,backgroundRepeat,backgroundBlendMode,backgroundSize,backgroundGradient,textGradient,gradientFrom,gradientTo,gradientVia,borderRadius,borderTopLeftRadius,borderTopRightRadius,borderBottomRightRadius,borderBottomLeftRadius,borderTopRadius,borderRightRadius,borderBottomRadius,borderLeftRadius,borderStartStartRadius,borderStartEndRadius,borderStartRadius,borderEndStartRadius,borderEndEndRadius,borderEndRadius,border,borderColor,borderInline,borderInlineWidth,borderInlineColor,borderBlock,borderBlockWidth,borderBlockColor,borderLeft,borderLeftColor,borderInlineStart,borderInlineStartWidth,borderInlineStartColor,borderRight,borderRightColor,borderInlineEnd,borderInlineEndWidth,borderInlineEndColor,borderTop,borderTopColor,borderBottom,borderBottomColor,borderBlockEnd,borderBlockEndColor,borderBlockStart,borderBlockStartColor,opacity,boxShadow,boxShadowColor,mixBlendMode,filter,brightness,contrast,grayscale,hueRotate,invert,saturate,sepia,dropShadow,blur,backdropFilter,backdropBlur,backdropBrightness,backdropContrast,backdropGrayscale,backdropHueRotate,backdropInvert,backdropOpacity,backdropSaturate,backdropSepia,borderCollapse,borderSpacing,borderSpacingX,borderSpacingY,tableLayout,transitionTimingFunction,transitionDelay,transitionDuration,transitionProperty,transition,animation,animationDelay,transformOrigin,scale,scaleX,scaleY,translate,translateX,translateY,accentColor,caretColor,scrollBehavior,scrollbar,scrollMargin,scrollMarginX,scrollMarginY,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollMarginBottom,scrollMarginBlock,scrollMarginBlockEnd,scrollMarginBlockStart,scrollMarginInline,scrollMarginInlineEnd,scrollMarginInlineStart,scrollPadding,scrollPaddingBlock,scrollPaddingBlockStart,scrollPaddingBlockEnd,scrollPaddingInline,scrollPaddingInlineEnd,scrollPaddingInlineStart,scrollPaddingX,scrollPaddingY,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollPaddingBottom,scrollSnapAlign,scrollSnapStop,scrollSnapType,scrollSnapStrictness,scrollSnapMargin,scrollSnapMarginTop,scrollSnapMarginBottom,scrollSnapMarginLeft,scrollSnapMarginRight,touchAction,userSelect,fill,stroke,srOnly,debug,appearance,backfaceVisibility,clipPath,hyphens,mask,maskImage,maskSize,textSizeAdjust,colorPalette,textStyle,_hover,_focus,_focusWithin,_focusVisible,_disabled,_active,_visited,_target,_readOnly,_readWrite,_empty,_checked,_enabled,_expanded,_highlighted,_before,_after,_firstLetter,_firstLine,_marker,_selection,_file,_backdrop,_first,_last,_only,_even,_odd,_firstOfType,_lastOfType,_onlyOfType,_peerFocus,_peerHover,_peerActive,_peerFocusWithin,_peerFocusVisible,_peerDisabled,_peerChecked,_peerInvalid,_peerExpanded,_peerPlaceholderShown,_groupFocus,_groupHover,_groupActive,_groupFocusWithin,_groupFocusVisible,_groupDisabled,_groupChecked,_groupExpanded,_groupInvalid,_indeterminate,_required,_valid,_invalid,_autofill,_inRange,_outOfRange,_placeholder,_placeholderShown,_pressed,_selected,_default,_optional,_open,_fullscreen,_loading,_currentPage,_currentStep,_motionReduce,_motionSafe,_print,_landscape,_portrait,_dark,_light,_osDark,_osLight,_highContrast,_lessContrast,_moreContrast,_ltr,_rtl,_scrollbar,_scrollbarThumb,_scrollbarTrack,_horizontal,_vertical,sm,smOnly,smDown,md,mdOnly,mdDown,lg,lgOnly,lgDown,xl,xlOnly,xlDown,2xl,2xlOnly,smToMd,smToLg,smToXl,smTo2xl,mdToLg,mdToXl,mdTo2xl,lgToXl,lgTo2xl,xlTo2xl'
|
|
5
|
+
var userGenerated = userGeneratedStr.split(',')
|
|
6
|
+
var cssPropertiesStr =
|
|
7
|
+
'WebkitAppearance,WebkitBorderBefore,WebkitBorderBeforeColor,WebkitBorderBeforeStyle,WebkitBorderBeforeWidth,WebkitBoxReflect,WebkitLineClamp,WebkitMask,WebkitMaskAttachment,WebkitMaskClip,WebkitMaskComposite,WebkitMaskImage,WebkitMaskOrigin,WebkitMaskPosition,WebkitMaskPositionX,WebkitMaskPositionY,WebkitMaskRepeat,WebkitMaskRepeatX,WebkitMaskRepeatY,WebkitMaskSize,WebkitOverflowScrolling,WebkitTapHighlightColor,WebkitTextFillColor,WebkitTextStroke,WebkitTextStrokeColor,WebkitTextStrokeWidth,WebkitTouchCallout,WebkitUserModify,accentColor,alignContent,alignItems,alignSelf,alignTracks,all,animation,animationComposition,animationDelay,animationDirection,animationDuration,animationFillMode,animationIterationCount,animationName,animationPlayState,animationTimingFunction,animationTimeline,appearance,aspectRatio,azimuth,backdropFilter,backfaceVisibility,background,backgroundAttachment,backgroundBlendMode,backgroundClip,backgroundColor,backgroundImage,backgroundOrigin,backgroundPosition,backgroundPositionX,backgroundPositionY,backgroundRepeat,backgroundSize,blockOverflow,blockSize,border,borderBlock,borderBlockColor,borderBlockStyle,borderBlockWidth,borderBlockEnd,borderBlockEndColor,borderBlockEndStyle,borderBlockEndWidth,borderBlockStart,borderBlockStartColor,borderBlockStartStyle,borderBlockStartWidth,borderBottom,borderBottomColor,borderBottomLeftRadius,borderBottomRightRadius,borderBottomStyle,borderBottomWidth,borderCollapse,borderColor,borderEndEndRadius,borderEndStartRadius,borderImage,borderImageOutset,borderImageRepeat,borderImageSlice,borderImageSource,borderImageWidth,borderInline,borderInlineEnd,borderInlineColor,borderInlineStyle,borderInlineWidth,borderInlineEndColor,borderInlineEndStyle,borderInlineEndWidth,borderInlineStart,borderInlineStartColor,borderInlineStartStyle,borderInlineStartWidth,borderLeft,borderLeftColor,borderLeftStyle,borderLeftWidth,borderRadius,borderRight,borderRightColor,borderRightStyle,borderRightWidth,borderSpacing,borderStartEndRadius,borderStartStartRadius,borderStyle,borderTop,borderTopColor,borderTopLeftRadius,borderTopRightRadius,borderTopStyle,borderTopWidth,borderWidth,bottom,boxAlign,boxDecorationBreak,boxDirection,boxFlex,boxFlexGroup,boxLines,boxOrdinalGroup,boxOrient,boxPack,boxShadow,boxSizing,breakAfter,breakBefore,breakInside,captionSide,caret,caretColor,caretShape,clear,clip,clipPath,color,colorScheme,columnCount,columnFill,columnGap,columnRule,columnRuleColor,columnRuleStyle,columnRuleWidth,columnSpan,columnWidth,columns,contain,containIntrinsicSize,containIntrinsicBlockSize,containIntrinsicHeight,containIntrinsicInlineSize,containIntrinsicWidth,container,containerName,containerType,content,contentVisibility,counterIncrement,counterReset,counterSet,cursor,direction,display,emptyCells,filter,flex,flexBasis,flexDirection,flexFlow,flexGrow,flexShrink,flexWrap,float,font,fontFamily,fontFeatureSettings,fontKerning,fontLanguageOverride,fontOpticalSizing,fontPalette,fontVariationSettings,fontSize,fontSizeAdjust,fontSmooth,fontStretch,fontStyle,fontSynthesis,fontVariant,fontVariantAlternates,fontVariantCaps,fontVariantEastAsian,fontVariantEmoji,fontVariantLigatures,fontVariantNumeric,fontVariantPosition,fontWeight,forcedColorAdjust,gap,grid,gridArea,gridAutoColumns,gridAutoFlow,gridAutoRows,gridColumn,gridColumnEnd,gridColumnGap,gridColumnStart,gridGap,gridRow,gridRowEnd,gridRowGap,gridRowStart,gridTemplate,gridTemplateAreas,gridTemplateColumns,gridTemplateRows,hangingPunctuation,height,hyphenateCharacter,hyphenateLimitChars,hyphens,imageOrientation,imageRendering,imageResolution,imeMode,initialLetter,initialLetterAlign,inlineSize,inputSecurity,inset,insetBlock,insetBlockEnd,insetBlockStart,insetInline,insetInlineEnd,insetInlineStart,isolation,justifyContent,justifyItems,justifySelf,justifyTracks,left,letterSpacing,lineBreak,lineClamp,lineHeight,lineHeightStep,listStyle,listStyleImage,listStylePosition,listStyleType,margin,marginBlock,marginBlockEnd,marginBlockStart,marginBottom,marginInline,marginInlineEnd,marginInlineStart,marginLeft,marginRight,marginTop,marginTrim,mask,maskBorder,maskBorderMode,maskBorderOutset,maskBorderRepeat,maskBorderSlice,maskBorderSource,maskBorderWidth,maskClip,maskComposite,maskImage,maskMode,maskOrigin,maskPosition,maskRepeat,maskSize,maskType,masonryAutoFlow,mathDepth,mathShift,mathStyle,maxBlockSize,maxHeight,maxInlineSize,maxLines,maxWidth,minBlockSize,minHeight,minInlineSize,minWidth,mixBlendMode,objectFit,objectPosition,offset,offsetAnchor,offsetDistance,offsetPath,offsetPosition,offsetRotate,opacity,order,orphans,outline,outlineColor,outlineOffset,outlineStyle,outlineWidth,overflow,overflowAnchor,overflowBlock,overflowClipBox,overflowClipMargin,overflowInline,overflowWrap,overflowX,overflowY,overscrollBehavior,overscrollBehaviorBlock,overscrollBehaviorInline,overscrollBehaviorX,overscrollBehaviorY,padding,paddingBlock,paddingBlockEnd,paddingBlockStart,paddingBottom,paddingInline,paddingInlineEnd,paddingInlineStart,paddingLeft,paddingRight,paddingTop,page,pageBreakAfter,pageBreakBefore,pageBreakInside,paintOrder,perspective,perspectiveOrigin,placeContent,placeItems,placeSelf,pointerEvents,position,printColorAdjust,quotes,resize,right,rotate,rowGap,rubyAlign,rubyMerge,rubyPosition,scale,scrollbarColor,scrollbarGutter,scrollbarWidth,scrollBehavior,scrollMargin,scrollMarginBlock,scrollMarginBlockStart,scrollMarginBlockEnd,scrollMarginBottom,scrollMarginInline,scrollMarginInlineStart,scrollMarginInlineEnd,scrollMarginLeft,scrollMarginRight,scrollMarginTop,scrollPadding,scrollPaddingBlock,scrollPaddingBlockStart,scrollPaddingBlockEnd,scrollPaddingBottom,scrollPaddingInline,scrollPaddingInlineStart,scrollPaddingInlineEnd,scrollPaddingLeft,scrollPaddingRight,scrollPaddingTop,scrollSnapAlign,scrollSnapCoordinate,scrollSnapDestination,scrollSnapPointsX,scrollSnapPointsY,scrollSnapStop,scrollSnapType,scrollSnapTypeX,scrollSnapTypeY,scrollTimeline,scrollTimelineAxis,scrollTimelineName,shapeImageThreshold,shapeMargin,shapeOutside,tabSize,tableLayout,textAlign,textAlignLast,textCombineUpright,textDecoration,textDecorationColor,textDecorationLine,textDecorationSkip,textDecorationSkipInk,textDecorationStyle,textDecorationThickness,textEmphasis,textEmphasisColor,textEmphasisPosition,textEmphasisStyle,textIndent,textJustify,textOrientation,textOverflow,textRendering,textShadow,textSizeAdjust,textTransform,textUnderlineOffset,textUnderlinePosition,top,touchAction,transform,transformBox,transformOrigin,transformStyle,transition,transitionDelay,transitionDuration,transitionProperty,transitionTimingFunction,translate,unicodeBidi,userSelect,verticalAlign,viewTransitionName,visibility,whiteSpace,widows,width,willChange,wordBreak,wordSpacing,wordWrap,writingMode,zIndex,zoom'
|
|
8
|
+
var allCssProperties = cssPropertiesStr.split(',').concat(userGenerated)
|
|
1012
9
|
var properties = new Map(allCssProperties.map((prop) => [prop, true]))
|
|
1013
|
-
function memo(fn) {
|
|
1014
|
-
const cache = /* @__PURE__ */ Object.create(null)
|
|
1015
|
-
return (arg) => {
|
|
1016
|
-
if (cache[arg] === void 0) cache[arg] = fn(arg)
|
|
1017
|
-
return cache[arg]
|
|
1018
|
-
}
|
|
1019
|
-
}
|
|
1020
10
|
var selectorRegex = /&|@/
|
|
1021
|
-
var isCssProperty = memo((prop) => {
|
|
11
|
+
var isCssProperty = /* @__PURE__ */ memo((prop) => {
|
|
1022
12
|
return properties.has(prop) || prop.startsWith('--') || selectorRegex.test(prop)
|
|
1023
13
|
})
|
|
1024
14
|
export { allCssProperties, isCssProperty }
|