@webstudio-is/css-data 0.51.0 → 0.52.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/lib/__generated__/keyword-values.js +1329 -333
- package/lib/cjs/__generated__/{keyword-values.cjs → keyword-values.js} +1329 -333
- package/lib/cjs/package.json +1 -0
- package/lib/types/bin/mdn-data.d.ts +1 -0
- package/lib/types/src/__generated__/keyword-values.d.ts +349 -0
- package/lib/types/src/__generated__/properties.d.ts +3537 -0
- package/lib/types/src/__generated__/units.d.ts +12 -0
- package/lib/types/src/index.d.ts +4 -0
- package/lib/types/src/popularity-index.d.ts +6 -0
- package/lib/types/src/schema.d.ts +6615 -0
- package/package.json +6 -5
- package/src/__generated__/keyword-values.ts +1236 -240
- /package/lib/cjs/__generated__/{properties.cjs → properties.js} +0 -0
- /package/lib/cjs/__generated__/{units.cjs → units.js} +0 -0
- /package/lib/cjs/{index.cjs → index.js} +0 -0
- /package/lib/cjs/{popularity-index.cjs → popularity-index.js} +0 -0
- /package/lib/cjs/{schema.cjs → schema.js} +0 -0
|
@@ -151,7 +151,7 @@ export const keywordValues = {
|
|
|
151
151
|
"whitesmoke",
|
|
152
152
|
"yellow",
|
|
153
153
|
"yellowgreen",
|
|
154
|
-
"
|
|
154
|
+
"currentColor",
|
|
155
155
|
"ActiveBorder",
|
|
156
156
|
"ActiveCaption",
|
|
157
157
|
"AppWorkspace",
|
|
@@ -180,6 +180,9 @@ export const keywordValues = {
|
|
|
180
180
|
"Window",
|
|
181
181
|
"WindowFrame",
|
|
182
182
|
"WindowText",
|
|
183
|
+
"initial",
|
|
184
|
+
"inherit",
|
|
185
|
+
"unset",
|
|
183
186
|
],
|
|
184
187
|
alignContent: [
|
|
185
188
|
"normal",
|
|
@@ -197,6 +200,9 @@ export const keywordValues = {
|
|
|
197
200
|
"end",
|
|
198
201
|
"flex-start",
|
|
199
202
|
"flex-end",
|
|
203
|
+
"initial",
|
|
204
|
+
"inherit",
|
|
205
|
+
"unset",
|
|
200
206
|
],
|
|
201
207
|
alignItems: [
|
|
202
208
|
"normal",
|
|
@@ -213,6 +219,9 @@ export const keywordValues = {
|
|
|
213
219
|
"self-end",
|
|
214
220
|
"flex-start",
|
|
215
221
|
"flex-end",
|
|
222
|
+
"initial",
|
|
223
|
+
"inherit",
|
|
224
|
+
"unset",
|
|
216
225
|
],
|
|
217
226
|
alignSelf: [
|
|
218
227
|
"auto",
|
|
@@ -230,6 +239,9 @@ export const keywordValues = {
|
|
|
230
239
|
"self-end",
|
|
231
240
|
"flex-start",
|
|
232
241
|
"flex-end",
|
|
242
|
+
"initial",
|
|
243
|
+
"inherit",
|
|
244
|
+
"unset",
|
|
233
245
|
],
|
|
234
246
|
alignTracks: [
|
|
235
247
|
"normal",
|
|
@@ -247,12 +259,34 @@ export const keywordValues = {
|
|
|
247
259
|
"end",
|
|
248
260
|
"flex-start",
|
|
249
261
|
"flex-end",
|
|
262
|
+
"initial",
|
|
263
|
+
"inherit",
|
|
264
|
+
"unset",
|
|
265
|
+
],
|
|
266
|
+
animationComposition: ["initial", "inherit", "unset"],
|
|
267
|
+
animationDelay: ["initial", "inherit", "unset"],
|
|
268
|
+
animationDirection: [
|
|
269
|
+
"normal",
|
|
270
|
+
"reverse",
|
|
271
|
+
"alternate",
|
|
272
|
+
"alternate-reverse",
|
|
273
|
+
"initial",
|
|
274
|
+
"inherit",
|
|
275
|
+
"unset",
|
|
250
276
|
],
|
|
251
|
-
|
|
252
|
-
animationFillMode: [
|
|
253
|
-
|
|
254
|
-
|
|
255
|
-
|
|
277
|
+
animationDuration: ["initial", "inherit", "unset"],
|
|
278
|
+
animationFillMode: [
|
|
279
|
+
"none",
|
|
280
|
+
"forwards",
|
|
281
|
+
"backwards",
|
|
282
|
+
"both",
|
|
283
|
+
"initial",
|
|
284
|
+
"inherit",
|
|
285
|
+
"unset",
|
|
286
|
+
],
|
|
287
|
+
animationIterationCount: ["infinite", "initial", "inherit", "unset"],
|
|
288
|
+
animationName: ["none", "initial", "inherit", "unset"],
|
|
289
|
+
animationPlayState: ["running", "paused", "initial", "inherit", "unset"],
|
|
256
290
|
animationTimingFunction: [
|
|
257
291
|
"linear",
|
|
258
292
|
"ease",
|
|
@@ -261,8 +295,11 @@ export const keywordValues = {
|
|
|
261
295
|
"ease-in-out",
|
|
262
296
|
"step-start",
|
|
263
297
|
"step-end",
|
|
298
|
+
"initial",
|
|
299
|
+
"inherit",
|
|
300
|
+
"unset",
|
|
264
301
|
],
|
|
265
|
-
animationTimeline: ["auto", "none"],
|
|
302
|
+
animationTimeline: ["auto", "none", "initial", "inherit", "unset"],
|
|
266
303
|
appearance: [
|
|
267
304
|
"none",
|
|
268
305
|
"auto",
|
|
@@ -280,11 +317,21 @@ export const keywordValues = {
|
|
|
280
317
|
"meter",
|
|
281
318
|
"progress-bar",
|
|
282
319
|
"button",
|
|
320
|
+
"initial",
|
|
321
|
+
"inherit",
|
|
322
|
+
"unset",
|
|
323
|
+
],
|
|
324
|
+
aspectRatio: ["auto", "initial", "inherit", "unset"],
|
|
325
|
+
backdropFilter: ["none", "initial", "inherit", "unset"],
|
|
326
|
+
backfaceVisibility: ["visible", "hidden", "initial", "inherit", "unset"],
|
|
327
|
+
backgroundAttachment: [
|
|
328
|
+
"scroll",
|
|
329
|
+
"fixed",
|
|
330
|
+
"local",
|
|
331
|
+
"initial",
|
|
332
|
+
"inherit",
|
|
333
|
+
"unset",
|
|
283
334
|
],
|
|
284
|
-
aspectRatio: ["auto"],
|
|
285
|
-
backdropFilter: ["none"],
|
|
286
|
-
backfaceVisibility: ["visible", "hidden"],
|
|
287
|
-
backgroundAttachment: ["scroll", "fixed", "local"],
|
|
288
335
|
backgroundBlendMode: [
|
|
289
336
|
"normal",
|
|
290
337
|
"multiply",
|
|
@@ -302,8 +349,19 @@ export const keywordValues = {
|
|
|
302
349
|
"saturation",
|
|
303
350
|
"color",
|
|
304
351
|
"luminosity",
|
|
352
|
+
"initial",
|
|
353
|
+
"inherit",
|
|
354
|
+
"unset",
|
|
355
|
+
],
|
|
356
|
+
backgroundClip: [
|
|
357
|
+
"border-box",
|
|
358
|
+
"padding-box",
|
|
359
|
+
"content-box",
|
|
360
|
+
"text",
|
|
361
|
+
"initial",
|
|
362
|
+
"inherit",
|
|
363
|
+
"unset",
|
|
305
364
|
],
|
|
306
|
-
backgroundClip: ["border-box", "padding-box", "content-box", "text"],
|
|
307
365
|
backgroundColor: [
|
|
308
366
|
"transparent",
|
|
309
367
|
"aliceblue",
|
|
@@ -454,7 +512,7 @@ export const keywordValues = {
|
|
|
454
512
|
"whitesmoke",
|
|
455
513
|
"yellow",
|
|
456
514
|
"yellowgreen",
|
|
457
|
-
"
|
|
515
|
+
"currentColor",
|
|
458
516
|
"ActiveBorder",
|
|
459
517
|
"ActiveCaption",
|
|
460
518
|
"AppWorkspace",
|
|
@@ -483,12 +541,49 @@ export const keywordValues = {
|
|
|
483
541
|
"Window",
|
|
484
542
|
"WindowFrame",
|
|
485
543
|
"WindowText",
|
|
544
|
+
"initial",
|
|
545
|
+
"inherit",
|
|
546
|
+
"unset",
|
|
547
|
+
],
|
|
548
|
+
backgroundImage: ["none", "initial", "inherit", "unset"],
|
|
549
|
+
backgroundOrigin: [
|
|
550
|
+
"border-box",
|
|
551
|
+
"padding-box",
|
|
552
|
+
"content-box",
|
|
553
|
+
"initial",
|
|
554
|
+
"inherit",
|
|
555
|
+
"unset",
|
|
556
|
+
],
|
|
557
|
+
backgroundPosition: [
|
|
558
|
+
"left",
|
|
559
|
+
"center",
|
|
560
|
+
"right",
|
|
561
|
+
"top",
|
|
562
|
+
"bottom",
|
|
563
|
+
"initial",
|
|
564
|
+
"inherit",
|
|
565
|
+
"unset",
|
|
566
|
+
],
|
|
567
|
+
backgroundPositionX: [
|
|
568
|
+
"center",
|
|
569
|
+
"left",
|
|
570
|
+
"right",
|
|
571
|
+
"x-start",
|
|
572
|
+
"x-end",
|
|
573
|
+
"initial",
|
|
574
|
+
"inherit",
|
|
575
|
+
"unset",
|
|
576
|
+
],
|
|
577
|
+
backgroundPositionY: [
|
|
578
|
+
"center",
|
|
579
|
+
"top",
|
|
580
|
+
"bottom",
|
|
581
|
+
"y-start",
|
|
582
|
+
"y-end",
|
|
583
|
+
"initial",
|
|
584
|
+
"inherit",
|
|
585
|
+
"unset",
|
|
486
586
|
],
|
|
487
|
-
backgroundImage: ["none"],
|
|
488
|
-
backgroundOrigin: ["border-box", "padding-box", "content-box"],
|
|
489
|
-
backgroundPosition: ["left", "center", "right", "top", "bottom"],
|
|
490
|
-
backgroundPositionX: ["center", "left", "right", "x-start", "x-end"],
|
|
491
|
-
backgroundPositionY: ["center", "top", "bottom", "y-start", "y-end"],
|
|
492
587
|
backgroundRepeat: [
|
|
493
588
|
"repeat-x",
|
|
494
589
|
"repeat-y",
|
|
@@ -496,10 +591,21 @@ export const keywordValues = {
|
|
|
496
591
|
"space",
|
|
497
592
|
"round",
|
|
498
593
|
"no-repeat",
|
|
594
|
+
"initial",
|
|
595
|
+
"inherit",
|
|
596
|
+
"unset",
|
|
597
|
+
],
|
|
598
|
+
backgroundSize: ["auto", "cover", "contain", "initial", "inherit", "unset"],
|
|
599
|
+
blockOverflow: ["clip", "ellipsis", "initial", "inherit", "unset"],
|
|
600
|
+
blockSize: [
|
|
601
|
+
"auto",
|
|
602
|
+
"min-content",
|
|
603
|
+
"max-content",
|
|
604
|
+
"fit-content",
|
|
605
|
+
"initial",
|
|
606
|
+
"inherit",
|
|
607
|
+
"unset",
|
|
499
608
|
],
|
|
500
|
-
backgroundSize: ["auto", "cover", "contain"],
|
|
501
|
-
blockOverflow: ["clip", "ellipsis"],
|
|
502
|
-
blockSize: ["auto", "min-content", "max-content", "fit-content"],
|
|
503
609
|
borderBlockColor: [
|
|
504
610
|
"transparent",
|
|
505
611
|
"aliceblue",
|
|
@@ -650,7 +756,7 @@ export const keywordValues = {
|
|
|
650
756
|
"whitesmoke",
|
|
651
757
|
"yellow",
|
|
652
758
|
"yellowgreen",
|
|
653
|
-
"
|
|
759
|
+
"currentColor",
|
|
654
760
|
"ActiveBorder",
|
|
655
761
|
"ActiveCaption",
|
|
656
762
|
"AppWorkspace",
|
|
@@ -679,6 +785,9 @@ export const keywordValues = {
|
|
|
679
785
|
"Window",
|
|
680
786
|
"WindowFrame",
|
|
681
787
|
"WindowText",
|
|
788
|
+
"initial",
|
|
789
|
+
"inherit",
|
|
790
|
+
"unset",
|
|
682
791
|
],
|
|
683
792
|
borderBlockStyle: [
|
|
684
793
|
"none",
|
|
@@ -691,8 +800,11 @@ export const keywordValues = {
|
|
|
691
800
|
"ridge",
|
|
692
801
|
"inset",
|
|
693
802
|
"outset",
|
|
803
|
+
"initial",
|
|
804
|
+
"inherit",
|
|
805
|
+
"unset",
|
|
694
806
|
],
|
|
695
|
-
borderBlockWidth: ["thin", "medium", "thick"],
|
|
807
|
+
borderBlockWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
696
808
|
borderBlockEndColor: [
|
|
697
809
|
"transparent",
|
|
698
810
|
"aliceblue",
|
|
@@ -843,7 +955,7 @@ export const keywordValues = {
|
|
|
843
955
|
"whitesmoke",
|
|
844
956
|
"yellow",
|
|
845
957
|
"yellowgreen",
|
|
846
|
-
"
|
|
958
|
+
"currentColor",
|
|
847
959
|
"ActiveBorder",
|
|
848
960
|
"ActiveCaption",
|
|
849
961
|
"AppWorkspace",
|
|
@@ -872,6 +984,9 @@ export const keywordValues = {
|
|
|
872
984
|
"Window",
|
|
873
985
|
"WindowFrame",
|
|
874
986
|
"WindowText",
|
|
987
|
+
"initial",
|
|
988
|
+
"inherit",
|
|
989
|
+
"unset",
|
|
875
990
|
],
|
|
876
991
|
borderBlockEndStyle: [
|
|
877
992
|
"none",
|
|
@@ -884,8 +999,18 @@ export const keywordValues = {
|
|
|
884
999
|
"ridge",
|
|
885
1000
|
"inset",
|
|
886
1001
|
"outset",
|
|
1002
|
+
"initial",
|
|
1003
|
+
"inherit",
|
|
1004
|
+
"unset",
|
|
1005
|
+
],
|
|
1006
|
+
borderBlockEndWidth: [
|
|
1007
|
+
"thin",
|
|
1008
|
+
"medium",
|
|
1009
|
+
"thick",
|
|
1010
|
+
"initial",
|
|
1011
|
+
"inherit",
|
|
1012
|
+
"unset",
|
|
887
1013
|
],
|
|
888
|
-
borderBlockEndWidth: ["thin", "medium", "thick"],
|
|
889
1014
|
borderBlockStartColor: [
|
|
890
1015
|
"transparent",
|
|
891
1016
|
"aliceblue",
|
|
@@ -1036,7 +1161,7 @@ export const keywordValues = {
|
|
|
1036
1161
|
"whitesmoke",
|
|
1037
1162
|
"yellow",
|
|
1038
1163
|
"yellowgreen",
|
|
1039
|
-
"
|
|
1164
|
+
"currentColor",
|
|
1040
1165
|
"ActiveBorder",
|
|
1041
1166
|
"ActiveCaption",
|
|
1042
1167
|
"AppWorkspace",
|
|
@@ -1065,6 +1190,9 @@ export const keywordValues = {
|
|
|
1065
1190
|
"Window",
|
|
1066
1191
|
"WindowFrame",
|
|
1067
1192
|
"WindowText",
|
|
1193
|
+
"initial",
|
|
1194
|
+
"inherit",
|
|
1195
|
+
"unset",
|
|
1068
1196
|
],
|
|
1069
1197
|
borderBlockStartStyle: [
|
|
1070
1198
|
"none",
|
|
@@ -1077,8 +1205,18 @@ export const keywordValues = {
|
|
|
1077
1205
|
"ridge",
|
|
1078
1206
|
"inset",
|
|
1079
1207
|
"outset",
|
|
1208
|
+
"initial",
|
|
1209
|
+
"inherit",
|
|
1210
|
+
"unset",
|
|
1211
|
+
],
|
|
1212
|
+
borderBlockStartWidth: [
|
|
1213
|
+
"thin",
|
|
1214
|
+
"medium",
|
|
1215
|
+
"thick",
|
|
1216
|
+
"initial",
|
|
1217
|
+
"inherit",
|
|
1218
|
+
"unset",
|
|
1080
1219
|
],
|
|
1081
|
-
borderBlockStartWidth: ["thin", "medium", "thick"],
|
|
1082
1220
|
borderBottomColor: [
|
|
1083
1221
|
"transparent",
|
|
1084
1222
|
"aliceblue",
|
|
@@ -1229,7 +1367,7 @@ export const keywordValues = {
|
|
|
1229
1367
|
"whitesmoke",
|
|
1230
1368
|
"yellow",
|
|
1231
1369
|
"yellowgreen",
|
|
1232
|
-
"
|
|
1370
|
+
"currentColor",
|
|
1233
1371
|
"ActiveBorder",
|
|
1234
1372
|
"ActiveCaption",
|
|
1235
1373
|
"AppWorkspace",
|
|
@@ -1258,7 +1396,12 @@ export const keywordValues = {
|
|
|
1258
1396
|
"Window",
|
|
1259
1397
|
"WindowFrame",
|
|
1260
1398
|
"WindowText",
|
|
1399
|
+
"initial",
|
|
1400
|
+
"inherit",
|
|
1401
|
+
"unset",
|
|
1261
1402
|
],
|
|
1403
|
+
borderBottomLeftRadius: ["initial", "inherit", "unset"],
|
|
1404
|
+
borderBottomRightRadius: ["initial", "inherit", "unset"],
|
|
1262
1405
|
borderBottomStyle: [
|
|
1263
1406
|
"none",
|
|
1264
1407
|
"hidden",
|
|
@@ -1270,13 +1413,27 @@ export const keywordValues = {
|
|
|
1270
1413
|
"ridge",
|
|
1271
1414
|
"inset",
|
|
1272
1415
|
"outset",
|
|
1416
|
+
"initial",
|
|
1417
|
+
"inherit",
|
|
1418
|
+
"unset",
|
|
1419
|
+
],
|
|
1420
|
+
borderBottomWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
1421
|
+
borderCollapse: ["collapse", "separate", "initial", "inherit", "unset"],
|
|
1422
|
+
borderEndEndRadius: ["initial", "inherit", "unset"],
|
|
1423
|
+
borderEndStartRadius: ["initial", "inherit", "unset"],
|
|
1424
|
+
borderImageOutset: ["initial", "inherit", "unset"],
|
|
1425
|
+
borderImageRepeat: [
|
|
1426
|
+
"stretch",
|
|
1427
|
+
"repeat",
|
|
1428
|
+
"round",
|
|
1429
|
+
"space",
|
|
1430
|
+
"initial",
|
|
1431
|
+
"inherit",
|
|
1432
|
+
"unset",
|
|
1273
1433
|
],
|
|
1274
|
-
|
|
1275
|
-
|
|
1276
|
-
|
|
1277
|
-
borderImageSlice: ["fill"],
|
|
1278
|
-
borderImageSource: ["none"],
|
|
1279
|
-
borderImageWidth: ["auto"],
|
|
1434
|
+
borderImageSlice: ["fill", "initial", "inherit", "unset"],
|
|
1435
|
+
borderImageSource: ["none", "initial", "inherit", "unset"],
|
|
1436
|
+
borderImageWidth: ["auto", "initial", "inherit", "unset"],
|
|
1280
1437
|
borderInlineColor: [
|
|
1281
1438
|
"transparent",
|
|
1282
1439
|
"aliceblue",
|
|
@@ -1427,7 +1584,7 @@ export const keywordValues = {
|
|
|
1427
1584
|
"whitesmoke",
|
|
1428
1585
|
"yellow",
|
|
1429
1586
|
"yellowgreen",
|
|
1430
|
-
"
|
|
1587
|
+
"currentColor",
|
|
1431
1588
|
"ActiveBorder",
|
|
1432
1589
|
"ActiveCaption",
|
|
1433
1590
|
"AppWorkspace",
|
|
@@ -1456,6 +1613,9 @@ export const keywordValues = {
|
|
|
1456
1613
|
"Window",
|
|
1457
1614
|
"WindowFrame",
|
|
1458
1615
|
"WindowText",
|
|
1616
|
+
"initial",
|
|
1617
|
+
"inherit",
|
|
1618
|
+
"unset",
|
|
1459
1619
|
],
|
|
1460
1620
|
borderInlineStyle: [
|
|
1461
1621
|
"none",
|
|
@@ -1468,8 +1628,11 @@ export const keywordValues = {
|
|
|
1468
1628
|
"ridge",
|
|
1469
1629
|
"inset",
|
|
1470
1630
|
"outset",
|
|
1631
|
+
"initial",
|
|
1632
|
+
"inherit",
|
|
1633
|
+
"unset",
|
|
1471
1634
|
],
|
|
1472
|
-
borderInlineWidth: ["thin", "medium", "thick"],
|
|
1635
|
+
borderInlineWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
1473
1636
|
borderInlineEndColor: [
|
|
1474
1637
|
"transparent",
|
|
1475
1638
|
"aliceblue",
|
|
@@ -1620,7 +1783,7 @@ export const keywordValues = {
|
|
|
1620
1783
|
"whitesmoke",
|
|
1621
1784
|
"yellow",
|
|
1622
1785
|
"yellowgreen",
|
|
1623
|
-
"
|
|
1786
|
+
"currentColor",
|
|
1624
1787
|
"ActiveBorder",
|
|
1625
1788
|
"ActiveCaption",
|
|
1626
1789
|
"AppWorkspace",
|
|
@@ -1649,6 +1812,9 @@ export const keywordValues = {
|
|
|
1649
1812
|
"Window",
|
|
1650
1813
|
"WindowFrame",
|
|
1651
1814
|
"WindowText",
|
|
1815
|
+
"initial",
|
|
1816
|
+
"inherit",
|
|
1817
|
+
"unset",
|
|
1652
1818
|
],
|
|
1653
1819
|
borderInlineEndStyle: [
|
|
1654
1820
|
"none",
|
|
@@ -1661,8 +1827,18 @@ export const keywordValues = {
|
|
|
1661
1827
|
"ridge",
|
|
1662
1828
|
"inset",
|
|
1663
1829
|
"outset",
|
|
1830
|
+
"initial",
|
|
1831
|
+
"inherit",
|
|
1832
|
+
"unset",
|
|
1833
|
+
],
|
|
1834
|
+
borderInlineEndWidth: [
|
|
1835
|
+
"thin",
|
|
1836
|
+
"medium",
|
|
1837
|
+
"thick",
|
|
1838
|
+
"initial",
|
|
1839
|
+
"inherit",
|
|
1840
|
+
"unset",
|
|
1664
1841
|
],
|
|
1665
|
-
borderInlineEndWidth: ["thin", "medium", "thick"],
|
|
1666
1842
|
borderInlineStartColor: [
|
|
1667
1843
|
"transparent",
|
|
1668
1844
|
"aliceblue",
|
|
@@ -1813,7 +1989,7 @@ export const keywordValues = {
|
|
|
1813
1989
|
"whitesmoke",
|
|
1814
1990
|
"yellow",
|
|
1815
1991
|
"yellowgreen",
|
|
1816
|
-
"
|
|
1992
|
+
"currentColor",
|
|
1817
1993
|
"ActiveBorder",
|
|
1818
1994
|
"ActiveCaption",
|
|
1819
1995
|
"AppWorkspace",
|
|
@@ -1842,6 +2018,9 @@ export const keywordValues = {
|
|
|
1842
2018
|
"Window",
|
|
1843
2019
|
"WindowFrame",
|
|
1844
2020
|
"WindowText",
|
|
2021
|
+
"initial",
|
|
2022
|
+
"inherit",
|
|
2023
|
+
"unset",
|
|
1845
2024
|
],
|
|
1846
2025
|
borderInlineStartStyle: [
|
|
1847
2026
|
"none",
|
|
@@ -1854,8 +2033,18 @@ export const keywordValues = {
|
|
|
1854
2033
|
"ridge",
|
|
1855
2034
|
"inset",
|
|
1856
2035
|
"outset",
|
|
2036
|
+
"initial",
|
|
2037
|
+
"inherit",
|
|
2038
|
+
"unset",
|
|
2039
|
+
],
|
|
2040
|
+
borderInlineStartWidth: [
|
|
2041
|
+
"thin",
|
|
2042
|
+
"medium",
|
|
2043
|
+
"thick",
|
|
2044
|
+
"initial",
|
|
2045
|
+
"inherit",
|
|
2046
|
+
"unset",
|
|
1857
2047
|
],
|
|
1858
|
-
borderInlineStartWidth: ["thin", "medium", "thick"],
|
|
1859
2048
|
borderLeftColor: [
|
|
1860
2049
|
"transparent",
|
|
1861
2050
|
"aliceblue",
|
|
@@ -2006,7 +2195,7 @@ export const keywordValues = {
|
|
|
2006
2195
|
"whitesmoke",
|
|
2007
2196
|
"yellow",
|
|
2008
2197
|
"yellowgreen",
|
|
2009
|
-
"
|
|
2198
|
+
"currentColor",
|
|
2010
2199
|
"ActiveBorder",
|
|
2011
2200
|
"ActiveCaption",
|
|
2012
2201
|
"AppWorkspace",
|
|
@@ -2035,6 +2224,9 @@ export const keywordValues = {
|
|
|
2035
2224
|
"Window",
|
|
2036
2225
|
"WindowFrame",
|
|
2037
2226
|
"WindowText",
|
|
2227
|
+
"initial",
|
|
2228
|
+
"inherit",
|
|
2229
|
+
"unset",
|
|
2038
2230
|
],
|
|
2039
2231
|
borderLeftStyle: [
|
|
2040
2232
|
"none",
|
|
@@ -2047,8 +2239,11 @@ export const keywordValues = {
|
|
|
2047
2239
|
"ridge",
|
|
2048
2240
|
"inset",
|
|
2049
2241
|
"outset",
|
|
2242
|
+
"initial",
|
|
2243
|
+
"inherit",
|
|
2244
|
+
"unset",
|
|
2050
2245
|
],
|
|
2051
|
-
borderLeftWidth: ["thin", "medium", "thick"],
|
|
2246
|
+
borderLeftWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
2052
2247
|
borderRightColor: [
|
|
2053
2248
|
"transparent",
|
|
2054
2249
|
"aliceblue",
|
|
@@ -2199,7 +2394,7 @@ export const keywordValues = {
|
|
|
2199
2394
|
"whitesmoke",
|
|
2200
2395
|
"yellow",
|
|
2201
2396
|
"yellowgreen",
|
|
2202
|
-
"
|
|
2397
|
+
"currentColor",
|
|
2203
2398
|
"ActiveBorder",
|
|
2204
2399
|
"ActiveCaption",
|
|
2205
2400
|
"AppWorkspace",
|
|
@@ -2228,6 +2423,9 @@ export const keywordValues = {
|
|
|
2228
2423
|
"Window",
|
|
2229
2424
|
"WindowFrame",
|
|
2230
2425
|
"WindowText",
|
|
2426
|
+
"initial",
|
|
2427
|
+
"inherit",
|
|
2428
|
+
"unset",
|
|
2231
2429
|
],
|
|
2232
2430
|
borderRightStyle: [
|
|
2233
2431
|
"none",
|
|
@@ -2240,8 +2438,14 @@ export const keywordValues = {
|
|
|
2240
2438
|
"ridge",
|
|
2241
2439
|
"inset",
|
|
2242
2440
|
"outset",
|
|
2441
|
+
"initial",
|
|
2442
|
+
"inherit",
|
|
2443
|
+
"unset",
|
|
2243
2444
|
],
|
|
2244
|
-
borderRightWidth: ["thin", "medium", "thick"],
|
|
2445
|
+
borderRightWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
2446
|
+
borderSpacing: ["initial", "inherit", "unset"],
|
|
2447
|
+
borderStartEndRadius: ["initial", "inherit", "unset"],
|
|
2448
|
+
borderStartStartRadius: ["initial", "inherit", "unset"],
|
|
2245
2449
|
borderTopColor: [
|
|
2246
2450
|
"transparent",
|
|
2247
2451
|
"aliceblue",
|
|
@@ -2392,7 +2596,7 @@ export const keywordValues = {
|
|
|
2392
2596
|
"whitesmoke",
|
|
2393
2597
|
"yellow",
|
|
2394
2598
|
"yellowgreen",
|
|
2395
|
-
"
|
|
2599
|
+
"currentColor",
|
|
2396
2600
|
"ActiveBorder",
|
|
2397
2601
|
"ActiveCaption",
|
|
2398
2602
|
"AppWorkspace",
|
|
@@ -2421,7 +2625,12 @@ export const keywordValues = {
|
|
|
2421
2625
|
"Window",
|
|
2422
2626
|
"WindowFrame",
|
|
2423
2627
|
"WindowText",
|
|
2628
|
+
"initial",
|
|
2629
|
+
"inherit",
|
|
2630
|
+
"unset",
|
|
2424
2631
|
],
|
|
2632
|
+
borderTopLeftRadius: ["initial", "inherit", "unset"],
|
|
2633
|
+
borderTopRightRadius: ["initial", "inherit", "unset"],
|
|
2425
2634
|
borderTopStyle: [
|
|
2426
2635
|
"none",
|
|
2427
2636
|
"hidden",
|
|
@@ -2433,10 +2642,13 @@ export const keywordValues = {
|
|
|
2433
2642
|
"ridge",
|
|
2434
2643
|
"inset",
|
|
2435
2644
|
"outset",
|
|
2645
|
+
"initial",
|
|
2646
|
+
"inherit",
|
|
2647
|
+
"unset",
|
|
2436
2648
|
],
|
|
2437
|
-
borderTopWidth: ["thin", "medium", "thick"],
|
|
2438
|
-
bottom: ["auto"],
|
|
2439
|
-
boxDecorationBreak: ["slice", "clone"],
|
|
2649
|
+
borderTopWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
2650
|
+
bottom: ["auto", "initial", "inherit", "unset"],
|
|
2651
|
+
boxDecorationBreak: ["slice", "clone", "initial", "inherit", "unset"],
|
|
2440
2652
|
boxShadow: [
|
|
2441
2653
|
"none",
|
|
2442
2654
|
"inset",
|
|
@@ -2589,7 +2801,7 @@ export const keywordValues = {
|
|
|
2589
2801
|
"whitesmoke",
|
|
2590
2802
|
"yellow",
|
|
2591
2803
|
"yellowgreen",
|
|
2592
|
-
"
|
|
2804
|
+
"currentColor",
|
|
2593
2805
|
"ActiveBorder",
|
|
2594
2806
|
"ActiveCaption",
|
|
2595
2807
|
"AppWorkspace",
|
|
@@ -2618,8 +2830,11 @@ export const keywordValues = {
|
|
|
2618
2830
|
"Window",
|
|
2619
2831
|
"WindowFrame",
|
|
2620
2832
|
"WindowText",
|
|
2833
|
+
"initial",
|
|
2834
|
+
"inherit",
|
|
2835
|
+
"unset",
|
|
2621
2836
|
],
|
|
2622
|
-
boxSizing: ["content-box", "border-box"],
|
|
2837
|
+
boxSizing: ["content-box", "border-box", "initial", "inherit", "unset"],
|
|
2623
2838
|
breakAfter: [
|
|
2624
2839
|
"auto",
|
|
2625
2840
|
"avoid",
|
|
@@ -2635,6 +2850,9 @@ export const keywordValues = {
|
|
|
2635
2850
|
"column",
|
|
2636
2851
|
"avoid-region",
|
|
2637
2852
|
"region",
|
|
2853
|
+
"initial",
|
|
2854
|
+
"inherit",
|
|
2855
|
+
"unset",
|
|
2638
2856
|
],
|
|
2639
2857
|
breakBefore: [
|
|
2640
2858
|
"auto",
|
|
@@ -2651,8 +2869,20 @@ export const keywordValues = {
|
|
|
2651
2869
|
"column",
|
|
2652
2870
|
"avoid-region",
|
|
2653
2871
|
"region",
|
|
2872
|
+
"initial",
|
|
2873
|
+
"inherit",
|
|
2874
|
+
"unset",
|
|
2875
|
+
],
|
|
2876
|
+
breakInside: [
|
|
2877
|
+
"auto",
|
|
2878
|
+
"avoid",
|
|
2879
|
+
"avoid-page",
|
|
2880
|
+
"avoid-column",
|
|
2881
|
+
"avoid-region",
|
|
2882
|
+
"initial",
|
|
2883
|
+
"inherit",
|
|
2884
|
+
"unset",
|
|
2654
2885
|
],
|
|
2655
|
-
breakInside: ["auto", "avoid", "avoid-page", "avoid-column", "avoid-region"],
|
|
2656
2886
|
captionSide: [
|
|
2657
2887
|
"top",
|
|
2658
2888
|
"bottom",
|
|
@@ -2660,6 +2890,9 @@ export const keywordValues = {
|
|
|
2660
2890
|
"block-end",
|
|
2661
2891
|
"inline-start",
|
|
2662
2892
|
"inline-end",
|
|
2893
|
+
"initial",
|
|
2894
|
+
"inherit",
|
|
2895
|
+
"unset",
|
|
2663
2896
|
],
|
|
2664
2897
|
caretColor: [
|
|
2665
2898
|
"auto",
|
|
@@ -2812,7 +3045,7 @@ export const keywordValues = {
|
|
|
2812
3045
|
"whitesmoke",
|
|
2813
3046
|
"yellow",
|
|
2814
3047
|
"yellowgreen",
|
|
2815
|
-
"
|
|
3048
|
+
"currentColor",
|
|
2816
3049
|
"ActiveBorder",
|
|
2817
3050
|
"ActiveCaption",
|
|
2818
3051
|
"AppWorkspace",
|
|
@@ -2841,10 +3074,31 @@ export const keywordValues = {
|
|
|
2841
3074
|
"Window",
|
|
2842
3075
|
"WindowFrame",
|
|
2843
3076
|
"WindowText",
|
|
3077
|
+
"initial",
|
|
3078
|
+
"inherit",
|
|
3079
|
+
"unset",
|
|
3080
|
+
],
|
|
3081
|
+
caretShape: [
|
|
3082
|
+
"auto",
|
|
3083
|
+
"bar",
|
|
3084
|
+
"block",
|
|
3085
|
+
"underscore",
|
|
3086
|
+
"initial",
|
|
3087
|
+
"inherit",
|
|
3088
|
+
"unset",
|
|
3089
|
+
],
|
|
3090
|
+
clear: [
|
|
3091
|
+
"none",
|
|
3092
|
+
"left",
|
|
3093
|
+
"right",
|
|
3094
|
+
"both",
|
|
3095
|
+
"inline-start",
|
|
3096
|
+
"inline-end",
|
|
3097
|
+
"initial",
|
|
3098
|
+
"inherit",
|
|
3099
|
+
"unset",
|
|
2844
3100
|
],
|
|
2845
|
-
|
|
2846
|
-
clear: ["none", "left", "right", "both", "inline-start", "inline-end"],
|
|
2847
|
-
clip: ["auto"],
|
|
3101
|
+
clip: ["auto", "initial", "inherit", "unset"],
|
|
2848
3102
|
clipPath: [
|
|
2849
3103
|
"border-box",
|
|
2850
3104
|
"padding-box",
|
|
@@ -2854,6 +3108,9 @@ export const keywordValues = {
|
|
|
2854
3108
|
"stroke-box",
|
|
2855
3109
|
"view-box",
|
|
2856
3110
|
"none",
|
|
3111
|
+
"initial",
|
|
3112
|
+
"inherit",
|
|
3113
|
+
"unset",
|
|
2857
3114
|
],
|
|
2858
3115
|
color: [
|
|
2859
3116
|
"transparent",
|
|
@@ -3005,7 +3262,7 @@ export const keywordValues = {
|
|
|
3005
3262
|
"whitesmoke",
|
|
3006
3263
|
"yellow",
|
|
3007
3264
|
"yellowgreen",
|
|
3008
|
-
"
|
|
3265
|
+
"currentColor",
|
|
3009
3266
|
"ActiveBorder",
|
|
3010
3267
|
"ActiveCaption",
|
|
3011
3268
|
"AppWorkspace",
|
|
@@ -3034,12 +3291,23 @@ export const keywordValues = {
|
|
|
3034
3291
|
"Window",
|
|
3035
3292
|
"WindowFrame",
|
|
3036
3293
|
"WindowText",
|
|
3294
|
+
"initial",
|
|
3295
|
+
"inherit",
|
|
3296
|
+
"unset",
|
|
3037
3297
|
],
|
|
3038
|
-
printColorAdjust: ["economy", "exact"],
|
|
3039
|
-
colorScheme: [
|
|
3040
|
-
|
|
3041
|
-
|
|
3042
|
-
|
|
3298
|
+
printColorAdjust: ["economy", "exact", "initial", "inherit", "unset"],
|
|
3299
|
+
colorScheme: [
|
|
3300
|
+
"normal",
|
|
3301
|
+
"light",
|
|
3302
|
+
"dark",
|
|
3303
|
+
"only",
|
|
3304
|
+
"initial",
|
|
3305
|
+
"inherit",
|
|
3306
|
+
"unset",
|
|
3307
|
+
],
|
|
3308
|
+
columnCount: ["auto", "initial", "inherit", "unset"],
|
|
3309
|
+
columnFill: ["auto", "balance", "balance-all", "initial", "inherit", "unset"],
|
|
3310
|
+
columnGap: ["normal", "initial", "inherit", "unset"],
|
|
3043
3311
|
columnRuleColor: [
|
|
3044
3312
|
"transparent",
|
|
3045
3313
|
"aliceblue",
|
|
@@ -3190,7 +3458,7 @@ export const keywordValues = {
|
|
|
3190
3458
|
"whitesmoke",
|
|
3191
3459
|
"yellow",
|
|
3192
3460
|
"yellowgreen",
|
|
3193
|
-
"
|
|
3461
|
+
"currentColor",
|
|
3194
3462
|
"ActiveBorder",
|
|
3195
3463
|
"ActiveCaption",
|
|
3196
3464
|
"AppWorkspace",
|
|
@@ -3219,6 +3487,9 @@ export const keywordValues = {
|
|
|
3219
3487
|
"Window",
|
|
3220
3488
|
"WindowFrame",
|
|
3221
3489
|
"WindowText",
|
|
3490
|
+
"initial",
|
|
3491
|
+
"inherit",
|
|
3492
|
+
"unset",
|
|
3222
3493
|
],
|
|
3223
3494
|
columnRuleStyle: [
|
|
3224
3495
|
"none",
|
|
@@ -3231,10 +3502,13 @@ export const keywordValues = {
|
|
|
3231
3502
|
"ridge",
|
|
3232
3503
|
"inset",
|
|
3233
3504
|
"outset",
|
|
3505
|
+
"initial",
|
|
3506
|
+
"inherit",
|
|
3507
|
+
"unset",
|
|
3234
3508
|
],
|
|
3235
|
-
columnRuleWidth: ["thin", "medium", "thick"],
|
|
3236
|
-
columnSpan: ["none", "all"],
|
|
3237
|
-
columnWidth: ["auto"],
|
|
3509
|
+
columnRuleWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
3510
|
+
columnSpan: ["none", "all", "initial", "inherit", "unset"],
|
|
3511
|
+
columnWidth: ["auto", "initial", "inherit", "unset"],
|
|
3238
3512
|
contain: [
|
|
3239
3513
|
"none",
|
|
3240
3514
|
"strict",
|
|
@@ -3244,11 +3518,14 @@ export const keywordValues = {
|
|
|
3244
3518
|
"layout",
|
|
3245
3519
|
"style",
|
|
3246
3520
|
"paint",
|
|
3521
|
+
"initial",
|
|
3522
|
+
"inherit",
|
|
3523
|
+
"unset",
|
|
3247
3524
|
],
|
|
3248
|
-
containIntrinsicBlockSize: ["none", "auto"],
|
|
3249
|
-
containIntrinsicHeight: ["none", "auto"],
|
|
3250
|
-
containIntrinsicInlineSize: ["none", "auto"],
|
|
3251
|
-
containIntrinsicWidth: ["none", "auto"],
|
|
3525
|
+
containIntrinsicBlockSize: ["none", "auto", "initial", "inherit", "unset"],
|
|
3526
|
+
containIntrinsicHeight: ["none", "auto", "initial", "inherit", "unset"],
|
|
3527
|
+
containIntrinsicInlineSize: ["none", "auto", "initial", "inherit", "unset"],
|
|
3528
|
+
containIntrinsicWidth: ["none", "auto", "initial", "inherit", "unset"],
|
|
3252
3529
|
content: [
|
|
3253
3530
|
"normal",
|
|
3254
3531
|
"none",
|
|
@@ -3257,11 +3534,21 @@ export const keywordValues = {
|
|
|
3257
3534
|
"close-quote",
|
|
3258
3535
|
"no-open-quote",
|
|
3259
3536
|
"no-close-quote",
|
|
3537
|
+
"initial",
|
|
3538
|
+
"inherit",
|
|
3539
|
+
"unset",
|
|
3260
3540
|
],
|
|
3261
|
-
contentVisibility: [
|
|
3262
|
-
|
|
3263
|
-
|
|
3264
|
-
|
|
3541
|
+
contentVisibility: [
|
|
3542
|
+
"visible",
|
|
3543
|
+
"auto",
|
|
3544
|
+
"hidden",
|
|
3545
|
+
"initial",
|
|
3546
|
+
"inherit",
|
|
3547
|
+
"unset",
|
|
3548
|
+
],
|
|
3549
|
+
counterIncrement: ["none", "initial", "inherit", "unset"],
|
|
3550
|
+
counterReset: ["none", "initial", "inherit", "unset"],
|
|
3551
|
+
counterSet: ["none", "initial", "inherit", "unset"],
|
|
3265
3552
|
cursor: [
|
|
3266
3553
|
"auto",
|
|
3267
3554
|
"default",
|
|
@@ -3299,8 +3586,11 @@ export const keywordValues = {
|
|
|
3299
3586
|
"zoom-out",
|
|
3300
3587
|
"grab",
|
|
3301
3588
|
"grabbing",
|
|
3589
|
+
"initial",
|
|
3590
|
+
"inherit",
|
|
3591
|
+
"unset",
|
|
3302
3592
|
],
|
|
3303
|
-
direction: ["ltr", "rtl"],
|
|
3593
|
+
direction: ["ltr", "rtl", "initial", "inherit", "unset"],
|
|
3304
3594
|
display: [
|
|
3305
3595
|
"block",
|
|
3306
3596
|
"inline",
|
|
@@ -3331,19 +3621,59 @@ export const keywordValues = {
|
|
|
3331
3621
|
"inline-table",
|
|
3332
3622
|
"inline-flex",
|
|
3333
3623
|
"inline-grid",
|
|
3624
|
+
"initial",
|
|
3625
|
+
"inherit",
|
|
3626
|
+
"unset",
|
|
3627
|
+
],
|
|
3628
|
+
emptyCells: ["show", "hide", "initial", "inherit", "unset"],
|
|
3629
|
+
filter: ["none", "initial", "inherit", "unset"],
|
|
3630
|
+
flexBasis: [
|
|
3631
|
+
"content",
|
|
3632
|
+
"auto",
|
|
3633
|
+
"min-content",
|
|
3634
|
+
"max-content",
|
|
3635
|
+
"fit-content",
|
|
3636
|
+
"initial",
|
|
3637
|
+
"inherit",
|
|
3638
|
+
"unset",
|
|
3639
|
+
],
|
|
3640
|
+
flexDirection: [
|
|
3641
|
+
"row",
|
|
3642
|
+
"row-reverse",
|
|
3643
|
+
"column",
|
|
3644
|
+
"column-reverse",
|
|
3645
|
+
"initial",
|
|
3646
|
+
"inherit",
|
|
3647
|
+
"unset",
|
|
3334
3648
|
],
|
|
3335
|
-
|
|
3336
|
-
|
|
3337
|
-
|
|
3338
|
-
|
|
3339
|
-
|
|
3340
|
-
|
|
3341
|
-
|
|
3342
|
-
|
|
3343
|
-
|
|
3344
|
-
|
|
3345
|
-
|
|
3346
|
-
|
|
3649
|
+
flexGrow: ["initial", "inherit", "unset"],
|
|
3650
|
+
flexShrink: ["initial", "inherit", "unset"],
|
|
3651
|
+
flexWrap: ["nowrap", "wrap", "wrap-reverse", "initial", "inherit", "unset"],
|
|
3652
|
+
float: [
|
|
3653
|
+
"left",
|
|
3654
|
+
"right",
|
|
3655
|
+
"none",
|
|
3656
|
+
"inline-start",
|
|
3657
|
+
"inline-end",
|
|
3658
|
+
"initial",
|
|
3659
|
+
"inherit",
|
|
3660
|
+
"unset",
|
|
3661
|
+
],
|
|
3662
|
+
fontFamily: [
|
|
3663
|
+
"serif",
|
|
3664
|
+
"sans-serif",
|
|
3665
|
+
"cursive",
|
|
3666
|
+
"fantasy",
|
|
3667
|
+
"monospace",
|
|
3668
|
+
"initial",
|
|
3669
|
+
"inherit",
|
|
3670
|
+
"unset",
|
|
3671
|
+
],
|
|
3672
|
+
fontFeatureSettings: ["normal", "on", "off", "initial", "inherit", "unset"],
|
|
3673
|
+
fontKerning: ["auto", "normal", "none", "initial", "inherit", "unset"],
|
|
3674
|
+
fontLanguageOverride: ["normal", "initial", "inherit", "unset"],
|
|
3675
|
+
fontOpticalSizing: ["auto", "none", "initial", "inherit", "unset"],
|
|
3676
|
+
fontVariationSettings: ["normal", "initial", "inherit", "unset"],
|
|
3347
3677
|
fontSize: [
|
|
3348
3678
|
"xx-small",
|
|
3349
3679
|
"x-small",
|
|
@@ -3355,6 +3685,9 @@ export const keywordValues = {
|
|
|
3355
3685
|
"xxx-large",
|
|
3356
3686
|
"larger",
|
|
3357
3687
|
"smaller",
|
|
3688
|
+
"initial",
|
|
3689
|
+
"inherit",
|
|
3690
|
+
"unset",
|
|
3358
3691
|
],
|
|
3359
3692
|
fontSizeAdjust: [
|
|
3360
3693
|
"none",
|
|
@@ -3364,6 +3697,9 @@ export const keywordValues = {
|
|
|
3364
3697
|
"ic-width",
|
|
3365
3698
|
"ic-height",
|
|
3366
3699
|
"from-font",
|
|
3700
|
+
"initial",
|
|
3701
|
+
"inherit",
|
|
3702
|
+
"unset",
|
|
3367
3703
|
],
|
|
3368
3704
|
fontStretch: [
|
|
3369
3705
|
"normal",
|
|
@@ -3375,9 +3711,20 @@ export const keywordValues = {
|
|
|
3375
3711
|
"expanded",
|
|
3376
3712
|
"extra-expanded",
|
|
3377
3713
|
"ultra-expanded",
|
|
3714
|
+
"initial",
|
|
3715
|
+
"inherit",
|
|
3716
|
+
"unset",
|
|
3717
|
+
],
|
|
3718
|
+
fontStyle: ["normal", "italic", "oblique", "initial", "inherit", "unset"],
|
|
3719
|
+
fontSynthesis: [
|
|
3720
|
+
"none",
|
|
3721
|
+
"weight",
|
|
3722
|
+
"style",
|
|
3723
|
+
"small-caps",
|
|
3724
|
+
"initial",
|
|
3725
|
+
"inherit",
|
|
3726
|
+
"unset",
|
|
3378
3727
|
],
|
|
3379
|
-
fontStyle: ["normal", "italic", "oblique"],
|
|
3380
|
-
fontSynthesis: ["none", "weight", "style", "small-caps"],
|
|
3381
3728
|
fontVariant: [
|
|
3382
3729
|
"normal",
|
|
3383
3730
|
"none",
|
|
@@ -3413,8 +3760,17 @@ export const keywordValues = {
|
|
|
3413
3760
|
"full-width",
|
|
3414
3761
|
"proportional-width",
|
|
3415
3762
|
"ruby",
|
|
3763
|
+
"initial",
|
|
3764
|
+
"inherit",
|
|
3765
|
+
"unset",
|
|
3766
|
+
],
|
|
3767
|
+
fontVariantAlternates: [
|
|
3768
|
+
"normal",
|
|
3769
|
+
"historical-forms",
|
|
3770
|
+
"initial",
|
|
3771
|
+
"inherit",
|
|
3772
|
+
"unset",
|
|
3416
3773
|
],
|
|
3417
|
-
fontVariantAlternates: ["normal", "historical-forms"],
|
|
3418
3774
|
fontVariantCaps: [
|
|
3419
3775
|
"normal",
|
|
3420
3776
|
"small-caps",
|
|
@@ -3423,6 +3779,9 @@ export const keywordValues = {
|
|
|
3423
3779
|
"all-petite-caps",
|
|
3424
3780
|
"unicase",
|
|
3425
3781
|
"titling-caps",
|
|
3782
|
+
"initial",
|
|
3783
|
+
"inherit",
|
|
3784
|
+
"unset",
|
|
3426
3785
|
],
|
|
3427
3786
|
fontVariantEastAsian: [
|
|
3428
3787
|
"normal",
|
|
@@ -3435,6 +3794,9 @@ export const keywordValues = {
|
|
|
3435
3794
|
"full-width",
|
|
3436
3795
|
"proportional-width",
|
|
3437
3796
|
"ruby",
|
|
3797
|
+
"initial",
|
|
3798
|
+
"inherit",
|
|
3799
|
+
"unset",
|
|
3438
3800
|
],
|
|
3439
3801
|
fontVariantLigatures: [
|
|
3440
3802
|
"normal",
|
|
@@ -3447,6 +3809,9 @@ export const keywordValues = {
|
|
|
3447
3809
|
"no-historical-ligatures",
|
|
3448
3810
|
"contextual",
|
|
3449
3811
|
"no-contextual",
|
|
3812
|
+
"initial",
|
|
3813
|
+
"inherit",
|
|
3814
|
+
"unset",
|
|
3450
3815
|
],
|
|
3451
3816
|
fontVariantNumeric: [
|
|
3452
3817
|
"normal",
|
|
@@ -3458,42 +3823,126 @@ export const keywordValues = {
|
|
|
3458
3823
|
"stacked-fractions",
|
|
3459
3824
|
"ordinal",
|
|
3460
3825
|
"slashed-zero",
|
|
3826
|
+
"initial",
|
|
3827
|
+
"inherit",
|
|
3828
|
+
"unset",
|
|
3829
|
+
],
|
|
3830
|
+
fontVariantPosition: [
|
|
3831
|
+
"normal",
|
|
3832
|
+
"sub",
|
|
3833
|
+
"super",
|
|
3834
|
+
"initial",
|
|
3835
|
+
"inherit",
|
|
3836
|
+
"unset",
|
|
3461
3837
|
],
|
|
3462
|
-
|
|
3463
|
-
|
|
3464
|
-
|
|
3465
|
-
|
|
3466
|
-
|
|
3467
|
-
|
|
3468
|
-
|
|
3469
|
-
|
|
3470
|
-
|
|
3471
|
-
|
|
3472
|
-
|
|
3838
|
+
fontWeight: [
|
|
3839
|
+
"normal",
|
|
3840
|
+
"bold",
|
|
3841
|
+
"bolder",
|
|
3842
|
+
"lighter",
|
|
3843
|
+
"initial",
|
|
3844
|
+
"inherit",
|
|
3845
|
+
"unset",
|
|
3846
|
+
],
|
|
3847
|
+
forcedColorAdjust: ["auto", "none", "initial", "inherit", "unset"],
|
|
3848
|
+
gridAutoColumns: [
|
|
3849
|
+
"min-content",
|
|
3850
|
+
"max-content",
|
|
3851
|
+
"auto",
|
|
3852
|
+
"initial",
|
|
3853
|
+
"inherit",
|
|
3854
|
+
"unset",
|
|
3855
|
+
],
|
|
3856
|
+
gridAutoFlow: ["row", "column", "dense", "initial", "inherit", "unset"],
|
|
3857
|
+
gridAutoRows: [
|
|
3858
|
+
"min-content",
|
|
3859
|
+
"max-content",
|
|
3860
|
+
"auto",
|
|
3861
|
+
"initial",
|
|
3862
|
+
"inherit",
|
|
3863
|
+
"unset",
|
|
3864
|
+
],
|
|
3865
|
+
gridColumnEnd: ["auto", "span", "initial", "inherit", "unset"],
|
|
3866
|
+
gridColumnStart: ["auto", "span", "initial", "inherit", "unset"],
|
|
3867
|
+
gridRowEnd: ["auto", "span", "initial", "inherit", "unset"],
|
|
3868
|
+
gridRowStart: ["auto", "span", "initial", "inherit", "unset"],
|
|
3869
|
+
gridTemplateAreas: ["none", "initial", "inherit", "unset"],
|
|
3473
3870
|
gridTemplateColumns: [
|
|
3474
3871
|
"none",
|
|
3475
3872
|
"min-content",
|
|
3476
3873
|
"max-content",
|
|
3477
3874
|
"auto",
|
|
3478
3875
|
"subgrid",
|
|
3876
|
+
"initial",
|
|
3877
|
+
"inherit",
|
|
3878
|
+
"unset",
|
|
3479
3879
|
],
|
|
3480
|
-
gridTemplateRows: [
|
|
3481
|
-
|
|
3482
|
-
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3495
|
-
|
|
3496
|
-
|
|
3880
|
+
gridTemplateRows: [
|
|
3881
|
+
"none",
|
|
3882
|
+
"min-content",
|
|
3883
|
+
"max-content",
|
|
3884
|
+
"auto",
|
|
3885
|
+
"subgrid",
|
|
3886
|
+
"initial",
|
|
3887
|
+
"inherit",
|
|
3888
|
+
"unset",
|
|
3889
|
+
],
|
|
3890
|
+
hangingPunctuation: [
|
|
3891
|
+
"none",
|
|
3892
|
+
"first",
|
|
3893
|
+
"force-end",
|
|
3894
|
+
"allow-end",
|
|
3895
|
+
"last",
|
|
3896
|
+
"initial",
|
|
3897
|
+
"inherit",
|
|
3898
|
+
"unset",
|
|
3899
|
+
],
|
|
3900
|
+
height: [
|
|
3901
|
+
"auto",
|
|
3902
|
+
"min-content",
|
|
3903
|
+
"max-content",
|
|
3904
|
+
"fit-content",
|
|
3905
|
+
"initial",
|
|
3906
|
+
"inherit",
|
|
3907
|
+
"unset",
|
|
3908
|
+
],
|
|
3909
|
+
hyphenateCharacter: ["auto", "initial", "inherit", "unset"],
|
|
3910
|
+
hyphens: ["none", "manual", "auto", "initial", "inherit", "unset"],
|
|
3911
|
+
imageOrientation: ["from-image", "flip", "initial", "inherit", "unset"],
|
|
3912
|
+
imageRendering: [
|
|
3913
|
+
"auto",
|
|
3914
|
+
"crisp-edges",
|
|
3915
|
+
"pixelated",
|
|
3916
|
+
"initial",
|
|
3917
|
+
"inherit",
|
|
3918
|
+
"unset",
|
|
3919
|
+
],
|
|
3920
|
+
imageResolution: ["from-image", "snap", "initial", "inherit", "unset"],
|
|
3921
|
+
initialLetter: ["normal", "initial", "inherit", "unset"],
|
|
3922
|
+
initialLetterAlign: [
|
|
3923
|
+
"auto",
|
|
3924
|
+
"alphabetic",
|
|
3925
|
+
"hanging",
|
|
3926
|
+
"ideographic",
|
|
3927
|
+
"initial",
|
|
3928
|
+
"inherit",
|
|
3929
|
+
"unset",
|
|
3930
|
+
],
|
|
3931
|
+
inlineSize: [
|
|
3932
|
+
"auto",
|
|
3933
|
+
"min-content",
|
|
3934
|
+
"max-content",
|
|
3935
|
+
"fit-content",
|
|
3936
|
+
"initial",
|
|
3937
|
+
"inherit",
|
|
3938
|
+
"unset",
|
|
3939
|
+
],
|
|
3940
|
+
inputSecurity: ["auto", "none", "initial", "inherit", "unset"],
|
|
3941
|
+
insetBlockEnd: ["auto", "initial", "inherit", "unset"],
|
|
3942
|
+
insetBlockStart: ["auto", "initial", "inherit", "unset"],
|
|
3943
|
+
insetInlineEnd: ["auto", "initial", "inherit", "unset"],
|
|
3944
|
+
insetInlineStart: ["auto", "initial", "inherit", "unset"],
|
|
3945
|
+
isolation: ["auto", "isolate", "initial", "inherit", "unset"],
|
|
3497
3946
|
justifyContent: [
|
|
3498
3947
|
"normal",
|
|
3499
3948
|
"space-between",
|
|
@@ -3509,6 +3958,9 @@ export const keywordValues = {
|
|
|
3509
3958
|
"flex-end",
|
|
3510
3959
|
"left",
|
|
3511
3960
|
"right",
|
|
3961
|
+
"initial",
|
|
3962
|
+
"inherit",
|
|
3963
|
+
"unset",
|
|
3512
3964
|
],
|
|
3513
3965
|
justifyItems: [
|
|
3514
3966
|
"normal",
|
|
@@ -3528,6 +3980,9 @@ export const keywordValues = {
|
|
|
3528
3980
|
"left",
|
|
3529
3981
|
"right",
|
|
3530
3982
|
"legacy",
|
|
3983
|
+
"initial",
|
|
3984
|
+
"inherit",
|
|
3985
|
+
"unset",
|
|
3531
3986
|
],
|
|
3532
3987
|
justifySelf: [
|
|
3533
3988
|
"auto",
|
|
@@ -3547,6 +4002,9 @@ export const keywordValues = {
|
|
|
3547
4002
|
"flex-end",
|
|
3548
4003
|
"left",
|
|
3549
4004
|
"right",
|
|
4005
|
+
"initial",
|
|
4006
|
+
"inherit",
|
|
4007
|
+
"unset",
|
|
3550
4008
|
],
|
|
3551
4009
|
justifyTracks: [
|
|
3552
4010
|
"normal",
|
|
@@ -3563,29 +4021,51 @@ export const keywordValues = {
|
|
|
3563
4021
|
"flex-end",
|
|
3564
4022
|
"left",
|
|
3565
4023
|
"right",
|
|
4024
|
+
"initial",
|
|
4025
|
+
"inherit",
|
|
4026
|
+
"unset",
|
|
3566
4027
|
],
|
|
3567
|
-
left: ["auto"],
|
|
3568
|
-
letterSpacing: ["normal"],
|
|
3569
|
-
lineBreak: [
|
|
3570
|
-
|
|
3571
|
-
|
|
3572
|
-
|
|
3573
|
-
|
|
3574
|
-
|
|
3575
|
-
|
|
3576
|
-
|
|
3577
|
-
|
|
3578
|
-
|
|
3579
|
-
|
|
3580
|
-
|
|
3581
|
-
|
|
3582
|
-
|
|
3583
|
-
|
|
3584
|
-
|
|
3585
|
-
|
|
3586
|
-
|
|
3587
|
-
|
|
3588
|
-
|
|
4028
|
+
left: ["auto", "initial", "inherit", "unset"],
|
|
4029
|
+
letterSpacing: ["normal", "initial", "inherit", "unset"],
|
|
4030
|
+
lineBreak: [
|
|
4031
|
+
"auto",
|
|
4032
|
+
"loose",
|
|
4033
|
+
"normal",
|
|
4034
|
+
"strict",
|
|
4035
|
+
"anywhere",
|
|
4036
|
+
"initial",
|
|
4037
|
+
"inherit",
|
|
4038
|
+
"unset",
|
|
4039
|
+
],
|
|
4040
|
+
lineClamp: ["none", "initial", "inherit", "unset"],
|
|
4041
|
+
lineHeight: ["normal", "initial", "inherit", "unset"],
|
|
4042
|
+
lineHeightStep: ["initial", "inherit", "unset"],
|
|
4043
|
+
listStyleImage: ["none", "initial", "inherit", "unset"],
|
|
4044
|
+
listStylePosition: ["inside", "outside", "initial", "inherit", "unset"],
|
|
4045
|
+
listStyleType: ["none", "initial", "inherit", "unset"],
|
|
4046
|
+
marginBlockEnd: ["auto", "initial", "inherit", "unset"],
|
|
4047
|
+
marginBlockStart: ["auto", "initial", "inherit", "unset"],
|
|
4048
|
+
marginBottom: ["auto", "initial", "inherit", "unset"],
|
|
4049
|
+
marginInlineEnd: ["auto", "initial", "inherit", "unset"],
|
|
4050
|
+
marginInlineStart: ["auto", "initial", "inherit", "unset"],
|
|
4051
|
+
marginLeft: ["auto", "initial", "inherit", "unset"],
|
|
4052
|
+
marginRight: ["auto", "initial", "inherit", "unset"],
|
|
4053
|
+
marginTop: ["auto", "initial", "inherit", "unset"],
|
|
4054
|
+
marginTrim: ["none", "in-flow", "all", "initial", "inherit", "unset"],
|
|
4055
|
+
maskBorderMode: ["luminance", "alpha", "initial", "inherit", "unset"],
|
|
4056
|
+
maskBorderOutset: ["initial", "inherit", "unset"],
|
|
4057
|
+
maskBorderRepeat: [
|
|
4058
|
+
"stretch",
|
|
4059
|
+
"repeat",
|
|
4060
|
+
"round",
|
|
4061
|
+
"space",
|
|
4062
|
+
"initial",
|
|
4063
|
+
"inherit",
|
|
4064
|
+
"unset",
|
|
4065
|
+
],
|
|
4066
|
+
maskBorderSlice: ["fill", "initial", "inherit", "unset"],
|
|
4067
|
+
maskBorderSource: ["none", "initial", "inherit", "unset"],
|
|
4068
|
+
maskBorderWidth: ["auto", "initial", "inherit", "unset"],
|
|
3589
4069
|
maskClip: [
|
|
3590
4070
|
"border-box",
|
|
3591
4071
|
"padding-box",
|
|
@@ -3595,10 +4075,28 @@ export const keywordValues = {
|
|
|
3595
4075
|
"stroke-box",
|
|
3596
4076
|
"view-box",
|
|
3597
4077
|
"no-clip",
|
|
4078
|
+
"initial",
|
|
4079
|
+
"inherit",
|
|
4080
|
+
"unset",
|
|
4081
|
+
],
|
|
4082
|
+
maskComposite: [
|
|
4083
|
+
"add",
|
|
4084
|
+
"subtract",
|
|
4085
|
+
"intersect",
|
|
4086
|
+
"exclude",
|
|
4087
|
+
"initial",
|
|
4088
|
+
"inherit",
|
|
4089
|
+
"unset",
|
|
4090
|
+
],
|
|
4091
|
+
maskImage: ["none", "initial", "inherit", "unset"],
|
|
4092
|
+
maskMode: [
|
|
4093
|
+
"alpha",
|
|
4094
|
+
"luminance",
|
|
4095
|
+
"match-source",
|
|
4096
|
+
"initial",
|
|
4097
|
+
"inherit",
|
|
4098
|
+
"unset",
|
|
3598
4099
|
],
|
|
3599
|
-
maskComposite: ["add", "subtract", "intersect", "exclude"],
|
|
3600
|
-
maskImage: ["none"],
|
|
3601
|
-
maskMode: ["alpha", "luminance", "match-source"],
|
|
3602
4100
|
maskOrigin: [
|
|
3603
4101
|
"border-box",
|
|
3604
4102
|
"padding-box",
|
|
@@ -3607,24 +4105,118 @@ export const keywordValues = {
|
|
|
3607
4105
|
"fill-box",
|
|
3608
4106
|
"stroke-box",
|
|
3609
4107
|
"view-box",
|
|
4108
|
+
"initial",
|
|
4109
|
+
"inherit",
|
|
4110
|
+
"unset",
|
|
4111
|
+
],
|
|
4112
|
+
maskPosition: [
|
|
4113
|
+
"left",
|
|
4114
|
+
"center",
|
|
4115
|
+
"right",
|
|
4116
|
+
"top",
|
|
4117
|
+
"bottom",
|
|
4118
|
+
"initial",
|
|
4119
|
+
"inherit",
|
|
4120
|
+
"unset",
|
|
4121
|
+
],
|
|
4122
|
+
maskRepeat: [
|
|
4123
|
+
"repeat-x",
|
|
4124
|
+
"repeat-y",
|
|
4125
|
+
"repeat",
|
|
4126
|
+
"space",
|
|
4127
|
+
"round",
|
|
4128
|
+
"no-repeat",
|
|
4129
|
+
"initial",
|
|
4130
|
+
"inherit",
|
|
4131
|
+
"unset",
|
|
4132
|
+
],
|
|
4133
|
+
maskSize: ["auto", "cover", "contain", "initial", "inherit", "unset"],
|
|
4134
|
+
maskType: ["luminance", "alpha", "initial", "inherit", "unset"],
|
|
4135
|
+
masonryAutoFlow: [
|
|
4136
|
+
"pack",
|
|
4137
|
+
"next",
|
|
4138
|
+
"definite-first",
|
|
4139
|
+
"ordered",
|
|
4140
|
+
"initial",
|
|
4141
|
+
"inherit",
|
|
4142
|
+
"unset",
|
|
4143
|
+
],
|
|
4144
|
+
mathDepth: ["auto-add", "initial", "inherit", "unset"],
|
|
4145
|
+
mathShift: ["normal", "compact", "initial", "inherit", "unset"],
|
|
4146
|
+
mathStyle: ["normal", "compact", "initial", "inherit", "unset"],
|
|
4147
|
+
maxBlockSize: [
|
|
4148
|
+
"none",
|
|
4149
|
+
"min-content",
|
|
4150
|
+
"max-content",
|
|
4151
|
+
"fit-content",
|
|
4152
|
+
"initial",
|
|
4153
|
+
"inherit",
|
|
4154
|
+
"unset",
|
|
4155
|
+
],
|
|
4156
|
+
maxHeight: [
|
|
4157
|
+
"none",
|
|
4158
|
+
"min-content",
|
|
4159
|
+
"max-content",
|
|
4160
|
+
"fit-content",
|
|
4161
|
+
"initial",
|
|
4162
|
+
"inherit",
|
|
4163
|
+
"unset",
|
|
4164
|
+
],
|
|
4165
|
+
maxInlineSize: [
|
|
4166
|
+
"none",
|
|
4167
|
+
"min-content",
|
|
4168
|
+
"max-content",
|
|
4169
|
+
"fit-content",
|
|
4170
|
+
"initial",
|
|
4171
|
+
"inherit",
|
|
4172
|
+
"unset",
|
|
4173
|
+
],
|
|
4174
|
+
maxLines: ["none", "initial", "inherit", "unset"],
|
|
4175
|
+
maxWidth: [
|
|
4176
|
+
"none",
|
|
4177
|
+
"min-content",
|
|
4178
|
+
"max-content",
|
|
4179
|
+
"fit-content",
|
|
4180
|
+
"initial",
|
|
4181
|
+
"inherit",
|
|
4182
|
+
"unset",
|
|
4183
|
+
],
|
|
4184
|
+
minBlockSize: [
|
|
4185
|
+
"auto",
|
|
4186
|
+
"min-content",
|
|
4187
|
+
"max-content",
|
|
4188
|
+
"fit-content",
|
|
4189
|
+
"initial",
|
|
4190
|
+
"inherit",
|
|
4191
|
+
"unset",
|
|
4192
|
+
],
|
|
4193
|
+
minHeight: [
|
|
4194
|
+
"auto",
|
|
4195
|
+
"min-content",
|
|
4196
|
+
"max-content",
|
|
4197
|
+
"fit-content",
|
|
4198
|
+
"initial",
|
|
4199
|
+
"inherit",
|
|
4200
|
+
"unset",
|
|
4201
|
+
],
|
|
4202
|
+
minInlineSize: [
|
|
4203
|
+
"auto",
|
|
4204
|
+
"min-content",
|
|
4205
|
+
"max-content",
|
|
4206
|
+
"fit-content",
|
|
4207
|
+
"initial",
|
|
4208
|
+
"inherit",
|
|
4209
|
+
"unset",
|
|
4210
|
+
],
|
|
4211
|
+
minWidth: [
|
|
4212
|
+
"auto",
|
|
4213
|
+
"min-content",
|
|
4214
|
+
"max-content",
|
|
4215
|
+
"fit-content",
|
|
4216
|
+
"initial",
|
|
4217
|
+
"inherit",
|
|
4218
|
+
"unset",
|
|
3610
4219
|
],
|
|
3611
|
-
maskPosition: ["left", "center", "right", "top", "bottom"],
|
|
3612
|
-
maskRepeat: ["repeat-x", "repeat-y", "repeat", "space", "round", "no-repeat"],
|
|
3613
|
-
maskSize: ["auto", "cover", "contain"],
|
|
3614
|
-
maskType: ["luminance", "alpha"],
|
|
3615
|
-
masonryAutoFlow: ["pack", "next", "definite-first", "ordered"],
|
|
3616
|
-
mathDepth: ["auto-add"],
|
|
3617
|
-
mathShift: ["normal", "compact"],
|
|
3618
|
-
mathStyle: ["normal", "compact"],
|
|
3619
|
-
maxBlockSize: ["none", "min-content", "max-content", "fit-content"],
|
|
3620
|
-
maxHeight: ["none", "min-content", "max-content", "fit-content"],
|
|
3621
|
-
maxInlineSize: ["none", "min-content", "max-content", "fit-content"],
|
|
3622
|
-
maxLines: ["none"],
|
|
3623
|
-
maxWidth: ["none", "min-content", "max-content", "fit-content"],
|
|
3624
|
-
minBlockSize: ["auto", "min-content", "max-content", "fit-content"],
|
|
3625
|
-
minHeight: ["auto", "min-content", "max-content", "fit-content"],
|
|
3626
|
-
minInlineSize: ["auto", "min-content", "max-content", "fit-content"],
|
|
3627
|
-
minWidth: ["auto", "min-content", "max-content", "fit-content"],
|
|
3628
4220
|
mixBlendMode: [
|
|
3629
4221
|
"normal",
|
|
3630
4222
|
"multiply",
|
|
@@ -3643,10 +4235,42 @@ export const keywordValues = {
|
|
|
3643
4235
|
"color",
|
|
3644
4236
|
"luminosity",
|
|
3645
4237
|
"plus-lighter",
|
|
4238
|
+
"initial",
|
|
4239
|
+
"inherit",
|
|
4240
|
+
"unset",
|
|
3646
4241
|
],
|
|
3647
|
-
objectFit: [
|
|
3648
|
-
|
|
3649
|
-
|
|
4242
|
+
objectFit: [
|
|
4243
|
+
"fill",
|
|
4244
|
+
"contain",
|
|
4245
|
+
"cover",
|
|
4246
|
+
"none",
|
|
4247
|
+
"scale-down",
|
|
4248
|
+
"initial",
|
|
4249
|
+
"inherit",
|
|
4250
|
+
"unset",
|
|
4251
|
+
],
|
|
4252
|
+
objectPosition: [
|
|
4253
|
+
"left",
|
|
4254
|
+
"center",
|
|
4255
|
+
"right",
|
|
4256
|
+
"top",
|
|
4257
|
+
"bottom",
|
|
4258
|
+
"initial",
|
|
4259
|
+
"inherit",
|
|
4260
|
+
"unset",
|
|
4261
|
+
],
|
|
4262
|
+
offsetAnchor: [
|
|
4263
|
+
"auto",
|
|
4264
|
+
"left",
|
|
4265
|
+
"center",
|
|
4266
|
+
"right",
|
|
4267
|
+
"top",
|
|
4268
|
+
"bottom",
|
|
4269
|
+
"initial",
|
|
4270
|
+
"inherit",
|
|
4271
|
+
"unset",
|
|
4272
|
+
],
|
|
4273
|
+
offsetDistance: ["initial", "inherit", "unset"],
|
|
3650
4274
|
offsetPath: [
|
|
3651
4275
|
"none",
|
|
3652
4276
|
"border-box",
|
|
@@ -3656,9 +4280,25 @@ export const keywordValues = {
|
|
|
3656
4280
|
"fill-box",
|
|
3657
4281
|
"stroke-box",
|
|
3658
4282
|
"view-box",
|
|
4283
|
+
"initial",
|
|
4284
|
+
"inherit",
|
|
4285
|
+
"unset",
|
|
4286
|
+
],
|
|
4287
|
+
offsetPosition: [
|
|
4288
|
+
"auto",
|
|
4289
|
+
"left",
|
|
4290
|
+
"center",
|
|
4291
|
+
"right",
|
|
4292
|
+
"top",
|
|
4293
|
+
"bottom",
|
|
4294
|
+
"initial",
|
|
4295
|
+
"inherit",
|
|
4296
|
+
"unset",
|
|
3659
4297
|
],
|
|
3660
|
-
|
|
3661
|
-
|
|
4298
|
+
offsetRotate: ["auto", "reverse", "initial", "inherit", "unset"],
|
|
4299
|
+
opacity: ["initial", "inherit", "unset"],
|
|
4300
|
+
order: ["initial", "inherit", "unset"],
|
|
4301
|
+
orphans: ["initial", "inherit", "unset"],
|
|
3662
4302
|
outlineColor: [
|
|
3663
4303
|
"transparent",
|
|
3664
4304
|
"aliceblue",
|
|
@@ -3809,7 +4449,7 @@ export const keywordValues = {
|
|
|
3809
4449
|
"whitesmoke",
|
|
3810
4450
|
"yellow",
|
|
3811
4451
|
"yellowgreen",
|
|
3812
|
-
"
|
|
4452
|
+
"currentColor",
|
|
3813
4453
|
"ActiveBorder",
|
|
3814
4454
|
"ActiveCaption",
|
|
3815
4455
|
"AppWorkspace",
|
|
@@ -3839,7 +4479,11 @@ export const keywordValues = {
|
|
|
3839
4479
|
"WindowFrame",
|
|
3840
4480
|
"WindowText",
|
|
3841
4481
|
"invert",
|
|
4482
|
+
"initial",
|
|
4483
|
+
"inherit",
|
|
4484
|
+
"unset",
|
|
3842
4485
|
],
|
|
4486
|
+
outlineOffset: ["initial", "inherit", "unset"],
|
|
3843
4487
|
outlineStyle: [
|
|
3844
4488
|
"auto",
|
|
3845
4489
|
"none",
|
|
@@ -3852,21 +4496,126 @@ export const keywordValues = {
|
|
|
3852
4496
|
"ridge",
|
|
3853
4497
|
"inset",
|
|
3854
4498
|
"outset",
|
|
4499
|
+
"initial",
|
|
4500
|
+
"inherit",
|
|
4501
|
+
"unset",
|
|
4502
|
+
],
|
|
4503
|
+
outlineWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
4504
|
+
overflow: [
|
|
4505
|
+
"visible",
|
|
4506
|
+
"hidden",
|
|
4507
|
+
"clip",
|
|
4508
|
+
"scroll",
|
|
4509
|
+
"auto",
|
|
4510
|
+
"initial",
|
|
4511
|
+
"inherit",
|
|
4512
|
+
"unset",
|
|
4513
|
+
],
|
|
4514
|
+
overflowAnchor: ["auto", "none", "initial", "inherit", "unset"],
|
|
4515
|
+
overflowBlock: [
|
|
4516
|
+
"visible",
|
|
4517
|
+
"hidden",
|
|
4518
|
+
"clip",
|
|
4519
|
+
"scroll",
|
|
4520
|
+
"auto",
|
|
4521
|
+
"initial",
|
|
4522
|
+
"inherit",
|
|
4523
|
+
"unset",
|
|
4524
|
+
],
|
|
4525
|
+
overflowClipMargin: [
|
|
4526
|
+
"content-box",
|
|
4527
|
+
"padding-box",
|
|
4528
|
+
"border-box",
|
|
4529
|
+
"initial",
|
|
4530
|
+
"inherit",
|
|
4531
|
+
"unset",
|
|
4532
|
+
],
|
|
4533
|
+
overflowInline: [
|
|
4534
|
+
"visible",
|
|
4535
|
+
"hidden",
|
|
4536
|
+
"clip",
|
|
4537
|
+
"scroll",
|
|
4538
|
+
"auto",
|
|
4539
|
+
"initial",
|
|
4540
|
+
"inherit",
|
|
4541
|
+
"unset",
|
|
4542
|
+
],
|
|
4543
|
+
overflowWrap: [
|
|
4544
|
+
"normal",
|
|
4545
|
+
"break-word",
|
|
4546
|
+
"anywhere",
|
|
4547
|
+
"initial",
|
|
4548
|
+
"inherit",
|
|
4549
|
+
"unset",
|
|
4550
|
+
],
|
|
4551
|
+
overflowX: [
|
|
4552
|
+
"visible",
|
|
4553
|
+
"hidden",
|
|
4554
|
+
"clip",
|
|
4555
|
+
"scroll",
|
|
4556
|
+
"auto",
|
|
4557
|
+
"initial",
|
|
4558
|
+
"inherit",
|
|
4559
|
+
"unset",
|
|
4560
|
+
],
|
|
4561
|
+
overflowY: [
|
|
4562
|
+
"visible",
|
|
4563
|
+
"hidden",
|
|
4564
|
+
"clip",
|
|
4565
|
+
"scroll",
|
|
4566
|
+
"auto",
|
|
4567
|
+
"initial",
|
|
4568
|
+
"inherit",
|
|
4569
|
+
"unset",
|
|
4570
|
+
],
|
|
4571
|
+
overscrollBehavior: [
|
|
4572
|
+
"contain",
|
|
4573
|
+
"none",
|
|
4574
|
+
"auto",
|
|
4575
|
+
"initial",
|
|
4576
|
+
"inherit",
|
|
4577
|
+
"unset",
|
|
4578
|
+
],
|
|
4579
|
+
overscrollBehaviorBlock: [
|
|
4580
|
+
"contain",
|
|
4581
|
+
"none",
|
|
4582
|
+
"auto",
|
|
4583
|
+
"initial",
|
|
4584
|
+
"inherit",
|
|
4585
|
+
"unset",
|
|
4586
|
+
],
|
|
4587
|
+
overscrollBehaviorInline: [
|
|
4588
|
+
"contain",
|
|
4589
|
+
"none",
|
|
4590
|
+
"auto",
|
|
4591
|
+
"initial",
|
|
4592
|
+
"inherit",
|
|
4593
|
+
"unset",
|
|
4594
|
+
],
|
|
4595
|
+
overscrollBehaviorX: [
|
|
4596
|
+
"contain",
|
|
4597
|
+
"none",
|
|
4598
|
+
"auto",
|
|
4599
|
+
"initial",
|
|
4600
|
+
"inherit",
|
|
4601
|
+
"unset",
|
|
4602
|
+
],
|
|
4603
|
+
overscrollBehaviorY: [
|
|
4604
|
+
"contain",
|
|
4605
|
+
"none",
|
|
4606
|
+
"auto",
|
|
4607
|
+
"initial",
|
|
4608
|
+
"inherit",
|
|
4609
|
+
"unset",
|
|
3855
4610
|
],
|
|
3856
|
-
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
|
|
3860
|
-
|
|
3861
|
-
|
|
3862
|
-
|
|
3863
|
-
|
|
3864
|
-
overflowY: ["visible", "hidden", "clip", "scroll", "auto"],
|
|
3865
|
-
overscrollBehavior: ["contain", "none", "auto"],
|
|
3866
|
-
overscrollBehaviorBlock: ["contain", "none", "auto"],
|
|
3867
|
-
overscrollBehaviorInline: ["contain", "none", "auto"],
|
|
3868
|
-
overscrollBehaviorX: ["contain", "none", "auto"],
|
|
3869
|
-
overscrollBehaviorY: ["contain", "none", "auto"],
|
|
4611
|
+
paddingBlockEnd: ["initial", "inherit", "unset"],
|
|
4612
|
+
paddingBlockStart: ["initial", "inherit", "unset"],
|
|
4613
|
+
paddingBottom: ["initial", "inherit", "unset"],
|
|
4614
|
+
paddingInlineEnd: ["initial", "inherit", "unset"],
|
|
4615
|
+
paddingInlineStart: ["initial", "inherit", "unset"],
|
|
4616
|
+
paddingLeft: ["initial", "inherit", "unset"],
|
|
4617
|
+
paddingRight: ["initial", "inherit", "unset"],
|
|
4618
|
+
paddingTop: ["initial", "inherit", "unset"],
|
|
3870
4619
|
pageBreakAfter: [
|
|
3871
4620
|
"auto",
|
|
3872
4621
|
"always",
|
|
@@ -3875,6 +4624,9 @@ export const keywordValues = {
|
|
|
3875
4624
|
"right",
|
|
3876
4625
|
"recto",
|
|
3877
4626
|
"verso",
|
|
4627
|
+
"initial",
|
|
4628
|
+
"inherit",
|
|
4629
|
+
"unset",
|
|
3878
4630
|
],
|
|
3879
4631
|
pageBreakBefore: [
|
|
3880
4632
|
"auto",
|
|
@@ -3884,11 +4636,31 @@ export const keywordValues = {
|
|
|
3884
4636
|
"right",
|
|
3885
4637
|
"recto",
|
|
3886
4638
|
"verso",
|
|
4639
|
+
"initial",
|
|
4640
|
+
"inherit",
|
|
4641
|
+
"unset",
|
|
4642
|
+
],
|
|
4643
|
+
pageBreakInside: ["auto", "avoid", "initial", "inherit", "unset"],
|
|
4644
|
+
paintOrder: [
|
|
4645
|
+
"normal",
|
|
4646
|
+
"fill",
|
|
4647
|
+
"stroke",
|
|
4648
|
+
"markers",
|
|
4649
|
+
"initial",
|
|
4650
|
+
"inherit",
|
|
4651
|
+
"unset",
|
|
4652
|
+
],
|
|
4653
|
+
perspective: ["none", "initial", "inherit", "unset"],
|
|
4654
|
+
perspectiveOrigin: [
|
|
4655
|
+
"left",
|
|
4656
|
+
"center",
|
|
4657
|
+
"right",
|
|
4658
|
+
"top",
|
|
4659
|
+
"bottom",
|
|
4660
|
+
"initial",
|
|
4661
|
+
"inherit",
|
|
4662
|
+
"unset",
|
|
3887
4663
|
],
|
|
3888
|
-
pageBreakInside: ["auto", "avoid"],
|
|
3889
|
-
paintOrder: ["normal", "fill", "stroke", "markers"],
|
|
3890
|
-
perspective: ["none"],
|
|
3891
|
-
perspectiveOrigin: ["left", "center", "right", "top", "bottom"],
|
|
3892
4664
|
pointerEvents: [
|
|
3893
4665
|
"auto",
|
|
3894
4666
|
"none",
|
|
@@ -3900,18 +4672,55 @@ export const keywordValues = {
|
|
|
3900
4672
|
"fill",
|
|
3901
4673
|
"stroke",
|
|
3902
4674
|
"all",
|
|
4675
|
+
"initial",
|
|
4676
|
+
"inherit",
|
|
4677
|
+
"unset",
|
|
4678
|
+
],
|
|
4679
|
+
position: [
|
|
4680
|
+
"static",
|
|
4681
|
+
"relative",
|
|
4682
|
+
"absolute",
|
|
4683
|
+
"sticky",
|
|
4684
|
+
"fixed",
|
|
4685
|
+
"initial",
|
|
4686
|
+
"inherit",
|
|
4687
|
+
"unset",
|
|
4688
|
+
],
|
|
4689
|
+
quotes: ["none", "auto", "initial", "inherit", "unset"],
|
|
4690
|
+
resize: [
|
|
4691
|
+
"none",
|
|
4692
|
+
"both",
|
|
4693
|
+
"horizontal",
|
|
4694
|
+
"vertical",
|
|
4695
|
+
"block",
|
|
4696
|
+
"inline",
|
|
4697
|
+
"initial",
|
|
4698
|
+
"inherit",
|
|
4699
|
+
"unset",
|
|
4700
|
+
],
|
|
4701
|
+
right: ["auto", "initial", "inherit", "unset"],
|
|
4702
|
+
rotate: ["none", "x", "y", "z", "initial", "inherit", "unset"],
|
|
4703
|
+
rowGap: ["normal", "initial", "inherit", "unset"],
|
|
4704
|
+
rubyAlign: [
|
|
4705
|
+
"start",
|
|
4706
|
+
"center",
|
|
4707
|
+
"space-between",
|
|
4708
|
+
"space-around",
|
|
4709
|
+
"initial",
|
|
4710
|
+
"inherit",
|
|
4711
|
+
"unset",
|
|
4712
|
+
],
|
|
4713
|
+
rubyMerge: ["separate", "collapse", "auto", "initial", "inherit", "unset"],
|
|
4714
|
+
rubyPosition: [
|
|
4715
|
+
"alternate",
|
|
4716
|
+
"over",
|
|
4717
|
+
"under",
|
|
4718
|
+
"inter-character",
|
|
4719
|
+
"initial",
|
|
3903
4720
|
"inherit",
|
|
4721
|
+
"unset",
|
|
3904
4722
|
],
|
|
3905
|
-
|
|
3906
|
-
quotes: ["none", "auto"],
|
|
3907
|
-
resize: ["none", "both", "horizontal", "vertical", "block", "inline"],
|
|
3908
|
-
right: ["auto"],
|
|
3909
|
-
rotate: ["none", "x", "y", "z"],
|
|
3910
|
-
rowGap: ["normal"],
|
|
3911
|
-
rubyAlign: ["start", "center", "space-between", "space-around"],
|
|
3912
|
-
rubyMerge: ["separate", "collapse", "auto"],
|
|
3913
|
-
rubyPosition: ["alternate", "over", "under", "inter-character"],
|
|
3914
|
-
scale: ["none"],
|
|
4723
|
+
scale: ["none", "initial", "inherit", "unset"],
|
|
3915
4724
|
scrollbarColor: [
|
|
3916
4725
|
"auto",
|
|
3917
4726
|
"transparent",
|
|
@@ -4063,7 +4872,7 @@ export const keywordValues = {
|
|
|
4063
4872
|
"whitesmoke",
|
|
4064
4873
|
"yellow",
|
|
4065
4874
|
"yellowgreen",
|
|
4066
|
-
"
|
|
4875
|
+
"currentColor",
|
|
4067
4876
|
"ActiveBorder",
|
|
4068
4877
|
"ActiveCaption",
|
|
4069
4878
|
"AppWorkspace",
|
|
@@ -4092,20 +4901,46 @@ export const keywordValues = {
|
|
|
4092
4901
|
"Window",
|
|
4093
4902
|
"WindowFrame",
|
|
4094
4903
|
"WindowText",
|
|
4904
|
+
"initial",
|
|
4905
|
+
"inherit",
|
|
4906
|
+
"unset",
|
|
4907
|
+
],
|
|
4908
|
+
scrollbarGutter: [
|
|
4909
|
+
"auto",
|
|
4910
|
+
"stable",
|
|
4911
|
+
"both-edges",
|
|
4912
|
+
"initial",
|
|
4913
|
+
"inherit",
|
|
4914
|
+
"unset",
|
|
4095
4915
|
],
|
|
4096
|
-
|
|
4097
|
-
|
|
4098
|
-
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
4103
|
-
|
|
4104
|
-
|
|
4105
|
-
|
|
4106
|
-
|
|
4107
|
-
|
|
4108
|
-
|
|
4916
|
+
scrollbarWidth: ["auto", "thin", "none", "initial", "inherit", "unset"],
|
|
4917
|
+
scrollBehavior: ["auto", "smooth", "initial", "inherit", "unset"],
|
|
4918
|
+
scrollMarginBlockStart: ["initial", "inherit", "unset"],
|
|
4919
|
+
scrollMarginBlockEnd: ["initial", "inherit", "unset"],
|
|
4920
|
+
scrollMarginBottom: ["initial", "inherit", "unset"],
|
|
4921
|
+
scrollMarginInlineStart: ["initial", "inherit", "unset"],
|
|
4922
|
+
scrollMarginInlineEnd: ["initial", "inherit", "unset"],
|
|
4923
|
+
scrollMarginLeft: ["initial", "inherit", "unset"],
|
|
4924
|
+
scrollMarginRight: ["initial", "inherit", "unset"],
|
|
4925
|
+
scrollMarginTop: ["initial", "inherit", "unset"],
|
|
4926
|
+
scrollPaddingBlockStart: ["auto", "initial", "inherit", "unset"],
|
|
4927
|
+
scrollPaddingBlockEnd: ["auto", "initial", "inherit", "unset"],
|
|
4928
|
+
scrollPaddingBottom: ["auto", "initial", "inherit", "unset"],
|
|
4929
|
+
scrollPaddingInlineStart: ["auto", "initial", "inherit", "unset"],
|
|
4930
|
+
scrollPaddingInlineEnd: ["auto", "initial", "inherit", "unset"],
|
|
4931
|
+
scrollPaddingLeft: ["auto", "initial", "inherit", "unset"],
|
|
4932
|
+
scrollPaddingRight: ["auto", "initial", "inherit", "unset"],
|
|
4933
|
+
scrollPaddingTop: ["auto", "initial", "inherit", "unset"],
|
|
4934
|
+
scrollSnapAlign: [
|
|
4935
|
+
"none",
|
|
4936
|
+
"start",
|
|
4937
|
+
"end",
|
|
4938
|
+
"center",
|
|
4939
|
+
"initial",
|
|
4940
|
+
"inherit",
|
|
4941
|
+
"unset",
|
|
4942
|
+
],
|
|
4943
|
+
scrollSnapStop: ["normal", "always", "initial", "inherit", "unset"],
|
|
4109
4944
|
scrollSnapType: [
|
|
4110
4945
|
"none",
|
|
4111
4946
|
"x",
|
|
@@ -4115,17 +4950,34 @@ export const keywordValues = {
|
|
|
4115
4950
|
"both",
|
|
4116
4951
|
"mandatory",
|
|
4117
4952
|
"proximity",
|
|
4953
|
+
"initial",
|
|
4954
|
+
"inherit",
|
|
4955
|
+
"unset",
|
|
4118
4956
|
],
|
|
4119
|
-
scrollTimelineAxis: [
|
|
4120
|
-
|
|
4957
|
+
scrollTimelineAxis: [
|
|
4958
|
+
"block",
|
|
4959
|
+
"inline",
|
|
4960
|
+
"vertical",
|
|
4961
|
+
"horizontal",
|
|
4962
|
+
"initial",
|
|
4963
|
+
"inherit",
|
|
4964
|
+
"unset",
|
|
4965
|
+
],
|
|
4966
|
+
scrollTimelineName: ["none", "initial", "inherit", "unset"],
|
|
4967
|
+
shapeImageThreshold: ["initial", "inherit", "unset"],
|
|
4968
|
+
shapeMargin: ["initial", "inherit", "unset"],
|
|
4121
4969
|
shapeOutside: [
|
|
4122
4970
|
"none",
|
|
4123
4971
|
"border-box",
|
|
4124
4972
|
"padding-box",
|
|
4125
4973
|
"content-box",
|
|
4126
4974
|
"margin-box",
|
|
4975
|
+
"initial",
|
|
4976
|
+
"inherit",
|
|
4977
|
+
"unset",
|
|
4127
4978
|
],
|
|
4128
|
-
|
|
4979
|
+
tabSize: ["initial", "inherit", "unset"],
|
|
4980
|
+
tableLayout: ["auto", "fixed", "initial", "inherit", "unset"],
|
|
4129
4981
|
textAlign: [
|
|
4130
4982
|
"start",
|
|
4131
4983
|
"end",
|
|
@@ -4134,9 +4986,23 @@ export const keywordValues = {
|
|
|
4134
4986
|
"center",
|
|
4135
4987
|
"justify",
|
|
4136
4988
|
"match-parent",
|
|
4989
|
+
"initial",
|
|
4990
|
+
"inherit",
|
|
4991
|
+
"unset",
|
|
4137
4992
|
],
|
|
4138
|
-
textAlignLast: [
|
|
4139
|
-
|
|
4993
|
+
textAlignLast: [
|
|
4994
|
+
"auto",
|
|
4995
|
+
"start",
|
|
4996
|
+
"end",
|
|
4997
|
+
"left",
|
|
4998
|
+
"right",
|
|
4999
|
+
"center",
|
|
5000
|
+
"justify",
|
|
5001
|
+
"initial",
|
|
5002
|
+
"inherit",
|
|
5003
|
+
"unset",
|
|
5004
|
+
],
|
|
5005
|
+
textCombineUpright: ["none", "all", "digits", "initial", "inherit", "unset"],
|
|
4140
5006
|
textDecorationColor: [
|
|
4141
5007
|
"transparent",
|
|
4142
5008
|
"aliceblue",
|
|
@@ -4287,7 +5153,7 @@ export const keywordValues = {
|
|
|
4287
5153
|
"whitesmoke",
|
|
4288
5154
|
"yellow",
|
|
4289
5155
|
"yellowgreen",
|
|
4290
|
-
"
|
|
5156
|
+
"currentColor",
|
|
4291
5157
|
"ActiveBorder",
|
|
4292
5158
|
"ActiveCaption",
|
|
4293
5159
|
"AppWorkspace",
|
|
@@ -4316,6 +5182,9 @@ export const keywordValues = {
|
|
|
4316
5182
|
"Window",
|
|
4317
5183
|
"WindowFrame",
|
|
4318
5184
|
"WindowText",
|
|
5185
|
+
"initial",
|
|
5186
|
+
"inherit",
|
|
5187
|
+
"unset",
|
|
4319
5188
|
],
|
|
4320
5189
|
textDecorationLine: [
|
|
4321
5190
|
"none",
|
|
@@ -4325,6 +5194,9 @@ export const keywordValues = {
|
|
|
4325
5194
|
"blink",
|
|
4326
5195
|
"spelling-error",
|
|
4327
5196
|
"grammar-error",
|
|
5197
|
+
"initial",
|
|
5198
|
+
"inherit",
|
|
5199
|
+
"unset",
|
|
4328
5200
|
],
|
|
4329
5201
|
textDecorationSkip: [
|
|
4330
5202
|
"none",
|
|
@@ -4334,10 +5206,22 @@ export const keywordValues = {
|
|
|
4334
5206
|
"trailing-spaces",
|
|
4335
5207
|
"edges",
|
|
4336
5208
|
"box-decoration",
|
|
5209
|
+
"initial",
|
|
5210
|
+
"inherit",
|
|
5211
|
+
"unset",
|
|
5212
|
+
],
|
|
5213
|
+
textDecorationSkipInk: ["auto", "all", "none", "initial", "inherit", "unset"],
|
|
5214
|
+
textDecorationStyle: [
|
|
5215
|
+
"solid",
|
|
5216
|
+
"double",
|
|
5217
|
+
"dotted",
|
|
5218
|
+
"dashed",
|
|
5219
|
+
"wavy",
|
|
5220
|
+
"initial",
|
|
5221
|
+
"inherit",
|
|
5222
|
+
"unset",
|
|
4337
5223
|
],
|
|
4338
|
-
|
|
4339
|
-
textDecorationStyle: ["solid", "double", "dotted", "dashed", "wavy"],
|
|
4340
|
-
textDecorationThickness: ["auto", "from-font"],
|
|
5224
|
+
textDecorationThickness: ["auto", "from-font", "initial", "inherit", "unset"],
|
|
4341
5225
|
textEmphasisColor: [
|
|
4342
5226
|
"transparent",
|
|
4343
5227
|
"aliceblue",
|
|
@@ -4488,7 +5372,7 @@ export const keywordValues = {
|
|
|
4488
5372
|
"whitesmoke",
|
|
4489
5373
|
"yellow",
|
|
4490
5374
|
"yellowgreen",
|
|
4491
|
-
"
|
|
5375
|
+
"currentColor",
|
|
4492
5376
|
"ActiveBorder",
|
|
4493
5377
|
"ActiveCaption",
|
|
4494
5378
|
"AppWorkspace",
|
|
@@ -4517,8 +5401,19 @@ export const keywordValues = {
|
|
|
4517
5401
|
"Window",
|
|
4518
5402
|
"WindowFrame",
|
|
4519
5403
|
"WindowText",
|
|
5404
|
+
"initial",
|
|
5405
|
+
"inherit",
|
|
5406
|
+
"unset",
|
|
5407
|
+
],
|
|
5408
|
+
textEmphasisPosition: [
|
|
5409
|
+
"over",
|
|
5410
|
+
"under",
|
|
5411
|
+
"right",
|
|
5412
|
+
"left",
|
|
5413
|
+
"initial",
|
|
5414
|
+
"inherit",
|
|
5415
|
+
"unset",
|
|
4520
5416
|
],
|
|
4521
|
-
textEmphasisPosition: ["over", "under", "right", "left"],
|
|
4522
5417
|
textEmphasisStyle: [
|
|
4523
5418
|
"none",
|
|
4524
5419
|
"filled",
|
|
@@ -4528,16 +5423,37 @@ export const keywordValues = {
|
|
|
4528
5423
|
"double-circle",
|
|
4529
5424
|
"triangle",
|
|
4530
5425
|
"sesame",
|
|
5426
|
+
"initial",
|
|
5427
|
+
"inherit",
|
|
5428
|
+
"unset",
|
|
4531
5429
|
],
|
|
4532
|
-
textIndent: ["hanging", "each-line"],
|
|
4533
|
-
textJustify: [
|
|
4534
|
-
|
|
4535
|
-
|
|
5430
|
+
textIndent: ["hanging", "each-line", "initial", "inherit", "unset"],
|
|
5431
|
+
textJustify: [
|
|
5432
|
+
"auto",
|
|
5433
|
+
"inter-character",
|
|
5434
|
+
"inter-word",
|
|
5435
|
+
"none",
|
|
5436
|
+
"initial",
|
|
5437
|
+
"inherit",
|
|
5438
|
+
"unset",
|
|
5439
|
+
],
|
|
5440
|
+
textOrientation: [
|
|
5441
|
+
"mixed",
|
|
5442
|
+
"upright",
|
|
5443
|
+
"sideways",
|
|
5444
|
+
"initial",
|
|
5445
|
+
"inherit",
|
|
5446
|
+
"unset",
|
|
5447
|
+
],
|
|
5448
|
+
textOverflow: ["clip", "ellipsis", "initial", "inherit", "unset"],
|
|
4536
5449
|
textRendering: [
|
|
4537
5450
|
"auto",
|
|
4538
5451
|
"optimizeSpeed",
|
|
4539
5452
|
"optimizeLegibility",
|
|
4540
5453
|
"geometricPrecision",
|
|
5454
|
+
"initial",
|
|
5455
|
+
"inherit",
|
|
5456
|
+
"unset",
|
|
4541
5457
|
],
|
|
4542
5458
|
textShadow: [
|
|
4543
5459
|
"none",
|
|
@@ -4690,7 +5606,7 @@ export const keywordValues = {
|
|
|
4690
5606
|
"whitesmoke",
|
|
4691
5607
|
"yellow",
|
|
4692
5608
|
"yellowgreen",
|
|
4693
|
-
"
|
|
5609
|
+
"currentColor",
|
|
4694
5610
|
"ActiveBorder",
|
|
4695
5611
|
"ActiveCaption",
|
|
4696
5612
|
"AppWorkspace",
|
|
@@ -4719,8 +5635,11 @@ export const keywordValues = {
|
|
|
4719
5635
|
"Window",
|
|
4720
5636
|
"WindowFrame",
|
|
4721
5637
|
"WindowText",
|
|
5638
|
+
"initial",
|
|
5639
|
+
"inherit",
|
|
5640
|
+
"unset",
|
|
4722
5641
|
],
|
|
4723
|
-
textSizeAdjust: ["none", "auto"],
|
|
5642
|
+
textSizeAdjust: ["none", "auto", "initial", "inherit", "unset"],
|
|
4724
5643
|
textTransform: [
|
|
4725
5644
|
"none",
|
|
4726
5645
|
"capitalize",
|
|
@@ -4728,10 +5647,22 @@ export const keywordValues = {
|
|
|
4728
5647
|
"lowercase",
|
|
4729
5648
|
"full-width",
|
|
4730
5649
|
"full-size-kana",
|
|
5650
|
+
"initial",
|
|
5651
|
+
"inherit",
|
|
5652
|
+
"unset",
|
|
4731
5653
|
],
|
|
4732
|
-
textUnderlineOffset: ["auto"],
|
|
4733
|
-
textUnderlinePosition: [
|
|
4734
|
-
|
|
5654
|
+
textUnderlineOffset: ["auto", "initial", "inherit", "unset"],
|
|
5655
|
+
textUnderlinePosition: [
|
|
5656
|
+
"auto",
|
|
5657
|
+
"from-font",
|
|
5658
|
+
"under",
|
|
5659
|
+
"left",
|
|
5660
|
+
"right",
|
|
5661
|
+
"initial",
|
|
5662
|
+
"inherit",
|
|
5663
|
+
"unset",
|
|
5664
|
+
],
|
|
5665
|
+
top: ["auto", "initial", "inherit", "unset"],
|
|
4735
5666
|
touchAction: [
|
|
4736
5667
|
"auto",
|
|
4737
5668
|
"none",
|
|
@@ -4743,18 +5674,35 @@ export const keywordValues = {
|
|
|
4743
5674
|
"pan-down",
|
|
4744
5675
|
"pinch-zoom",
|
|
4745
5676
|
"manipulation",
|
|
5677
|
+
"initial",
|
|
5678
|
+
"inherit",
|
|
5679
|
+
"unset",
|
|
4746
5680
|
],
|
|
4747
|
-
transform: ["none"],
|
|
5681
|
+
transform: ["none", "initial", "inherit", "unset"],
|
|
4748
5682
|
transformBox: [
|
|
4749
5683
|
"content-box",
|
|
4750
5684
|
"border-box",
|
|
4751
5685
|
"fill-box",
|
|
4752
5686
|
"stroke-box",
|
|
4753
5687
|
"view-box",
|
|
5688
|
+
"initial",
|
|
5689
|
+
"inherit",
|
|
5690
|
+
"unset",
|
|
4754
5691
|
],
|
|
4755
|
-
transformOrigin: [
|
|
4756
|
-
|
|
4757
|
-
|
|
5692
|
+
transformOrigin: [
|
|
5693
|
+
"left",
|
|
5694
|
+
"center",
|
|
5695
|
+
"right",
|
|
5696
|
+
"top",
|
|
5697
|
+
"bottom",
|
|
5698
|
+
"initial",
|
|
5699
|
+
"inherit",
|
|
5700
|
+
"unset",
|
|
5701
|
+
],
|
|
5702
|
+
transformStyle: ["flat", "preserve-3d", "initial", "inherit", "unset"],
|
|
5703
|
+
transitionDelay: ["initial", "inherit", "unset"],
|
|
5704
|
+
transitionDuration: ["initial", "inherit", "unset"],
|
|
5705
|
+
transitionProperty: ["none", "all", "initial", "inherit", "unset"],
|
|
4758
5706
|
transitionTimingFunction: [
|
|
4759
5707
|
"linear",
|
|
4760
5708
|
"ease",
|
|
@@ -4763,8 +5711,11 @@ export const keywordValues = {
|
|
|
4763
5711
|
"ease-in-out",
|
|
4764
5712
|
"step-start",
|
|
4765
5713
|
"step-end",
|
|
5714
|
+
"initial",
|
|
5715
|
+
"inherit",
|
|
5716
|
+
"unset",
|
|
4766
5717
|
],
|
|
4767
|
-
translate: ["none"],
|
|
5718
|
+
translate: ["none", "initial", "inherit", "unset"],
|
|
4768
5719
|
unicodeBidi: [
|
|
4769
5720
|
"normal",
|
|
4770
5721
|
"embed",
|
|
@@ -4772,8 +5723,20 @@ export const keywordValues = {
|
|
|
4772
5723
|
"bidi-override",
|
|
4773
5724
|
"isolate-override",
|
|
4774
5725
|
"plaintext",
|
|
5726
|
+
"initial",
|
|
5727
|
+
"inherit",
|
|
5728
|
+
"unset",
|
|
5729
|
+
],
|
|
5730
|
+
userSelect: [
|
|
5731
|
+
"auto",
|
|
5732
|
+
"text",
|
|
5733
|
+
"none",
|
|
5734
|
+
"contain",
|
|
5735
|
+
"all",
|
|
5736
|
+
"initial",
|
|
5737
|
+
"inherit",
|
|
5738
|
+
"unset",
|
|
4775
5739
|
],
|
|
4776
|
-
userSelect: ["auto", "text", "none", "contain", "all"],
|
|
4777
5740
|
verticalAlign: [
|
|
4778
5741
|
"baseline",
|
|
4779
5742
|
"sub",
|
|
@@ -4783,8 +5746,11 @@ export const keywordValues = {
|
|
|
4783
5746
|
"middle",
|
|
4784
5747
|
"top",
|
|
4785
5748
|
"bottom",
|
|
5749
|
+
"initial",
|
|
5750
|
+
"inherit",
|
|
5751
|
+
"unset",
|
|
4786
5752
|
],
|
|
4787
|
-
visibility: ["visible", "hidden", "collapse"],
|
|
5753
|
+
visibility: ["visible", "hidden", "collapse", "initial", "inherit", "unset"],
|
|
4788
5754
|
whiteSpace: [
|
|
4789
5755
|
"normal",
|
|
4790
5756
|
"pre",
|
|
@@ -4792,18 +5758,48 @@ export const keywordValues = {
|
|
|
4792
5758
|
"pre-wrap",
|
|
4793
5759
|
"pre-line",
|
|
4794
5760
|
"break-spaces",
|
|
5761
|
+
"initial",
|
|
5762
|
+
"inherit",
|
|
5763
|
+
"unset",
|
|
5764
|
+
],
|
|
5765
|
+
widows: ["initial", "inherit", "unset"],
|
|
5766
|
+
width: [
|
|
5767
|
+
"auto",
|
|
5768
|
+
"min-content",
|
|
5769
|
+
"max-content",
|
|
5770
|
+
"fit-content",
|
|
5771
|
+
"initial",
|
|
5772
|
+
"inherit",
|
|
5773
|
+
"unset",
|
|
4795
5774
|
],
|
|
4796
|
-
|
|
4797
|
-
|
|
4798
|
-
|
|
4799
|
-
|
|
4800
|
-
|
|
5775
|
+
willChange: [
|
|
5776
|
+
"auto",
|
|
5777
|
+
"scroll-position",
|
|
5778
|
+
"contents",
|
|
5779
|
+
"initial",
|
|
5780
|
+
"inherit",
|
|
5781
|
+
"unset",
|
|
5782
|
+
],
|
|
5783
|
+
wordBreak: [
|
|
5784
|
+
"normal",
|
|
5785
|
+
"break-all",
|
|
5786
|
+
"keep-all",
|
|
5787
|
+
"break-word",
|
|
5788
|
+
"initial",
|
|
5789
|
+
"inherit",
|
|
5790
|
+
"unset",
|
|
5791
|
+
],
|
|
5792
|
+
wordSpacing: ["normal", "initial", "inherit", "unset"],
|
|
5793
|
+
wordWrap: ["normal", "break-word", "initial", "inherit", "unset"],
|
|
4801
5794
|
writingMode: [
|
|
4802
5795
|
"horizontal-tb",
|
|
4803
5796
|
"vertical-rl",
|
|
4804
5797
|
"vertical-lr",
|
|
4805
5798
|
"sideways-rl",
|
|
4806
5799
|
"sideways-lr",
|
|
5800
|
+
"initial",
|
|
5801
|
+
"inherit",
|
|
5802
|
+
"unset",
|
|
4807
5803
|
],
|
|
4808
|
-
zIndex: ["auto"],
|
|
5804
|
+
zIndex: ["auto", "initial", "inherit", "unset"],
|
|
4809
5805
|
} as const;
|