tailwindcss 3.0.0-alpha.1 → 3.0.0-alpha.2
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/CHANGELOG.md +67 -1
- package/lib/cli.js +66 -62
- package/lib/constants.js +1 -1
- package/lib/corePluginList.js +7 -1
- package/lib/corePlugins.js +264 -203
- package/lib/css/preflight.css +12 -0
- package/lib/featureFlags.js +10 -7
- package/lib/lib/collapseDuplicateDeclarations.js +29 -0
- package/lib/lib/evaluateTailwindFunctions.js +3 -3
- package/lib/lib/expandApplyAtRules.js +7 -7
- package/lib/lib/expandTailwindAtRules.js +2 -1
- package/lib/lib/generateRules.js +115 -19
- package/lib/lib/resolveDefaultsAtRules.js +44 -47
- package/lib/lib/setupContextUtils.js +72 -15
- package/lib/lib/setupWatchingContext.js +5 -1
- package/lib/lib/sharedState.js +2 -2
- package/lib/processTailwindFeatures.js +4 -0
- package/lib/util/createUtilityPlugin.js +5 -5
- package/lib/util/dataTypes.js +24 -4
- package/lib/util/formatVariantSelector.js +102 -0
- package/lib/util/nameClass.js +1 -1
- package/lib/util/negateValue.js +3 -1
- package/lib/util/normalizeConfig.js +22 -8
- package/lib/util/parseBoxShadowValue.js +77 -0
- package/lib/util/pluginUtils.js +62 -158
- package/lib/util/prefixSelector.js +1 -3
- package/lib/util/resolveConfig.js +13 -9
- package/lib/util/transformThemeValue.js +23 -13
- package/package.json +11 -11
- package/peers/index.js +873 -2505
- package/src/cli.js +9 -2
- package/src/corePluginList.js +1 -1
- package/src/corePlugins.js +282 -348
- package/src/css/preflight.css +12 -0
- package/src/featureFlags.js +10 -4
- package/src/lib/collapseDuplicateDeclarations.js +28 -0
- package/src/lib/expandTailwindAtRules.js +3 -2
- package/src/lib/generateRules.js +121 -11
- package/src/lib/resolveDefaultsAtRules.js +39 -43
- package/src/lib/setupContextUtils.js +71 -9
- package/src/lib/setupWatchingContext.js +7 -0
- package/src/lib/sharedState.js +1 -1
- package/src/processTailwindFeatures.js +5 -0
- package/src/util/createUtilityPlugin.js +2 -2
- package/src/util/dataTypes.js +32 -5
- package/src/util/formatVariantSelector.js +105 -0
- package/src/util/nameClass.js +1 -1
- package/src/util/negateValue.js +4 -2
- package/src/util/normalizeConfig.js +17 -1
- package/src/util/parseBoxShadowValue.js +71 -0
- package/src/util/pluginUtils.js +50 -146
- package/src/util/prefixSelector.js +1 -4
- package/src/util/resolveConfig.js +7 -1
- package/src/util/transformThemeValue.js +22 -7
- package/stubs/defaultConfig.stub.js +101 -58
- package/peers/.svgo.yml +0 -75
- package/peers/orders/concentric-css.json +0 -299
- package/peers/orders/smacss.json +0 -299
- package/peers/orders/source.json +0 -295
- package/src/.DS_Store +0 -0
|
@@ -203,14 +203,15 @@ module.exports = {
|
|
|
203
203
|
},
|
|
204
204
|
boxShadow: {
|
|
205
205
|
sm: '0 1px 2px 0 rgb(0 0 0 / 0.05)',
|
|
206
|
-
DEFAULT: '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px
|
|
207
|
-
md: '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -
|
|
208
|
-
lg: '0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -
|
|
209
|
-
xl: '0 20px 25px -5px rgb(0 0 0 / 0.1), 0
|
|
206
|
+
DEFAULT: '0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1)',
|
|
207
|
+
md: '0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1)',
|
|
208
|
+
lg: '0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1)',
|
|
209
|
+
xl: '0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1)',
|
|
210
210
|
'2xl': '0 25px 50px -12px rgb(0 0 0 / 0.25)',
|
|
211
|
-
inner: 'inset 0 2px 4px 0 rgb(0 0 0 / 0.
|
|
211
|
+
inner: 'inset 0 2px 4px 0 rgb(0 0 0 / 0.05)',
|
|
212
212
|
none: 'none',
|
|
213
213
|
},
|
|
214
|
+
boxShadowColor: ({ theme }) => theme('colors'),
|
|
214
215
|
caretColor: ({ theme }) => theme('colors'),
|
|
215
216
|
accentColor: ({ theme }) => ({
|
|
216
217
|
...theme('colors'),
|
|
@@ -238,6 +239,34 @@ module.exports = {
|
|
|
238
239
|
move: 'move',
|
|
239
240
|
help: 'help',
|
|
240
241
|
'not-allowed': 'not-allowed',
|
|
242
|
+
none: 'none',
|
|
243
|
+
'context-menu': 'context-menu',
|
|
244
|
+
progress: 'progress',
|
|
245
|
+
cell: 'cell',
|
|
246
|
+
crosshair: 'crosshair',
|
|
247
|
+
'vertical-text': 'vertical-text',
|
|
248
|
+
alias: 'alias',
|
|
249
|
+
copy: 'copy',
|
|
250
|
+
'no-drop': 'no-drop',
|
|
251
|
+
grab: 'grab',
|
|
252
|
+
grabbing: 'grabbing',
|
|
253
|
+
'all-scroll': 'all-scroll',
|
|
254
|
+
'col-resize': 'col-resize',
|
|
255
|
+
'row-resize': 'row-resize',
|
|
256
|
+
'n-resize': 'n-resize',
|
|
257
|
+
'e-resize': 'e-resize',
|
|
258
|
+
's-resize': 's-resize',
|
|
259
|
+
'w-resize': 'w-resize',
|
|
260
|
+
'ne-resize': 'ne-resize',
|
|
261
|
+
'nw-resize': 'nw-resize',
|
|
262
|
+
'se-resize': 'se-resize',
|
|
263
|
+
'sw-resize': 'sw-resize',
|
|
264
|
+
'ew-resize': 'ew-resize',
|
|
265
|
+
'ns-resize': 'ns-resize',
|
|
266
|
+
'nesw-resize': 'nesw-resize',
|
|
267
|
+
'nwse-resize': 'nwse-resize',
|
|
268
|
+
'zoom-in': 'zoom-in',
|
|
269
|
+
'zoom-out': 'zoom-out',
|
|
241
270
|
},
|
|
242
271
|
divideColor: ({ theme }) => theme('borderColor'),
|
|
243
272
|
divideOpacity: ({ theme }) => theme('borderOpacity'),
|
|
@@ -251,17 +280,12 @@ module.exports = {
|
|
|
251
280
|
'2xl': '0 25px 25px rgb(0 0 0 / 0.15)',
|
|
252
281
|
none: '0 0 #0000',
|
|
253
282
|
},
|
|
254
|
-
fill: {
|
|
283
|
+
fill: ({ theme }) => theme('colors'),
|
|
255
284
|
grayscale: {
|
|
256
285
|
0: '0',
|
|
257
286
|
DEFAULT: '100%',
|
|
258
287
|
},
|
|
259
288
|
hueRotate: {
|
|
260
|
-
'-180': '-180deg',
|
|
261
|
-
'-90': '-90deg',
|
|
262
|
-
'-60': '-60deg',
|
|
263
|
-
'-30': '-30deg',
|
|
264
|
-
'-15': '-15deg',
|
|
265
289
|
0: '0deg',
|
|
266
290
|
15: '15deg',
|
|
267
291
|
30: '30deg',
|
|
@@ -279,6 +303,37 @@ module.exports = {
|
|
|
279
303
|
initial: '0 1 auto',
|
|
280
304
|
none: 'none',
|
|
281
305
|
},
|
|
306
|
+
flexBasis: ({ theme }) => ({
|
|
307
|
+
auto: 'auto',
|
|
308
|
+
...theme('spacing'),
|
|
309
|
+
'1/2': '50%',
|
|
310
|
+
'1/3': '33.333333%',
|
|
311
|
+
'2/3': '66.666667%',
|
|
312
|
+
'1/4': '25%',
|
|
313
|
+
'2/4': '50%',
|
|
314
|
+
'3/4': '75%',
|
|
315
|
+
'1/5': '20%',
|
|
316
|
+
'2/5': '40%',
|
|
317
|
+
'3/5': '60%',
|
|
318
|
+
'4/5': '80%',
|
|
319
|
+
'1/6': '16.666667%',
|
|
320
|
+
'2/6': '33.333333%',
|
|
321
|
+
'3/6': '50%',
|
|
322
|
+
'4/6': '66.666667%',
|
|
323
|
+
'5/6': '83.333333%',
|
|
324
|
+
'1/12': '8.333333%',
|
|
325
|
+
'2/12': '16.666667%',
|
|
326
|
+
'3/12': '25%',
|
|
327
|
+
'4/12': '33.333333%',
|
|
328
|
+
'5/12': '41.666667%',
|
|
329
|
+
'6/12': '50%',
|
|
330
|
+
'7/12': '58.333333%',
|
|
331
|
+
'8/12': '66.666667%',
|
|
332
|
+
'9/12': '75%',
|
|
333
|
+
'10/12': '83.333333%',
|
|
334
|
+
'11/12': '91.666667%',
|
|
335
|
+
full: '100%',
|
|
336
|
+
}),
|
|
282
337
|
flexGrow: {
|
|
283
338
|
0: '0',
|
|
284
339
|
DEFAULT: '1',
|
|
@@ -478,11 +533,13 @@ module.exports = {
|
|
|
478
533
|
'5/6': '83.333333%',
|
|
479
534
|
full: '100%',
|
|
480
535
|
screen: '100vh',
|
|
536
|
+
min: 'min-content',
|
|
537
|
+
max: 'max-content',
|
|
538
|
+
fit: 'fit-content',
|
|
481
539
|
}),
|
|
482
|
-
inset: ({ theme
|
|
540
|
+
inset: ({ theme }) => ({
|
|
483
541
|
auto: 'auto',
|
|
484
542
|
...theme('spacing'),
|
|
485
|
-
...negative(theme('spacing')),
|
|
486
543
|
'1/2': '50%',
|
|
487
544
|
'1/3': '33.333333%',
|
|
488
545
|
'2/3': '66.666667%',
|
|
@@ -490,13 +547,6 @@ module.exports = {
|
|
|
490
547
|
'2/4': '50%',
|
|
491
548
|
'3/4': '75%',
|
|
492
549
|
full: '100%',
|
|
493
|
-
'-1/2': '-50%',
|
|
494
|
-
'-1/3': '-33.333333%',
|
|
495
|
-
'-2/3': '-66.666667%',
|
|
496
|
-
'-1/4': '-25%',
|
|
497
|
-
'-2/4': '-50%',
|
|
498
|
-
'-3/4': '-75%',
|
|
499
|
-
'-full': '-100%',
|
|
500
550
|
}),
|
|
501
551
|
keyframes: {
|
|
502
552
|
spin: {
|
|
@@ -555,15 +605,17 @@ module.exports = {
|
|
|
555
605
|
disc: 'disc',
|
|
556
606
|
decimal: 'decimal',
|
|
557
607
|
},
|
|
558
|
-
margin: ({ theme
|
|
608
|
+
margin: ({ theme }) => ({
|
|
559
609
|
auto: 'auto',
|
|
560
610
|
...theme('spacing'),
|
|
561
|
-
...negative(theme('spacing')),
|
|
562
611
|
}),
|
|
563
612
|
maxHeight: ({ theme }) => ({
|
|
564
613
|
...theme('spacing'),
|
|
565
614
|
full: '100%',
|
|
566
615
|
screen: '100vh',
|
|
616
|
+
min: 'min-content',
|
|
617
|
+
max: 'max-content',
|
|
618
|
+
fit: 'fit-content',
|
|
567
619
|
}),
|
|
568
620
|
maxWidth: ({ theme, breakpoints }) => ({
|
|
569
621
|
none: 'none',
|
|
@@ -582,6 +634,7 @@ module.exports = {
|
|
|
582
634
|
full: '100%',
|
|
583
635
|
min: 'min-content',
|
|
584
636
|
max: 'max-content',
|
|
637
|
+
fit: 'fit-content',
|
|
585
638
|
prose: '65ch',
|
|
586
639
|
...breakpoints(theme('screens')),
|
|
587
640
|
}),
|
|
@@ -589,12 +642,16 @@ module.exports = {
|
|
|
589
642
|
0: '0px',
|
|
590
643
|
full: '100%',
|
|
591
644
|
screen: '100vh',
|
|
645
|
+
min: 'min-content',
|
|
646
|
+
max: 'max-content',
|
|
647
|
+
fit: 'fit-content',
|
|
592
648
|
},
|
|
593
649
|
minWidth: {
|
|
594
650
|
0: '0px',
|
|
595
651
|
full: '100%',
|
|
596
652
|
min: 'min-content',
|
|
597
653
|
max: 'max-content',
|
|
654
|
+
fit: 'fit-content',
|
|
598
655
|
},
|
|
599
656
|
objectPosition: {
|
|
600
657
|
bottom: 'bottom',
|
|
@@ -641,14 +698,24 @@ module.exports = {
|
|
|
641
698
|
11: '11',
|
|
642
699
|
12: '12',
|
|
643
700
|
},
|
|
644
|
-
outline: {
|
|
645
|
-
none: ['2px solid transparent', '2px'],
|
|
646
|
-
white: ['2px dotted white', '2px'],
|
|
647
|
-
black: ['2px dotted black', '2px'],
|
|
648
|
-
},
|
|
649
701
|
padding: ({ theme }) => theme('spacing'),
|
|
650
702
|
placeholderColor: ({ theme }) => theme('colors'),
|
|
651
703
|
placeholderOpacity: ({ theme }) => theme('opacity'),
|
|
704
|
+
outlineColor: ({ theme }) => theme('colors'),
|
|
705
|
+
outlineOffset: {
|
|
706
|
+
0: '0px',
|
|
707
|
+
1: '1px',
|
|
708
|
+
2: '2px',
|
|
709
|
+
4: '4px',
|
|
710
|
+
8: '8px',
|
|
711
|
+
},
|
|
712
|
+
outlineWidth: {
|
|
713
|
+
0: '0px',
|
|
714
|
+
1: '1px',
|
|
715
|
+
2: '2px',
|
|
716
|
+
4: '4px',
|
|
717
|
+
8: '8px',
|
|
718
|
+
},
|
|
652
719
|
ringColor: ({ theme }) => ({
|
|
653
720
|
DEFAULT: theme('colors.blue.500', '#3b82f6'),
|
|
654
721
|
...theme('colors'),
|
|
@@ -674,14 +741,6 @@ module.exports = {
|
|
|
674
741
|
8: '8px',
|
|
675
742
|
},
|
|
676
743
|
rotate: {
|
|
677
|
-
'-180': '-180deg',
|
|
678
|
-
'-90': '-90deg',
|
|
679
|
-
'-45': '-45deg',
|
|
680
|
-
'-12': '-12deg',
|
|
681
|
-
'-6': '-6deg',
|
|
682
|
-
'-3': '-3deg',
|
|
683
|
-
'-2': '-2deg',
|
|
684
|
-
'-1': '-1deg',
|
|
685
744
|
0: '0deg',
|
|
686
745
|
1: '1deg',
|
|
687
746
|
2: '2deg',
|
|
@@ -711,9 +770,8 @@ module.exports = {
|
|
|
711
770
|
125: '1.25',
|
|
712
771
|
150: '1.5',
|
|
713
772
|
},
|
|
714
|
-
scrollMargin: ({ theme
|
|
773
|
+
scrollMargin: ({ theme }) => ({
|
|
715
774
|
...theme('spacing'),
|
|
716
|
-
...negative(theme('spacing')),
|
|
717
775
|
}),
|
|
718
776
|
scrollPadding: ({ theme }) => theme('spacing'),
|
|
719
777
|
sepia: {
|
|
@@ -721,11 +779,6 @@ module.exports = {
|
|
|
721
779
|
DEFAULT: '100%',
|
|
722
780
|
},
|
|
723
781
|
skew: {
|
|
724
|
-
'-12': '-12deg',
|
|
725
|
-
'-6': '-6deg',
|
|
726
|
-
'-3': '-3deg',
|
|
727
|
-
'-2': '-2deg',
|
|
728
|
-
'-1': '-1deg',
|
|
729
782
|
0: '0deg',
|
|
730
783
|
1: '1deg',
|
|
731
784
|
2: '2deg',
|
|
@@ -733,22 +786,19 @@ module.exports = {
|
|
|
733
786
|
6: '6deg',
|
|
734
787
|
12: '12deg',
|
|
735
788
|
},
|
|
736
|
-
space: ({ theme
|
|
789
|
+
space: ({ theme }) => ({
|
|
737
790
|
...theme('spacing'),
|
|
738
|
-
...negative(theme('spacing')),
|
|
739
791
|
}),
|
|
740
|
-
stroke: {
|
|
741
|
-
current: 'currentColor',
|
|
742
|
-
},
|
|
792
|
+
stroke: ({ theme }) => theme('colors'),
|
|
743
793
|
strokeWidth: {
|
|
744
794
|
0: '0',
|
|
745
795
|
1: '1',
|
|
746
796
|
2: '2',
|
|
747
797
|
},
|
|
748
798
|
textColor: ({ theme }) => theme('colors'),
|
|
749
|
-
|
|
799
|
+
textDecorationColor: ({ theme }) => theme('colors'),
|
|
800
|
+
textIndent: ({ theme }) => ({
|
|
750
801
|
...theme('spacing'),
|
|
751
|
-
...negative(theme('spacing')),
|
|
752
802
|
}),
|
|
753
803
|
textOpacity: ({ theme }) => theme('opacity'),
|
|
754
804
|
transformOrigin: {
|
|
@@ -800,9 +850,8 @@ module.exports = {
|
|
|
800
850
|
out: 'cubic-bezier(0, 0, 0.2, 1)',
|
|
801
851
|
'in-out': 'cubic-bezier(0.4, 0, 0.2, 1)',
|
|
802
852
|
},
|
|
803
|
-
translate: ({ theme
|
|
853
|
+
translate: ({ theme }) => ({
|
|
804
854
|
...theme('spacing'),
|
|
805
|
-
...negative(theme('spacing')),
|
|
806
855
|
'1/2': '50%',
|
|
807
856
|
'1/3': '33.333333%',
|
|
808
857
|
'2/3': '66.666667%',
|
|
@@ -810,13 +859,6 @@ module.exports = {
|
|
|
810
859
|
'2/4': '50%',
|
|
811
860
|
'3/4': '75%',
|
|
812
861
|
full: '100%',
|
|
813
|
-
'-1/2': '-50%',
|
|
814
|
-
'-1/3': '-33.333333%',
|
|
815
|
-
'-2/3': '-66.666667%',
|
|
816
|
-
'-1/4': '-25%',
|
|
817
|
-
'-2/4': '-50%',
|
|
818
|
-
'-3/4': '-75%',
|
|
819
|
-
'-full': '-100%',
|
|
820
862
|
}),
|
|
821
863
|
width: ({ theme }) => ({
|
|
822
864
|
auto: 'auto',
|
|
@@ -851,6 +893,7 @@ module.exports = {
|
|
|
851
893
|
screen: '100vw',
|
|
852
894
|
min: 'min-content',
|
|
853
895
|
max: 'max-content',
|
|
896
|
+
fit: 'fit-content',
|
|
854
897
|
}),
|
|
855
898
|
willChange: {
|
|
856
899
|
auto: 'auto',
|
package/peers/.svgo.yml
DELETED
|
@@ -1,75 +0,0 @@
|
|
|
1
|
-
# replace default config
|
|
2
|
-
|
|
3
|
-
# multipass: true
|
|
4
|
-
# full: true
|
|
5
|
-
|
|
6
|
-
plugins:
|
|
7
|
-
|
|
8
|
-
# - name
|
|
9
|
-
#
|
|
10
|
-
# or:
|
|
11
|
-
# - name: false
|
|
12
|
-
# - name: true
|
|
13
|
-
#
|
|
14
|
-
# or:
|
|
15
|
-
# - name:
|
|
16
|
-
# param1: 1
|
|
17
|
-
# param2: 2
|
|
18
|
-
|
|
19
|
-
- removeDoctype
|
|
20
|
-
- removeXMLProcInst
|
|
21
|
-
- removeComments
|
|
22
|
-
- removeMetadata
|
|
23
|
-
- removeXMLNS
|
|
24
|
-
- removeEditorsNSData
|
|
25
|
-
- cleanupAttrs
|
|
26
|
-
- inlineStyles
|
|
27
|
-
- minifyStyles
|
|
28
|
-
- convertStyleToAttrs
|
|
29
|
-
- cleanupIDs
|
|
30
|
-
- prefixIds
|
|
31
|
-
- removeRasterImages
|
|
32
|
-
- removeUselessDefs
|
|
33
|
-
- cleanupNumericValues
|
|
34
|
-
- cleanupListOfValues
|
|
35
|
-
- convertColors
|
|
36
|
-
- removeUnknownsAndDefaults
|
|
37
|
-
- removeNonInheritableGroupAttrs
|
|
38
|
-
- removeUselessStrokeAndFill
|
|
39
|
-
- removeViewBox
|
|
40
|
-
- cleanupEnableBackground
|
|
41
|
-
- removeHiddenElems
|
|
42
|
-
- removeEmptyText
|
|
43
|
-
- convertShapeToPath
|
|
44
|
-
- convertEllipseToCircle
|
|
45
|
-
- moveElemsAttrsToGroup
|
|
46
|
-
- moveGroupAttrsToElems
|
|
47
|
-
- collapseGroups
|
|
48
|
-
- convertPathData
|
|
49
|
-
- convertTransform
|
|
50
|
-
- removeEmptyAttrs
|
|
51
|
-
- removeEmptyContainers
|
|
52
|
-
- mergePaths
|
|
53
|
-
- removeUnusedNS
|
|
54
|
-
- sortAttrs
|
|
55
|
-
- sortDefsChildren
|
|
56
|
-
- removeTitle
|
|
57
|
-
- removeDesc
|
|
58
|
-
- removeDimensions
|
|
59
|
-
- removeAttrs
|
|
60
|
-
- removeAttributesBySelector
|
|
61
|
-
- removeElementsByAttr
|
|
62
|
-
- addClassesToSVGElement
|
|
63
|
-
- removeStyleElement
|
|
64
|
-
- removeScriptElement
|
|
65
|
-
- addAttributesToSVGElement
|
|
66
|
-
- removeOffCanvasPaths
|
|
67
|
-
- reusePaths
|
|
68
|
-
|
|
69
|
-
# configure the indent (default 4 spaces) used by `--pretty` here:
|
|
70
|
-
#
|
|
71
|
-
# @see https://github.com/svg/svgo/blob/master/lib/svgo/js2svg.js#L6 for more config options
|
|
72
|
-
#
|
|
73
|
-
# js2svg:
|
|
74
|
-
# pretty: true
|
|
75
|
-
# indent: ' '
|
|
@@ -1,299 +0,0 @@
|
|
|
1
|
-
[
|
|
2
|
-
"all",
|
|
3
|
-
"display",
|
|
4
|
-
"position",
|
|
5
|
-
"top",
|
|
6
|
-
"right",
|
|
7
|
-
"bottom",
|
|
8
|
-
"left",
|
|
9
|
-
"offset-inline-start",
|
|
10
|
-
"offset-inline-end",
|
|
11
|
-
"offset-block-start",
|
|
12
|
-
"offset-block-end",
|
|
13
|
-
"grid",
|
|
14
|
-
"grid-area",
|
|
15
|
-
"grid-auto-columns",
|
|
16
|
-
"grid-auto-flow",
|
|
17
|
-
"grid-auto-rows",
|
|
18
|
-
"grid-column",
|
|
19
|
-
"grid-column-end",
|
|
20
|
-
"grid-column-start",
|
|
21
|
-
"grid-row",
|
|
22
|
-
"grid-row-end",
|
|
23
|
-
"grid-row-start",
|
|
24
|
-
"grid-template",
|
|
25
|
-
"grid-template-areas",
|
|
26
|
-
"grid-template-columns",
|
|
27
|
-
"grid-template-rows",
|
|
28
|
-
"flex",
|
|
29
|
-
"flex-basis",
|
|
30
|
-
"flex-direction",
|
|
31
|
-
"flex-flow",
|
|
32
|
-
"flex-grow",
|
|
33
|
-
"flex-shrink",
|
|
34
|
-
"flex-wrap",
|
|
35
|
-
"box-decoration-break",
|
|
36
|
-
"place-content",
|
|
37
|
-
"place-items",
|
|
38
|
-
"place-self",
|
|
39
|
-
"align-content",
|
|
40
|
-
"align-items",
|
|
41
|
-
"align-self",
|
|
42
|
-
"justify-content",
|
|
43
|
-
"justify-items",
|
|
44
|
-
"justify-self",
|
|
45
|
-
"vertical-align",
|
|
46
|
-
"order",
|
|
47
|
-
"float",
|
|
48
|
-
"clear",
|
|
49
|
-
"shape-margin",
|
|
50
|
-
"shape-outside",
|
|
51
|
-
"shape-image-threshold",
|
|
52
|
-
"orphans",
|
|
53
|
-
"columns",
|
|
54
|
-
"column-gap",
|
|
55
|
-
"column-fill",
|
|
56
|
-
"column-rule",
|
|
57
|
-
"column-rule-color",
|
|
58
|
-
"column-rule-style",
|
|
59
|
-
"column-rule-width",
|
|
60
|
-
"column-span",
|
|
61
|
-
"column-count",
|
|
62
|
-
"column-width",
|
|
63
|
-
"break-before",
|
|
64
|
-
"break-after",
|
|
65
|
-
"break-inside",
|
|
66
|
-
"page-break-before",
|
|
67
|
-
"page-break-after",
|
|
68
|
-
"page-break-inside",
|
|
69
|
-
"transform",
|
|
70
|
-
"transform-box",
|
|
71
|
-
"transform-origin",
|
|
72
|
-
"transform-style",
|
|
73
|
-
"rotate",
|
|
74
|
-
"scale",
|
|
75
|
-
|
|
76
|
-
"perspective",
|
|
77
|
-
"perspective-origin",
|
|
78
|
-
"visibility",
|
|
79
|
-
"opacity",
|
|
80
|
-
"z-index",
|
|
81
|
-
"mix-blend-mode",
|
|
82
|
-
"backface-visibility",
|
|
83
|
-
"backdrop-filter",
|
|
84
|
-
"clip-path",
|
|
85
|
-
"mask",
|
|
86
|
-
"mask-clip",
|
|
87
|
-
"mask-image",
|
|
88
|
-
"mask-origin",
|
|
89
|
-
"mask-position",
|
|
90
|
-
"mask-repeat",
|
|
91
|
-
"mask-size",
|
|
92
|
-
"mask-type",
|
|
93
|
-
"filter",
|
|
94
|
-
"animation",
|
|
95
|
-
"animation-name",
|
|
96
|
-
"animation-duration",
|
|
97
|
-
"animation-fill-mode",
|
|
98
|
-
"animation-play-state",
|
|
99
|
-
"animation-timing-function",
|
|
100
|
-
"animation-delay",
|
|
101
|
-
"animation-iteration-count",
|
|
102
|
-
"animation-direction",
|
|
103
|
-
"transition",
|
|
104
|
-
"transition-delay",
|
|
105
|
-
"transition-duration",
|
|
106
|
-
"transition-property",
|
|
107
|
-
"transition-timing-function",
|
|
108
|
-
"will-change",
|
|
109
|
-
"counter-increment",
|
|
110
|
-
"counter-reset",
|
|
111
|
-
"cursor",
|
|
112
|
-
|
|
113
|
-
"box-sizing",
|
|
114
|
-
"margin",
|
|
115
|
-
"margin-top",
|
|
116
|
-
"margin-right",
|
|
117
|
-
"margin-bottom",
|
|
118
|
-
"margin-left",
|
|
119
|
-
"margin-inline-start",
|
|
120
|
-
"margin-inline-end",
|
|
121
|
-
"margin-block-start",
|
|
122
|
-
"margin-block-end",
|
|
123
|
-
"outline",
|
|
124
|
-
"outline-color",
|
|
125
|
-
"outline-offset",
|
|
126
|
-
"outline-style",
|
|
127
|
-
"outline-width",
|
|
128
|
-
"box-shadow",
|
|
129
|
-
"border",
|
|
130
|
-
"border-top",
|
|
131
|
-
"border-right",
|
|
132
|
-
"border-bottom",
|
|
133
|
-
"border-left",
|
|
134
|
-
"border-width",
|
|
135
|
-
"border-top-width",
|
|
136
|
-
"border-right-width",
|
|
137
|
-
"border-bottom-width",
|
|
138
|
-
"border-left-width",
|
|
139
|
-
"border-style",
|
|
140
|
-
"border-top-style",
|
|
141
|
-
"border-right-style",
|
|
142
|
-
"border-bottom-style",
|
|
143
|
-
"border-left-style",
|
|
144
|
-
"border-radius",
|
|
145
|
-
"border-top-right-radius",
|
|
146
|
-
"border-top-left-radius",
|
|
147
|
-
"border-bottom-right-radius",
|
|
148
|
-
"border-bottom-left-radius",
|
|
149
|
-
"border-color",
|
|
150
|
-
"border-top-color",
|
|
151
|
-
"border-right-color",
|
|
152
|
-
"border-bottom-color",
|
|
153
|
-
"border-left-color",
|
|
154
|
-
"border-inline-start",
|
|
155
|
-
"border-inline-start-color",
|
|
156
|
-
"border-inline-start-style",
|
|
157
|
-
"border-inline-start-width",
|
|
158
|
-
"border-inline-end",
|
|
159
|
-
"border-inline-end-color",
|
|
160
|
-
"border-inline-end-style",
|
|
161
|
-
"border-inline-end-width",
|
|
162
|
-
"border-block-start",
|
|
163
|
-
"border-block-start-color",
|
|
164
|
-
"border-block-start-style",
|
|
165
|
-
"border-block-start-width",
|
|
166
|
-
"border-block-end",
|
|
167
|
-
"border-block-end-color",
|
|
168
|
-
"border-block-end-style",
|
|
169
|
-
"border-block-end-width",
|
|
170
|
-
"border-image",
|
|
171
|
-
"border-image-outset",
|
|
172
|
-
"border-image-repeat",
|
|
173
|
-
"border-image-slice",
|
|
174
|
-
"border-image-source",
|
|
175
|
-
"border-image-width",
|
|
176
|
-
"border-collapse",
|
|
177
|
-
"border-spacing",
|
|
178
|
-
"background",
|
|
179
|
-
"background-attachment",
|
|
180
|
-
"background-blend-mode",
|
|
181
|
-
"background-clip",
|
|
182
|
-
"background-color",
|
|
183
|
-
"background-image",
|
|
184
|
-
"background-origin",
|
|
185
|
-
"background-position",
|
|
186
|
-
"background-position-x",
|
|
187
|
-
"background-position-y",
|
|
188
|
-
"background-repeat",
|
|
189
|
-
"background-size",
|
|
190
|
-
"isolation",
|
|
191
|
-
"padding",
|
|
192
|
-
"padding-top",
|
|
193
|
-
"padding-right",
|
|
194
|
-
"padding-bottom",
|
|
195
|
-
"padding-left",
|
|
196
|
-
"padding-inline-start",
|
|
197
|
-
"padding-inline-end",
|
|
198
|
-
"padding-block-start",
|
|
199
|
-
"padding-block-end",
|
|
200
|
-
"image-orientation",
|
|
201
|
-
"image-rendering",
|
|
202
|
-
|
|
203
|
-
"width",
|
|
204
|
-
"min-width",
|
|
205
|
-
"max-width",
|
|
206
|
-
"height",
|
|
207
|
-
"min-height",
|
|
208
|
-
"max-height",
|
|
209
|
-
"inline-size",
|
|
210
|
-
"min-inline-size",
|
|
211
|
-
"max-inline-size",
|
|
212
|
-
"block-size",
|
|
213
|
-
"min-block-size",
|
|
214
|
-
"max-block-size",
|
|
215
|
-
"table-layout",
|
|
216
|
-
"caption-side",
|
|
217
|
-
"empty-cells",
|
|
218
|
-
"overflow",
|
|
219
|
-
"overflow-x",
|
|
220
|
-
"overflow-y",
|
|
221
|
-
"resize",
|
|
222
|
-
"object-fit",
|
|
223
|
-
"object-position",
|
|
224
|
-
"scroll-behavior",
|
|
225
|
-
"scroll-snap-coordinate",
|
|
226
|
-
"scroll-snap-destination",
|
|
227
|
-
"scroll-snap-type",
|
|
228
|
-
"touch-action",
|
|
229
|
-
"pointer-events",
|
|
230
|
-
|
|
231
|
-
"ruby-align",
|
|
232
|
-
"ruby-position",
|
|
233
|
-
"color",
|
|
234
|
-
"caret-color",
|
|
235
|
-
"font",
|
|
236
|
-
"font-family",
|
|
237
|
-
"font-feature-settings",
|
|
238
|
-
"font-kerning",
|
|
239
|
-
"font-language-override",
|
|
240
|
-
"font-size",
|
|
241
|
-
"font-optical-sizing",
|
|
242
|
-
"font-size-adjust",
|
|
243
|
-
"font-stretch",
|
|
244
|
-
"font-style",
|
|
245
|
-
"font-synthesis",
|
|
246
|
-
"font-variant",
|
|
247
|
-
"font-variant-alternates",
|
|
248
|
-
"font-variant-caps",
|
|
249
|
-
"font-variant-east-asian",
|
|
250
|
-
"font-variant-ligatures",
|
|
251
|
-
"font-variant-numeric",
|
|
252
|
-
"font-variant-position",
|
|
253
|
-
"font-weight",
|
|
254
|
-
"hyphens",
|
|
255
|
-
"initial-letter",
|
|
256
|
-
"initial-letter-align",
|
|
257
|
-
"letter-spacing",
|
|
258
|
-
"line-break",
|
|
259
|
-
"line-height",
|
|
260
|
-
"list-style",
|
|
261
|
-
"list-style-image",
|
|
262
|
-
"list-style-position",
|
|
263
|
-
"list-style-type",
|
|
264
|
-
"writing-mode",
|
|
265
|
-
"direction",
|
|
266
|
-
"unicode-bidi",
|
|
267
|
-
"unicode-range",
|
|
268
|
-
"user-select",
|
|
269
|
-
"text-combine-upright",
|
|
270
|
-
"text-align",
|
|
271
|
-
"text-align-last",
|
|
272
|
-
"text-decoration",
|
|
273
|
-
"text-decoration-color",
|
|
274
|
-
"text-decoration-line",
|
|
275
|
-
"text-decoration-skip",
|
|
276
|
-
"text-decoration-style",
|
|
277
|
-
"text-decoration-skip-ink",
|
|
278
|
-
"text-emphasis",
|
|
279
|
-
"text-emphasis-position",
|
|
280
|
-
"text-emphasis-color",
|
|
281
|
-
"text-emphasis-style",
|
|
282
|
-
"text-indent",
|
|
283
|
-
"text-justify",
|
|
284
|
-
"text-underline-position",
|
|
285
|
-
"text-orientation",
|
|
286
|
-
"text-overflow",
|
|
287
|
-
"text-rendering",
|
|
288
|
-
"text-shadow",
|
|
289
|
-
"text-size-adjust",
|
|
290
|
-
"text-transform",
|
|
291
|
-
"white-space",
|
|
292
|
-
"word-break",
|
|
293
|
-
"word-spacing",
|
|
294
|
-
"overflow-wrap",
|
|
295
|
-
"quotes",
|
|
296
|
-
"tab-size",
|
|
297
|
-
"content",
|
|
298
|
-
"widows"
|
|
299
|
-
]
|