@webstudio-is/css-data 0.50.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
|
@@ -173,7 +173,7 @@ const keywordValues = {
|
|
|
173
173
|
"whitesmoke",
|
|
174
174
|
"yellow",
|
|
175
175
|
"yellowgreen",
|
|
176
|
-
"
|
|
176
|
+
"currentColor",
|
|
177
177
|
"ActiveBorder",
|
|
178
178
|
"ActiveCaption",
|
|
179
179
|
"AppWorkspace",
|
|
@@ -201,7 +201,10 @@ const keywordValues = {
|
|
|
201
201
|
"ThreeDShadow",
|
|
202
202
|
"Window",
|
|
203
203
|
"WindowFrame",
|
|
204
|
-
"WindowText"
|
|
204
|
+
"WindowText",
|
|
205
|
+
"initial",
|
|
206
|
+
"inherit",
|
|
207
|
+
"unset"
|
|
205
208
|
],
|
|
206
209
|
alignContent: [
|
|
207
210
|
"normal",
|
|
@@ -218,7 +221,10 @@ const keywordValues = {
|
|
|
218
221
|
"start",
|
|
219
222
|
"end",
|
|
220
223
|
"flex-start",
|
|
221
|
-
"flex-end"
|
|
224
|
+
"flex-end",
|
|
225
|
+
"initial",
|
|
226
|
+
"inherit",
|
|
227
|
+
"unset"
|
|
222
228
|
],
|
|
223
229
|
alignItems: [
|
|
224
230
|
"normal",
|
|
@@ -234,7 +240,10 @@ const keywordValues = {
|
|
|
234
240
|
"self-start",
|
|
235
241
|
"self-end",
|
|
236
242
|
"flex-start",
|
|
237
|
-
"flex-end"
|
|
243
|
+
"flex-end",
|
|
244
|
+
"initial",
|
|
245
|
+
"inherit",
|
|
246
|
+
"unset"
|
|
238
247
|
],
|
|
239
248
|
alignSelf: [
|
|
240
249
|
"auto",
|
|
@@ -251,7 +260,10 @@ const keywordValues = {
|
|
|
251
260
|
"self-start",
|
|
252
261
|
"self-end",
|
|
253
262
|
"flex-start",
|
|
254
|
-
"flex-end"
|
|
263
|
+
"flex-end",
|
|
264
|
+
"initial",
|
|
265
|
+
"inherit",
|
|
266
|
+
"unset"
|
|
255
267
|
],
|
|
256
268
|
alignTracks: [
|
|
257
269
|
"normal",
|
|
@@ -268,13 +280,35 @@ const keywordValues = {
|
|
|
268
280
|
"start",
|
|
269
281
|
"end",
|
|
270
282
|
"flex-start",
|
|
271
|
-
"flex-end"
|
|
283
|
+
"flex-end",
|
|
284
|
+
"initial",
|
|
285
|
+
"inherit",
|
|
286
|
+
"unset"
|
|
287
|
+
],
|
|
288
|
+
animationComposition: ["initial", "inherit", "unset"],
|
|
289
|
+
animationDelay: ["initial", "inherit", "unset"],
|
|
290
|
+
animationDirection: [
|
|
291
|
+
"normal",
|
|
292
|
+
"reverse",
|
|
293
|
+
"alternate",
|
|
294
|
+
"alternate-reverse",
|
|
295
|
+
"initial",
|
|
296
|
+
"inherit",
|
|
297
|
+
"unset"
|
|
298
|
+
],
|
|
299
|
+
animationDuration: ["initial", "inherit", "unset"],
|
|
300
|
+
animationFillMode: [
|
|
301
|
+
"none",
|
|
302
|
+
"forwards",
|
|
303
|
+
"backwards",
|
|
304
|
+
"both",
|
|
305
|
+
"initial",
|
|
306
|
+
"inherit",
|
|
307
|
+
"unset"
|
|
272
308
|
],
|
|
273
|
-
|
|
274
|
-
|
|
275
|
-
|
|
276
|
-
animationName: ["none"],
|
|
277
|
-
animationPlayState: ["running", "paused"],
|
|
309
|
+
animationIterationCount: ["infinite", "initial", "inherit", "unset"],
|
|
310
|
+
animationName: ["none", "initial", "inherit", "unset"],
|
|
311
|
+
animationPlayState: ["running", "paused", "initial", "inherit", "unset"],
|
|
278
312
|
animationTimingFunction: [
|
|
279
313
|
"linear",
|
|
280
314
|
"ease",
|
|
@@ -282,9 +316,12 @@ const keywordValues = {
|
|
|
282
316
|
"ease-out",
|
|
283
317
|
"ease-in-out",
|
|
284
318
|
"step-start",
|
|
285
|
-
"step-end"
|
|
319
|
+
"step-end",
|
|
320
|
+
"initial",
|
|
321
|
+
"inherit",
|
|
322
|
+
"unset"
|
|
286
323
|
],
|
|
287
|
-
animationTimeline: ["auto", "none"],
|
|
324
|
+
animationTimeline: ["auto", "none", "initial", "inherit", "unset"],
|
|
288
325
|
appearance: [
|
|
289
326
|
"none",
|
|
290
327
|
"auto",
|
|
@@ -301,12 +338,22 @@ const keywordValues = {
|
|
|
301
338
|
"listbox",
|
|
302
339
|
"meter",
|
|
303
340
|
"progress-bar",
|
|
304
|
-
"button"
|
|
341
|
+
"button",
|
|
342
|
+
"initial",
|
|
343
|
+
"inherit",
|
|
344
|
+
"unset"
|
|
345
|
+
],
|
|
346
|
+
aspectRatio: ["auto", "initial", "inherit", "unset"],
|
|
347
|
+
backdropFilter: ["none", "initial", "inherit", "unset"],
|
|
348
|
+
backfaceVisibility: ["visible", "hidden", "initial", "inherit", "unset"],
|
|
349
|
+
backgroundAttachment: [
|
|
350
|
+
"scroll",
|
|
351
|
+
"fixed",
|
|
352
|
+
"local",
|
|
353
|
+
"initial",
|
|
354
|
+
"inherit",
|
|
355
|
+
"unset"
|
|
305
356
|
],
|
|
306
|
-
aspectRatio: ["auto"],
|
|
307
|
-
backdropFilter: ["none"],
|
|
308
|
-
backfaceVisibility: ["visible", "hidden"],
|
|
309
|
-
backgroundAttachment: ["scroll", "fixed", "local"],
|
|
310
357
|
backgroundBlendMode: [
|
|
311
358
|
"normal",
|
|
312
359
|
"multiply",
|
|
@@ -323,9 +370,20 @@ const keywordValues = {
|
|
|
323
370
|
"hue",
|
|
324
371
|
"saturation",
|
|
325
372
|
"color",
|
|
326
|
-
"luminosity"
|
|
373
|
+
"luminosity",
|
|
374
|
+
"initial",
|
|
375
|
+
"inherit",
|
|
376
|
+
"unset"
|
|
377
|
+
],
|
|
378
|
+
backgroundClip: [
|
|
379
|
+
"border-box",
|
|
380
|
+
"padding-box",
|
|
381
|
+
"content-box",
|
|
382
|
+
"text",
|
|
383
|
+
"initial",
|
|
384
|
+
"inherit",
|
|
385
|
+
"unset"
|
|
327
386
|
],
|
|
328
|
-
backgroundClip: ["border-box", "padding-box", "content-box", "text"],
|
|
329
387
|
backgroundColor: [
|
|
330
388
|
"transparent",
|
|
331
389
|
"aliceblue",
|
|
@@ -476,7 +534,7 @@ const keywordValues = {
|
|
|
476
534
|
"whitesmoke",
|
|
477
535
|
"yellow",
|
|
478
536
|
"yellowgreen",
|
|
479
|
-
"
|
|
537
|
+
"currentColor",
|
|
480
538
|
"ActiveBorder",
|
|
481
539
|
"ActiveCaption",
|
|
482
540
|
"AppWorkspace",
|
|
@@ -504,24 +562,72 @@ const keywordValues = {
|
|
|
504
562
|
"ThreeDShadow",
|
|
505
563
|
"Window",
|
|
506
564
|
"WindowFrame",
|
|
507
|
-
"WindowText"
|
|
565
|
+
"WindowText",
|
|
566
|
+
"initial",
|
|
567
|
+
"inherit",
|
|
568
|
+
"unset"
|
|
569
|
+
],
|
|
570
|
+
backgroundImage: ["none", "initial", "inherit", "unset"],
|
|
571
|
+
backgroundOrigin: [
|
|
572
|
+
"border-box",
|
|
573
|
+
"padding-box",
|
|
574
|
+
"content-box",
|
|
575
|
+
"initial",
|
|
576
|
+
"inherit",
|
|
577
|
+
"unset"
|
|
578
|
+
],
|
|
579
|
+
backgroundPosition: [
|
|
580
|
+
"left",
|
|
581
|
+
"center",
|
|
582
|
+
"right",
|
|
583
|
+
"top",
|
|
584
|
+
"bottom",
|
|
585
|
+
"initial",
|
|
586
|
+
"inherit",
|
|
587
|
+
"unset"
|
|
588
|
+
],
|
|
589
|
+
backgroundPositionX: [
|
|
590
|
+
"center",
|
|
591
|
+
"left",
|
|
592
|
+
"right",
|
|
593
|
+
"x-start",
|
|
594
|
+
"x-end",
|
|
595
|
+
"initial",
|
|
596
|
+
"inherit",
|
|
597
|
+
"unset"
|
|
598
|
+
],
|
|
599
|
+
backgroundPositionY: [
|
|
600
|
+
"center",
|
|
601
|
+
"top",
|
|
602
|
+
"bottom",
|
|
603
|
+
"y-start",
|
|
604
|
+
"y-end",
|
|
605
|
+
"initial",
|
|
606
|
+
"inherit",
|
|
607
|
+
"unset"
|
|
508
608
|
],
|
|
509
|
-
backgroundImage: ["none"],
|
|
510
|
-
backgroundOrigin: ["border-box", "padding-box", "content-box"],
|
|
511
|
-
backgroundPosition: ["left", "center", "right", "top", "bottom"],
|
|
512
|
-
backgroundPositionX: ["center", "left", "right", "x-start", "x-end"],
|
|
513
|
-
backgroundPositionY: ["center", "top", "bottom", "y-start", "y-end"],
|
|
514
609
|
backgroundRepeat: [
|
|
515
610
|
"repeat-x",
|
|
516
611
|
"repeat-y",
|
|
517
612
|
"repeat",
|
|
518
613
|
"space",
|
|
519
614
|
"round",
|
|
520
|
-
"no-repeat"
|
|
615
|
+
"no-repeat",
|
|
616
|
+
"initial",
|
|
617
|
+
"inherit",
|
|
618
|
+
"unset"
|
|
619
|
+
],
|
|
620
|
+
backgroundSize: ["auto", "cover", "contain", "initial", "inherit", "unset"],
|
|
621
|
+
blockOverflow: ["clip", "ellipsis", "initial", "inherit", "unset"],
|
|
622
|
+
blockSize: [
|
|
623
|
+
"auto",
|
|
624
|
+
"min-content",
|
|
625
|
+
"max-content",
|
|
626
|
+
"fit-content",
|
|
627
|
+
"initial",
|
|
628
|
+
"inherit",
|
|
629
|
+
"unset"
|
|
521
630
|
],
|
|
522
|
-
backgroundSize: ["auto", "cover", "contain"],
|
|
523
|
-
blockOverflow: ["clip", "ellipsis"],
|
|
524
|
-
blockSize: ["auto", "min-content", "max-content", "fit-content"],
|
|
525
631
|
borderBlockColor: [
|
|
526
632
|
"transparent",
|
|
527
633
|
"aliceblue",
|
|
@@ -672,7 +778,7 @@ const keywordValues = {
|
|
|
672
778
|
"whitesmoke",
|
|
673
779
|
"yellow",
|
|
674
780
|
"yellowgreen",
|
|
675
|
-
"
|
|
781
|
+
"currentColor",
|
|
676
782
|
"ActiveBorder",
|
|
677
783
|
"ActiveCaption",
|
|
678
784
|
"AppWorkspace",
|
|
@@ -700,7 +806,10 @@ const keywordValues = {
|
|
|
700
806
|
"ThreeDShadow",
|
|
701
807
|
"Window",
|
|
702
808
|
"WindowFrame",
|
|
703
|
-
"WindowText"
|
|
809
|
+
"WindowText",
|
|
810
|
+
"initial",
|
|
811
|
+
"inherit",
|
|
812
|
+
"unset"
|
|
704
813
|
],
|
|
705
814
|
borderBlockStyle: [
|
|
706
815
|
"none",
|
|
@@ -712,9 +821,12 @@ const keywordValues = {
|
|
|
712
821
|
"groove",
|
|
713
822
|
"ridge",
|
|
714
823
|
"inset",
|
|
715
|
-
"outset"
|
|
824
|
+
"outset",
|
|
825
|
+
"initial",
|
|
826
|
+
"inherit",
|
|
827
|
+
"unset"
|
|
716
828
|
],
|
|
717
|
-
borderBlockWidth: ["thin", "medium", "thick"],
|
|
829
|
+
borderBlockWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
718
830
|
borderBlockEndColor: [
|
|
719
831
|
"transparent",
|
|
720
832
|
"aliceblue",
|
|
@@ -865,7 +977,7 @@ const keywordValues = {
|
|
|
865
977
|
"whitesmoke",
|
|
866
978
|
"yellow",
|
|
867
979
|
"yellowgreen",
|
|
868
|
-
"
|
|
980
|
+
"currentColor",
|
|
869
981
|
"ActiveBorder",
|
|
870
982
|
"ActiveCaption",
|
|
871
983
|
"AppWorkspace",
|
|
@@ -893,7 +1005,10 @@ const keywordValues = {
|
|
|
893
1005
|
"ThreeDShadow",
|
|
894
1006
|
"Window",
|
|
895
1007
|
"WindowFrame",
|
|
896
|
-
"WindowText"
|
|
1008
|
+
"WindowText",
|
|
1009
|
+
"initial",
|
|
1010
|
+
"inherit",
|
|
1011
|
+
"unset"
|
|
897
1012
|
],
|
|
898
1013
|
borderBlockEndStyle: [
|
|
899
1014
|
"none",
|
|
@@ -905,9 +1020,19 @@ const keywordValues = {
|
|
|
905
1020
|
"groove",
|
|
906
1021
|
"ridge",
|
|
907
1022
|
"inset",
|
|
908
|
-
"outset"
|
|
1023
|
+
"outset",
|
|
1024
|
+
"initial",
|
|
1025
|
+
"inherit",
|
|
1026
|
+
"unset"
|
|
1027
|
+
],
|
|
1028
|
+
borderBlockEndWidth: [
|
|
1029
|
+
"thin",
|
|
1030
|
+
"medium",
|
|
1031
|
+
"thick",
|
|
1032
|
+
"initial",
|
|
1033
|
+
"inherit",
|
|
1034
|
+
"unset"
|
|
909
1035
|
],
|
|
910
|
-
borderBlockEndWidth: ["thin", "medium", "thick"],
|
|
911
1036
|
borderBlockStartColor: [
|
|
912
1037
|
"transparent",
|
|
913
1038
|
"aliceblue",
|
|
@@ -1058,7 +1183,7 @@ const keywordValues = {
|
|
|
1058
1183
|
"whitesmoke",
|
|
1059
1184
|
"yellow",
|
|
1060
1185
|
"yellowgreen",
|
|
1061
|
-
"
|
|
1186
|
+
"currentColor",
|
|
1062
1187
|
"ActiveBorder",
|
|
1063
1188
|
"ActiveCaption",
|
|
1064
1189
|
"AppWorkspace",
|
|
@@ -1086,7 +1211,10 @@ const keywordValues = {
|
|
|
1086
1211
|
"ThreeDShadow",
|
|
1087
1212
|
"Window",
|
|
1088
1213
|
"WindowFrame",
|
|
1089
|
-
"WindowText"
|
|
1214
|
+
"WindowText",
|
|
1215
|
+
"initial",
|
|
1216
|
+
"inherit",
|
|
1217
|
+
"unset"
|
|
1090
1218
|
],
|
|
1091
1219
|
borderBlockStartStyle: [
|
|
1092
1220
|
"none",
|
|
@@ -1098,9 +1226,19 @@ const keywordValues = {
|
|
|
1098
1226
|
"groove",
|
|
1099
1227
|
"ridge",
|
|
1100
1228
|
"inset",
|
|
1101
|
-
"outset"
|
|
1229
|
+
"outset",
|
|
1230
|
+
"initial",
|
|
1231
|
+
"inherit",
|
|
1232
|
+
"unset"
|
|
1233
|
+
],
|
|
1234
|
+
borderBlockStartWidth: [
|
|
1235
|
+
"thin",
|
|
1236
|
+
"medium",
|
|
1237
|
+
"thick",
|
|
1238
|
+
"initial",
|
|
1239
|
+
"inherit",
|
|
1240
|
+
"unset"
|
|
1102
1241
|
],
|
|
1103
|
-
borderBlockStartWidth: ["thin", "medium", "thick"],
|
|
1104
1242
|
borderBottomColor: [
|
|
1105
1243
|
"transparent",
|
|
1106
1244
|
"aliceblue",
|
|
@@ -1251,7 +1389,7 @@ const keywordValues = {
|
|
|
1251
1389
|
"whitesmoke",
|
|
1252
1390
|
"yellow",
|
|
1253
1391
|
"yellowgreen",
|
|
1254
|
-
"
|
|
1392
|
+
"currentColor",
|
|
1255
1393
|
"ActiveBorder",
|
|
1256
1394
|
"ActiveCaption",
|
|
1257
1395
|
"AppWorkspace",
|
|
@@ -1279,8 +1417,13 @@ const keywordValues = {
|
|
|
1279
1417
|
"ThreeDShadow",
|
|
1280
1418
|
"Window",
|
|
1281
1419
|
"WindowFrame",
|
|
1282
|
-
"WindowText"
|
|
1420
|
+
"WindowText",
|
|
1421
|
+
"initial",
|
|
1422
|
+
"inherit",
|
|
1423
|
+
"unset"
|
|
1283
1424
|
],
|
|
1425
|
+
borderBottomLeftRadius: ["initial", "inherit", "unset"],
|
|
1426
|
+
borderBottomRightRadius: ["initial", "inherit", "unset"],
|
|
1284
1427
|
borderBottomStyle: [
|
|
1285
1428
|
"none",
|
|
1286
1429
|
"hidden",
|
|
@@ -1291,14 +1434,28 @@ const keywordValues = {
|
|
|
1291
1434
|
"groove",
|
|
1292
1435
|
"ridge",
|
|
1293
1436
|
"inset",
|
|
1294
|
-
"outset"
|
|
1295
|
-
|
|
1296
|
-
|
|
1297
|
-
|
|
1298
|
-
|
|
1299
|
-
|
|
1300
|
-
|
|
1301
|
-
|
|
1437
|
+
"outset",
|
|
1438
|
+
"initial",
|
|
1439
|
+
"inherit",
|
|
1440
|
+
"unset"
|
|
1441
|
+
],
|
|
1442
|
+
borderBottomWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
1443
|
+
borderCollapse: ["collapse", "separate", "initial", "inherit", "unset"],
|
|
1444
|
+
borderEndEndRadius: ["initial", "inherit", "unset"],
|
|
1445
|
+
borderEndStartRadius: ["initial", "inherit", "unset"],
|
|
1446
|
+
borderImageOutset: ["initial", "inherit", "unset"],
|
|
1447
|
+
borderImageRepeat: [
|
|
1448
|
+
"stretch",
|
|
1449
|
+
"repeat",
|
|
1450
|
+
"round",
|
|
1451
|
+
"space",
|
|
1452
|
+
"initial",
|
|
1453
|
+
"inherit",
|
|
1454
|
+
"unset"
|
|
1455
|
+
],
|
|
1456
|
+
borderImageSlice: ["fill", "initial", "inherit", "unset"],
|
|
1457
|
+
borderImageSource: ["none", "initial", "inherit", "unset"],
|
|
1458
|
+
borderImageWidth: ["auto", "initial", "inherit", "unset"],
|
|
1302
1459
|
borderInlineColor: [
|
|
1303
1460
|
"transparent",
|
|
1304
1461
|
"aliceblue",
|
|
@@ -1449,7 +1606,7 @@ const keywordValues = {
|
|
|
1449
1606
|
"whitesmoke",
|
|
1450
1607
|
"yellow",
|
|
1451
1608
|
"yellowgreen",
|
|
1452
|
-
"
|
|
1609
|
+
"currentColor",
|
|
1453
1610
|
"ActiveBorder",
|
|
1454
1611
|
"ActiveCaption",
|
|
1455
1612
|
"AppWorkspace",
|
|
@@ -1477,7 +1634,10 @@ const keywordValues = {
|
|
|
1477
1634
|
"ThreeDShadow",
|
|
1478
1635
|
"Window",
|
|
1479
1636
|
"WindowFrame",
|
|
1480
|
-
"WindowText"
|
|
1637
|
+
"WindowText",
|
|
1638
|
+
"initial",
|
|
1639
|
+
"inherit",
|
|
1640
|
+
"unset"
|
|
1481
1641
|
],
|
|
1482
1642
|
borderInlineStyle: [
|
|
1483
1643
|
"none",
|
|
@@ -1489,9 +1649,12 @@ const keywordValues = {
|
|
|
1489
1649
|
"groove",
|
|
1490
1650
|
"ridge",
|
|
1491
1651
|
"inset",
|
|
1492
|
-
"outset"
|
|
1652
|
+
"outset",
|
|
1653
|
+
"initial",
|
|
1654
|
+
"inherit",
|
|
1655
|
+
"unset"
|
|
1493
1656
|
],
|
|
1494
|
-
borderInlineWidth: ["thin", "medium", "thick"],
|
|
1657
|
+
borderInlineWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
1495
1658
|
borderInlineEndColor: [
|
|
1496
1659
|
"transparent",
|
|
1497
1660
|
"aliceblue",
|
|
@@ -1642,7 +1805,7 @@ const keywordValues = {
|
|
|
1642
1805
|
"whitesmoke",
|
|
1643
1806
|
"yellow",
|
|
1644
1807
|
"yellowgreen",
|
|
1645
|
-
"
|
|
1808
|
+
"currentColor",
|
|
1646
1809
|
"ActiveBorder",
|
|
1647
1810
|
"ActiveCaption",
|
|
1648
1811
|
"AppWorkspace",
|
|
@@ -1670,7 +1833,10 @@ const keywordValues = {
|
|
|
1670
1833
|
"ThreeDShadow",
|
|
1671
1834
|
"Window",
|
|
1672
1835
|
"WindowFrame",
|
|
1673
|
-
"WindowText"
|
|
1836
|
+
"WindowText",
|
|
1837
|
+
"initial",
|
|
1838
|
+
"inherit",
|
|
1839
|
+
"unset"
|
|
1674
1840
|
],
|
|
1675
1841
|
borderInlineEndStyle: [
|
|
1676
1842
|
"none",
|
|
@@ -1682,9 +1848,19 @@ const keywordValues = {
|
|
|
1682
1848
|
"groove",
|
|
1683
1849
|
"ridge",
|
|
1684
1850
|
"inset",
|
|
1685
|
-
"outset"
|
|
1851
|
+
"outset",
|
|
1852
|
+
"initial",
|
|
1853
|
+
"inherit",
|
|
1854
|
+
"unset"
|
|
1855
|
+
],
|
|
1856
|
+
borderInlineEndWidth: [
|
|
1857
|
+
"thin",
|
|
1858
|
+
"medium",
|
|
1859
|
+
"thick",
|
|
1860
|
+
"initial",
|
|
1861
|
+
"inherit",
|
|
1862
|
+
"unset"
|
|
1686
1863
|
],
|
|
1687
|
-
borderInlineEndWidth: ["thin", "medium", "thick"],
|
|
1688
1864
|
borderInlineStartColor: [
|
|
1689
1865
|
"transparent",
|
|
1690
1866
|
"aliceblue",
|
|
@@ -1835,7 +2011,7 @@ const keywordValues = {
|
|
|
1835
2011
|
"whitesmoke",
|
|
1836
2012
|
"yellow",
|
|
1837
2013
|
"yellowgreen",
|
|
1838
|
-
"
|
|
2014
|
+
"currentColor",
|
|
1839
2015
|
"ActiveBorder",
|
|
1840
2016
|
"ActiveCaption",
|
|
1841
2017
|
"AppWorkspace",
|
|
@@ -1863,7 +2039,10 @@ const keywordValues = {
|
|
|
1863
2039
|
"ThreeDShadow",
|
|
1864
2040
|
"Window",
|
|
1865
2041
|
"WindowFrame",
|
|
1866
|
-
"WindowText"
|
|
2042
|
+
"WindowText",
|
|
2043
|
+
"initial",
|
|
2044
|
+
"inherit",
|
|
2045
|
+
"unset"
|
|
1867
2046
|
],
|
|
1868
2047
|
borderInlineStartStyle: [
|
|
1869
2048
|
"none",
|
|
@@ -1875,9 +2054,19 @@ const keywordValues = {
|
|
|
1875
2054
|
"groove",
|
|
1876
2055
|
"ridge",
|
|
1877
2056
|
"inset",
|
|
1878
|
-
"outset"
|
|
2057
|
+
"outset",
|
|
2058
|
+
"initial",
|
|
2059
|
+
"inherit",
|
|
2060
|
+
"unset"
|
|
2061
|
+
],
|
|
2062
|
+
borderInlineStartWidth: [
|
|
2063
|
+
"thin",
|
|
2064
|
+
"medium",
|
|
2065
|
+
"thick",
|
|
2066
|
+
"initial",
|
|
2067
|
+
"inherit",
|
|
2068
|
+
"unset"
|
|
1879
2069
|
],
|
|
1880
|
-
borderInlineStartWidth: ["thin", "medium", "thick"],
|
|
1881
2070
|
borderLeftColor: [
|
|
1882
2071
|
"transparent",
|
|
1883
2072
|
"aliceblue",
|
|
@@ -2028,7 +2217,7 @@ const keywordValues = {
|
|
|
2028
2217
|
"whitesmoke",
|
|
2029
2218
|
"yellow",
|
|
2030
2219
|
"yellowgreen",
|
|
2031
|
-
"
|
|
2220
|
+
"currentColor",
|
|
2032
2221
|
"ActiveBorder",
|
|
2033
2222
|
"ActiveCaption",
|
|
2034
2223
|
"AppWorkspace",
|
|
@@ -2056,7 +2245,10 @@ const keywordValues = {
|
|
|
2056
2245
|
"ThreeDShadow",
|
|
2057
2246
|
"Window",
|
|
2058
2247
|
"WindowFrame",
|
|
2059
|
-
"WindowText"
|
|
2248
|
+
"WindowText",
|
|
2249
|
+
"initial",
|
|
2250
|
+
"inherit",
|
|
2251
|
+
"unset"
|
|
2060
2252
|
],
|
|
2061
2253
|
borderLeftStyle: [
|
|
2062
2254
|
"none",
|
|
@@ -2068,9 +2260,12 @@ const keywordValues = {
|
|
|
2068
2260
|
"groove",
|
|
2069
2261
|
"ridge",
|
|
2070
2262
|
"inset",
|
|
2071
|
-
"outset"
|
|
2263
|
+
"outset",
|
|
2264
|
+
"initial",
|
|
2265
|
+
"inherit",
|
|
2266
|
+
"unset"
|
|
2072
2267
|
],
|
|
2073
|
-
borderLeftWidth: ["thin", "medium", "thick"],
|
|
2268
|
+
borderLeftWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
2074
2269
|
borderRightColor: [
|
|
2075
2270
|
"transparent",
|
|
2076
2271
|
"aliceblue",
|
|
@@ -2221,7 +2416,7 @@ const keywordValues = {
|
|
|
2221
2416
|
"whitesmoke",
|
|
2222
2417
|
"yellow",
|
|
2223
2418
|
"yellowgreen",
|
|
2224
|
-
"
|
|
2419
|
+
"currentColor",
|
|
2225
2420
|
"ActiveBorder",
|
|
2226
2421
|
"ActiveCaption",
|
|
2227
2422
|
"AppWorkspace",
|
|
@@ -2249,7 +2444,10 @@ const keywordValues = {
|
|
|
2249
2444
|
"ThreeDShadow",
|
|
2250
2445
|
"Window",
|
|
2251
2446
|
"WindowFrame",
|
|
2252
|
-
"WindowText"
|
|
2447
|
+
"WindowText",
|
|
2448
|
+
"initial",
|
|
2449
|
+
"inherit",
|
|
2450
|
+
"unset"
|
|
2253
2451
|
],
|
|
2254
2452
|
borderRightStyle: [
|
|
2255
2453
|
"none",
|
|
@@ -2261,9 +2459,15 @@ const keywordValues = {
|
|
|
2261
2459
|
"groove",
|
|
2262
2460
|
"ridge",
|
|
2263
2461
|
"inset",
|
|
2264
|
-
"outset"
|
|
2462
|
+
"outset",
|
|
2463
|
+
"initial",
|
|
2464
|
+
"inherit",
|
|
2465
|
+
"unset"
|
|
2265
2466
|
],
|
|
2266
|
-
borderRightWidth: ["thin", "medium", "thick"],
|
|
2467
|
+
borderRightWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
2468
|
+
borderSpacing: ["initial", "inherit", "unset"],
|
|
2469
|
+
borderStartEndRadius: ["initial", "inherit", "unset"],
|
|
2470
|
+
borderStartStartRadius: ["initial", "inherit", "unset"],
|
|
2267
2471
|
borderTopColor: [
|
|
2268
2472
|
"transparent",
|
|
2269
2473
|
"aliceblue",
|
|
@@ -2414,7 +2618,7 @@ const keywordValues = {
|
|
|
2414
2618
|
"whitesmoke",
|
|
2415
2619
|
"yellow",
|
|
2416
2620
|
"yellowgreen",
|
|
2417
|
-
"
|
|
2621
|
+
"currentColor",
|
|
2418
2622
|
"ActiveBorder",
|
|
2419
2623
|
"ActiveCaption",
|
|
2420
2624
|
"AppWorkspace",
|
|
@@ -2442,8 +2646,13 @@ const keywordValues = {
|
|
|
2442
2646
|
"ThreeDShadow",
|
|
2443
2647
|
"Window",
|
|
2444
2648
|
"WindowFrame",
|
|
2445
|
-
"WindowText"
|
|
2649
|
+
"WindowText",
|
|
2650
|
+
"initial",
|
|
2651
|
+
"inherit",
|
|
2652
|
+
"unset"
|
|
2446
2653
|
],
|
|
2654
|
+
borderTopLeftRadius: ["initial", "inherit", "unset"],
|
|
2655
|
+
borderTopRightRadius: ["initial", "inherit", "unset"],
|
|
2447
2656
|
borderTopStyle: [
|
|
2448
2657
|
"none",
|
|
2449
2658
|
"hidden",
|
|
@@ -2454,11 +2663,14 @@ const keywordValues = {
|
|
|
2454
2663
|
"groove",
|
|
2455
2664
|
"ridge",
|
|
2456
2665
|
"inset",
|
|
2457
|
-
"outset"
|
|
2666
|
+
"outset",
|
|
2667
|
+
"initial",
|
|
2668
|
+
"inherit",
|
|
2669
|
+
"unset"
|
|
2458
2670
|
],
|
|
2459
|
-
borderTopWidth: ["thin", "medium", "thick"],
|
|
2460
|
-
bottom: ["auto"],
|
|
2461
|
-
boxDecorationBreak: ["slice", "clone"],
|
|
2671
|
+
borderTopWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
2672
|
+
bottom: ["auto", "initial", "inherit", "unset"],
|
|
2673
|
+
boxDecorationBreak: ["slice", "clone", "initial", "inherit", "unset"],
|
|
2462
2674
|
boxShadow: [
|
|
2463
2675
|
"none",
|
|
2464
2676
|
"inset",
|
|
@@ -2611,7 +2823,7 @@ const keywordValues = {
|
|
|
2611
2823
|
"whitesmoke",
|
|
2612
2824
|
"yellow",
|
|
2613
2825
|
"yellowgreen",
|
|
2614
|
-
"
|
|
2826
|
+
"currentColor",
|
|
2615
2827
|
"ActiveBorder",
|
|
2616
2828
|
"ActiveCaption",
|
|
2617
2829
|
"AppWorkspace",
|
|
@@ -2639,9 +2851,12 @@ const keywordValues = {
|
|
|
2639
2851
|
"ThreeDShadow",
|
|
2640
2852
|
"Window",
|
|
2641
2853
|
"WindowFrame",
|
|
2642
|
-
"WindowText"
|
|
2854
|
+
"WindowText",
|
|
2855
|
+
"initial",
|
|
2856
|
+
"inherit",
|
|
2857
|
+
"unset"
|
|
2643
2858
|
],
|
|
2644
|
-
boxSizing: ["content-box", "border-box"],
|
|
2859
|
+
boxSizing: ["content-box", "border-box", "initial", "inherit", "unset"],
|
|
2645
2860
|
breakAfter: [
|
|
2646
2861
|
"auto",
|
|
2647
2862
|
"avoid",
|
|
@@ -2656,7 +2871,10 @@ const keywordValues = {
|
|
|
2656
2871
|
"avoid-column",
|
|
2657
2872
|
"column",
|
|
2658
2873
|
"avoid-region",
|
|
2659
|
-
"region"
|
|
2874
|
+
"region",
|
|
2875
|
+
"initial",
|
|
2876
|
+
"inherit",
|
|
2877
|
+
"unset"
|
|
2660
2878
|
],
|
|
2661
2879
|
breakBefore: [
|
|
2662
2880
|
"auto",
|
|
@@ -2672,16 +2890,31 @@ const keywordValues = {
|
|
|
2672
2890
|
"avoid-column",
|
|
2673
2891
|
"column",
|
|
2674
2892
|
"avoid-region",
|
|
2675
|
-
"region"
|
|
2893
|
+
"region",
|
|
2894
|
+
"initial",
|
|
2895
|
+
"inherit",
|
|
2896
|
+
"unset"
|
|
2897
|
+
],
|
|
2898
|
+
breakInside: [
|
|
2899
|
+
"auto",
|
|
2900
|
+
"avoid",
|
|
2901
|
+
"avoid-page",
|
|
2902
|
+
"avoid-column",
|
|
2903
|
+
"avoid-region",
|
|
2904
|
+
"initial",
|
|
2905
|
+
"inherit",
|
|
2906
|
+
"unset"
|
|
2676
2907
|
],
|
|
2677
|
-
breakInside: ["auto", "avoid", "avoid-page", "avoid-column", "avoid-region"],
|
|
2678
2908
|
captionSide: [
|
|
2679
2909
|
"top",
|
|
2680
2910
|
"bottom",
|
|
2681
2911
|
"block-start",
|
|
2682
2912
|
"block-end",
|
|
2683
2913
|
"inline-start",
|
|
2684
|
-
"inline-end"
|
|
2914
|
+
"inline-end",
|
|
2915
|
+
"initial",
|
|
2916
|
+
"inherit",
|
|
2917
|
+
"unset"
|
|
2685
2918
|
],
|
|
2686
2919
|
caretColor: [
|
|
2687
2920
|
"auto",
|
|
@@ -2834,7 +3067,7 @@ const keywordValues = {
|
|
|
2834
3067
|
"whitesmoke",
|
|
2835
3068
|
"yellow",
|
|
2836
3069
|
"yellowgreen",
|
|
2837
|
-
"
|
|
3070
|
+
"currentColor",
|
|
2838
3071
|
"ActiveBorder",
|
|
2839
3072
|
"ActiveCaption",
|
|
2840
3073
|
"AppWorkspace",
|
|
@@ -2862,11 +3095,32 @@ const keywordValues = {
|
|
|
2862
3095
|
"ThreeDShadow",
|
|
2863
3096
|
"Window",
|
|
2864
3097
|
"WindowFrame",
|
|
2865
|
-
"WindowText"
|
|
3098
|
+
"WindowText",
|
|
3099
|
+
"initial",
|
|
3100
|
+
"inherit",
|
|
3101
|
+
"unset"
|
|
3102
|
+
],
|
|
3103
|
+
caretShape: [
|
|
3104
|
+
"auto",
|
|
3105
|
+
"bar",
|
|
3106
|
+
"block",
|
|
3107
|
+
"underscore",
|
|
3108
|
+
"initial",
|
|
3109
|
+
"inherit",
|
|
3110
|
+
"unset"
|
|
3111
|
+
],
|
|
3112
|
+
clear: [
|
|
3113
|
+
"none",
|
|
3114
|
+
"left",
|
|
3115
|
+
"right",
|
|
3116
|
+
"both",
|
|
3117
|
+
"inline-start",
|
|
3118
|
+
"inline-end",
|
|
3119
|
+
"initial",
|
|
3120
|
+
"inherit",
|
|
3121
|
+
"unset"
|
|
2866
3122
|
],
|
|
2867
|
-
|
|
2868
|
-
clear: ["none", "left", "right", "both", "inline-start", "inline-end"],
|
|
2869
|
-
clip: ["auto"],
|
|
3123
|
+
clip: ["auto", "initial", "inherit", "unset"],
|
|
2870
3124
|
clipPath: [
|
|
2871
3125
|
"border-box",
|
|
2872
3126
|
"padding-box",
|
|
@@ -2875,7 +3129,10 @@ const keywordValues = {
|
|
|
2875
3129
|
"fill-box",
|
|
2876
3130
|
"stroke-box",
|
|
2877
3131
|
"view-box",
|
|
2878
|
-
"none"
|
|
3132
|
+
"none",
|
|
3133
|
+
"initial",
|
|
3134
|
+
"inherit",
|
|
3135
|
+
"unset"
|
|
2879
3136
|
],
|
|
2880
3137
|
color: [
|
|
2881
3138
|
"transparent",
|
|
@@ -3027,7 +3284,7 @@ const keywordValues = {
|
|
|
3027
3284
|
"whitesmoke",
|
|
3028
3285
|
"yellow",
|
|
3029
3286
|
"yellowgreen",
|
|
3030
|
-
"
|
|
3287
|
+
"currentColor",
|
|
3031
3288
|
"ActiveBorder",
|
|
3032
3289
|
"ActiveCaption",
|
|
3033
3290
|
"AppWorkspace",
|
|
@@ -3055,13 +3312,24 @@ const keywordValues = {
|
|
|
3055
3312
|
"ThreeDShadow",
|
|
3056
3313
|
"Window",
|
|
3057
3314
|
"WindowFrame",
|
|
3058
|
-
"WindowText"
|
|
3315
|
+
"WindowText",
|
|
3316
|
+
"initial",
|
|
3317
|
+
"inherit",
|
|
3318
|
+
"unset"
|
|
3319
|
+
],
|
|
3320
|
+
printColorAdjust: ["economy", "exact", "initial", "inherit", "unset"],
|
|
3321
|
+
colorScheme: [
|
|
3322
|
+
"normal",
|
|
3323
|
+
"light",
|
|
3324
|
+
"dark",
|
|
3325
|
+
"only",
|
|
3326
|
+
"initial",
|
|
3327
|
+
"inherit",
|
|
3328
|
+
"unset"
|
|
3059
3329
|
],
|
|
3060
|
-
|
|
3061
|
-
|
|
3062
|
-
|
|
3063
|
-
columnFill: ["auto", "balance", "balance-all"],
|
|
3064
|
-
columnGap: ["normal"],
|
|
3330
|
+
columnCount: ["auto", "initial", "inherit", "unset"],
|
|
3331
|
+
columnFill: ["auto", "balance", "balance-all", "initial", "inherit", "unset"],
|
|
3332
|
+
columnGap: ["normal", "initial", "inherit", "unset"],
|
|
3065
3333
|
columnRuleColor: [
|
|
3066
3334
|
"transparent",
|
|
3067
3335
|
"aliceblue",
|
|
@@ -3212,7 +3480,7 @@ const keywordValues = {
|
|
|
3212
3480
|
"whitesmoke",
|
|
3213
3481
|
"yellow",
|
|
3214
3482
|
"yellowgreen",
|
|
3215
|
-
"
|
|
3483
|
+
"currentColor",
|
|
3216
3484
|
"ActiveBorder",
|
|
3217
3485
|
"ActiveCaption",
|
|
3218
3486
|
"AppWorkspace",
|
|
@@ -3240,7 +3508,10 @@ const keywordValues = {
|
|
|
3240
3508
|
"ThreeDShadow",
|
|
3241
3509
|
"Window",
|
|
3242
3510
|
"WindowFrame",
|
|
3243
|
-
"WindowText"
|
|
3511
|
+
"WindowText",
|
|
3512
|
+
"initial",
|
|
3513
|
+
"inherit",
|
|
3514
|
+
"unset"
|
|
3244
3515
|
],
|
|
3245
3516
|
columnRuleStyle: [
|
|
3246
3517
|
"none",
|
|
@@ -3252,11 +3523,14 @@ const keywordValues = {
|
|
|
3252
3523
|
"groove",
|
|
3253
3524
|
"ridge",
|
|
3254
3525
|
"inset",
|
|
3255
|
-
"outset"
|
|
3526
|
+
"outset",
|
|
3527
|
+
"initial",
|
|
3528
|
+
"inherit",
|
|
3529
|
+
"unset"
|
|
3256
3530
|
],
|
|
3257
|
-
columnRuleWidth: ["thin", "medium", "thick"],
|
|
3258
|
-
columnSpan: ["none", "all"],
|
|
3259
|
-
columnWidth: ["auto"],
|
|
3531
|
+
columnRuleWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
3532
|
+
columnSpan: ["none", "all", "initial", "inherit", "unset"],
|
|
3533
|
+
columnWidth: ["auto", "initial", "inherit", "unset"],
|
|
3260
3534
|
contain: [
|
|
3261
3535
|
"none",
|
|
3262
3536
|
"strict",
|
|
@@ -3265,12 +3539,15 @@ const keywordValues = {
|
|
|
3265
3539
|
"inline-size",
|
|
3266
3540
|
"layout",
|
|
3267
3541
|
"style",
|
|
3268
|
-
"paint"
|
|
3542
|
+
"paint",
|
|
3543
|
+
"initial",
|
|
3544
|
+
"inherit",
|
|
3545
|
+
"unset"
|
|
3269
3546
|
],
|
|
3270
|
-
containIntrinsicBlockSize: ["none", "auto"],
|
|
3271
|
-
containIntrinsicHeight: ["none", "auto"],
|
|
3272
|
-
containIntrinsicInlineSize: ["none", "auto"],
|
|
3273
|
-
containIntrinsicWidth: ["none", "auto"],
|
|
3547
|
+
containIntrinsicBlockSize: ["none", "auto", "initial", "inherit", "unset"],
|
|
3548
|
+
containIntrinsicHeight: ["none", "auto", "initial", "inherit", "unset"],
|
|
3549
|
+
containIntrinsicInlineSize: ["none", "auto", "initial", "inherit", "unset"],
|
|
3550
|
+
containIntrinsicWidth: ["none", "auto", "initial", "inherit", "unset"],
|
|
3274
3551
|
content: [
|
|
3275
3552
|
"normal",
|
|
3276
3553
|
"none",
|
|
@@ -3278,12 +3555,22 @@ const keywordValues = {
|
|
|
3278
3555
|
"open-quote",
|
|
3279
3556
|
"close-quote",
|
|
3280
3557
|
"no-open-quote",
|
|
3281
|
-
"no-close-quote"
|
|
3558
|
+
"no-close-quote",
|
|
3559
|
+
"initial",
|
|
3560
|
+
"inherit",
|
|
3561
|
+
"unset"
|
|
3282
3562
|
],
|
|
3283
|
-
contentVisibility: [
|
|
3284
|
-
|
|
3285
|
-
|
|
3286
|
-
|
|
3563
|
+
contentVisibility: [
|
|
3564
|
+
"visible",
|
|
3565
|
+
"auto",
|
|
3566
|
+
"hidden",
|
|
3567
|
+
"initial",
|
|
3568
|
+
"inherit",
|
|
3569
|
+
"unset"
|
|
3570
|
+
],
|
|
3571
|
+
counterIncrement: ["none", "initial", "inherit", "unset"],
|
|
3572
|
+
counterReset: ["none", "initial", "inherit", "unset"],
|
|
3573
|
+
counterSet: ["none", "initial", "inherit", "unset"],
|
|
3287
3574
|
cursor: [
|
|
3288
3575
|
"auto",
|
|
3289
3576
|
"default",
|
|
@@ -3320,9 +3607,12 @@ const keywordValues = {
|
|
|
3320
3607
|
"zoom-in",
|
|
3321
3608
|
"zoom-out",
|
|
3322
3609
|
"grab",
|
|
3323
|
-
"grabbing"
|
|
3610
|
+
"grabbing",
|
|
3611
|
+
"initial",
|
|
3612
|
+
"inherit",
|
|
3613
|
+
"unset"
|
|
3324
3614
|
],
|
|
3325
|
-
direction: ["ltr", "rtl"],
|
|
3615
|
+
direction: ["ltr", "rtl", "initial", "inherit", "unset"],
|
|
3326
3616
|
display: [
|
|
3327
3617
|
"block",
|
|
3328
3618
|
"inline",
|
|
@@ -3352,20 +3642,60 @@ const keywordValues = {
|
|
|
3352
3642
|
"inline-list-item",
|
|
3353
3643
|
"inline-table",
|
|
3354
3644
|
"inline-flex",
|
|
3355
|
-
"inline-grid"
|
|
3356
|
-
|
|
3357
|
-
|
|
3358
|
-
|
|
3359
|
-
|
|
3360
|
-
|
|
3361
|
-
|
|
3362
|
-
|
|
3363
|
-
|
|
3364
|
-
|
|
3365
|
-
|
|
3366
|
-
|
|
3367
|
-
|
|
3368
|
-
|
|
3645
|
+
"inline-grid",
|
|
3646
|
+
"initial",
|
|
3647
|
+
"inherit",
|
|
3648
|
+
"unset"
|
|
3649
|
+
],
|
|
3650
|
+
emptyCells: ["show", "hide", "initial", "inherit", "unset"],
|
|
3651
|
+
filter: ["none", "initial", "inherit", "unset"],
|
|
3652
|
+
flexBasis: [
|
|
3653
|
+
"content",
|
|
3654
|
+
"auto",
|
|
3655
|
+
"min-content",
|
|
3656
|
+
"max-content",
|
|
3657
|
+
"fit-content",
|
|
3658
|
+
"initial",
|
|
3659
|
+
"inherit",
|
|
3660
|
+
"unset"
|
|
3661
|
+
],
|
|
3662
|
+
flexDirection: [
|
|
3663
|
+
"row",
|
|
3664
|
+
"row-reverse",
|
|
3665
|
+
"column",
|
|
3666
|
+
"column-reverse",
|
|
3667
|
+
"initial",
|
|
3668
|
+
"inherit",
|
|
3669
|
+
"unset"
|
|
3670
|
+
],
|
|
3671
|
+
flexGrow: ["initial", "inherit", "unset"],
|
|
3672
|
+
flexShrink: ["initial", "inherit", "unset"],
|
|
3673
|
+
flexWrap: ["nowrap", "wrap", "wrap-reverse", "initial", "inherit", "unset"],
|
|
3674
|
+
float: [
|
|
3675
|
+
"left",
|
|
3676
|
+
"right",
|
|
3677
|
+
"none",
|
|
3678
|
+
"inline-start",
|
|
3679
|
+
"inline-end",
|
|
3680
|
+
"initial",
|
|
3681
|
+
"inherit",
|
|
3682
|
+
"unset"
|
|
3683
|
+
],
|
|
3684
|
+
fontFamily: [
|
|
3685
|
+
"serif",
|
|
3686
|
+
"sans-serif",
|
|
3687
|
+
"cursive",
|
|
3688
|
+
"fantasy",
|
|
3689
|
+
"monospace",
|
|
3690
|
+
"initial",
|
|
3691
|
+
"inherit",
|
|
3692
|
+
"unset"
|
|
3693
|
+
],
|
|
3694
|
+
fontFeatureSettings: ["normal", "on", "off", "initial", "inherit", "unset"],
|
|
3695
|
+
fontKerning: ["auto", "normal", "none", "initial", "inherit", "unset"],
|
|
3696
|
+
fontLanguageOverride: ["normal", "initial", "inherit", "unset"],
|
|
3697
|
+
fontOpticalSizing: ["auto", "none", "initial", "inherit", "unset"],
|
|
3698
|
+
fontVariationSettings: ["normal", "initial", "inherit", "unset"],
|
|
3369
3699
|
fontSize: [
|
|
3370
3700
|
"xx-small",
|
|
3371
3701
|
"x-small",
|
|
@@ -3376,7 +3706,10 @@ const keywordValues = {
|
|
|
3376
3706
|
"xx-large",
|
|
3377
3707
|
"xxx-large",
|
|
3378
3708
|
"larger",
|
|
3379
|
-
"smaller"
|
|
3709
|
+
"smaller",
|
|
3710
|
+
"initial",
|
|
3711
|
+
"inherit",
|
|
3712
|
+
"unset"
|
|
3380
3713
|
],
|
|
3381
3714
|
fontSizeAdjust: [
|
|
3382
3715
|
"none",
|
|
@@ -3385,7 +3718,10 @@ const keywordValues = {
|
|
|
3385
3718
|
"ch-width",
|
|
3386
3719
|
"ic-width",
|
|
3387
3720
|
"ic-height",
|
|
3388
|
-
"from-font"
|
|
3721
|
+
"from-font",
|
|
3722
|
+
"initial",
|
|
3723
|
+
"inherit",
|
|
3724
|
+
"unset"
|
|
3389
3725
|
],
|
|
3390
3726
|
fontStretch: [
|
|
3391
3727
|
"normal",
|
|
@@ -3396,10 +3732,21 @@ const keywordValues = {
|
|
|
3396
3732
|
"semi-expanded",
|
|
3397
3733
|
"expanded",
|
|
3398
3734
|
"extra-expanded",
|
|
3399
|
-
"ultra-expanded"
|
|
3735
|
+
"ultra-expanded",
|
|
3736
|
+
"initial",
|
|
3737
|
+
"inherit",
|
|
3738
|
+
"unset"
|
|
3739
|
+
],
|
|
3740
|
+
fontStyle: ["normal", "italic", "oblique", "initial", "inherit", "unset"],
|
|
3741
|
+
fontSynthesis: [
|
|
3742
|
+
"none",
|
|
3743
|
+
"weight",
|
|
3744
|
+
"style",
|
|
3745
|
+
"small-caps",
|
|
3746
|
+
"initial",
|
|
3747
|
+
"inherit",
|
|
3748
|
+
"unset"
|
|
3400
3749
|
],
|
|
3401
|
-
fontStyle: ["normal", "italic", "oblique"],
|
|
3402
|
-
fontSynthesis: ["none", "weight", "style", "small-caps"],
|
|
3403
3750
|
fontVariant: [
|
|
3404
3751
|
"normal",
|
|
3405
3752
|
"none",
|
|
@@ -3434,9 +3781,18 @@ const keywordValues = {
|
|
|
3434
3781
|
"traditional",
|
|
3435
3782
|
"full-width",
|
|
3436
3783
|
"proportional-width",
|
|
3437
|
-
"ruby"
|
|
3784
|
+
"ruby",
|
|
3785
|
+
"initial",
|
|
3786
|
+
"inherit",
|
|
3787
|
+
"unset"
|
|
3788
|
+
],
|
|
3789
|
+
fontVariantAlternates: [
|
|
3790
|
+
"normal",
|
|
3791
|
+
"historical-forms",
|
|
3792
|
+
"initial",
|
|
3793
|
+
"inherit",
|
|
3794
|
+
"unset"
|
|
3438
3795
|
],
|
|
3439
|
-
fontVariantAlternates: ["normal", "historical-forms"],
|
|
3440
3796
|
fontVariantCaps: [
|
|
3441
3797
|
"normal",
|
|
3442
3798
|
"small-caps",
|
|
@@ -3444,7 +3800,10 @@ const keywordValues = {
|
|
|
3444
3800
|
"petite-caps",
|
|
3445
3801
|
"all-petite-caps",
|
|
3446
3802
|
"unicase",
|
|
3447
|
-
"titling-caps"
|
|
3803
|
+
"titling-caps",
|
|
3804
|
+
"initial",
|
|
3805
|
+
"inherit",
|
|
3806
|
+
"unset"
|
|
3448
3807
|
],
|
|
3449
3808
|
fontVariantEastAsian: [
|
|
3450
3809
|
"normal",
|
|
@@ -3456,7 +3815,10 @@ const keywordValues = {
|
|
|
3456
3815
|
"traditional",
|
|
3457
3816
|
"full-width",
|
|
3458
3817
|
"proportional-width",
|
|
3459
|
-
"ruby"
|
|
3818
|
+
"ruby",
|
|
3819
|
+
"initial",
|
|
3820
|
+
"inherit",
|
|
3821
|
+
"unset"
|
|
3460
3822
|
],
|
|
3461
3823
|
fontVariantLigatures: [
|
|
3462
3824
|
"normal",
|
|
@@ -3468,7 +3830,10 @@ const keywordValues = {
|
|
|
3468
3830
|
"historical-ligatures",
|
|
3469
3831
|
"no-historical-ligatures",
|
|
3470
3832
|
"contextual",
|
|
3471
|
-
"no-contextual"
|
|
3833
|
+
"no-contextual",
|
|
3834
|
+
"initial",
|
|
3835
|
+
"inherit",
|
|
3836
|
+
"unset"
|
|
3472
3837
|
],
|
|
3473
3838
|
fontVariantNumeric: [
|
|
3474
3839
|
"normal",
|
|
@@ -3479,43 +3844,127 @@ const keywordValues = {
|
|
|
3479
3844
|
"diagonal-fractions",
|
|
3480
3845
|
"stacked-fractions",
|
|
3481
3846
|
"ordinal",
|
|
3482
|
-
"slashed-zero"
|
|
3483
|
-
|
|
3484
|
-
|
|
3485
|
-
|
|
3486
|
-
|
|
3487
|
-
|
|
3488
|
-
|
|
3489
|
-
|
|
3490
|
-
|
|
3491
|
-
|
|
3492
|
-
|
|
3493
|
-
|
|
3494
|
-
|
|
3847
|
+
"slashed-zero",
|
|
3848
|
+
"initial",
|
|
3849
|
+
"inherit",
|
|
3850
|
+
"unset"
|
|
3851
|
+
],
|
|
3852
|
+
fontVariantPosition: [
|
|
3853
|
+
"normal",
|
|
3854
|
+
"sub",
|
|
3855
|
+
"super",
|
|
3856
|
+
"initial",
|
|
3857
|
+
"inherit",
|
|
3858
|
+
"unset"
|
|
3859
|
+
],
|
|
3860
|
+
fontWeight: [
|
|
3861
|
+
"normal",
|
|
3862
|
+
"bold",
|
|
3863
|
+
"bolder",
|
|
3864
|
+
"lighter",
|
|
3865
|
+
"initial",
|
|
3866
|
+
"inherit",
|
|
3867
|
+
"unset"
|
|
3868
|
+
],
|
|
3869
|
+
forcedColorAdjust: ["auto", "none", "initial", "inherit", "unset"],
|
|
3870
|
+
gridAutoColumns: [
|
|
3871
|
+
"min-content",
|
|
3872
|
+
"max-content",
|
|
3873
|
+
"auto",
|
|
3874
|
+
"initial",
|
|
3875
|
+
"inherit",
|
|
3876
|
+
"unset"
|
|
3877
|
+
],
|
|
3878
|
+
gridAutoFlow: ["row", "column", "dense", "initial", "inherit", "unset"],
|
|
3879
|
+
gridAutoRows: [
|
|
3880
|
+
"min-content",
|
|
3881
|
+
"max-content",
|
|
3882
|
+
"auto",
|
|
3883
|
+
"initial",
|
|
3884
|
+
"inherit",
|
|
3885
|
+
"unset"
|
|
3886
|
+
],
|
|
3887
|
+
gridColumnEnd: ["auto", "span", "initial", "inherit", "unset"],
|
|
3888
|
+
gridColumnStart: ["auto", "span", "initial", "inherit", "unset"],
|
|
3889
|
+
gridRowEnd: ["auto", "span", "initial", "inherit", "unset"],
|
|
3890
|
+
gridRowStart: ["auto", "span", "initial", "inherit", "unset"],
|
|
3891
|
+
gridTemplateAreas: ["none", "initial", "inherit", "unset"],
|
|
3495
3892
|
gridTemplateColumns: [
|
|
3496
3893
|
"none",
|
|
3497
3894
|
"min-content",
|
|
3498
3895
|
"max-content",
|
|
3499
3896
|
"auto",
|
|
3500
|
-
"subgrid"
|
|
3501
|
-
|
|
3502
|
-
|
|
3503
|
-
|
|
3504
|
-
|
|
3505
|
-
|
|
3506
|
-
|
|
3507
|
-
|
|
3508
|
-
|
|
3509
|
-
|
|
3510
|
-
|
|
3511
|
-
|
|
3512
|
-
|
|
3513
|
-
|
|
3514
|
-
|
|
3515
|
-
|
|
3516
|
-
|
|
3517
|
-
|
|
3518
|
-
|
|
3897
|
+
"subgrid",
|
|
3898
|
+
"initial",
|
|
3899
|
+
"inherit",
|
|
3900
|
+
"unset"
|
|
3901
|
+
],
|
|
3902
|
+
gridTemplateRows: [
|
|
3903
|
+
"none",
|
|
3904
|
+
"min-content",
|
|
3905
|
+
"max-content",
|
|
3906
|
+
"auto",
|
|
3907
|
+
"subgrid",
|
|
3908
|
+
"initial",
|
|
3909
|
+
"inherit",
|
|
3910
|
+
"unset"
|
|
3911
|
+
],
|
|
3912
|
+
hangingPunctuation: [
|
|
3913
|
+
"none",
|
|
3914
|
+
"first",
|
|
3915
|
+
"force-end",
|
|
3916
|
+
"allow-end",
|
|
3917
|
+
"last",
|
|
3918
|
+
"initial",
|
|
3919
|
+
"inherit",
|
|
3920
|
+
"unset"
|
|
3921
|
+
],
|
|
3922
|
+
height: [
|
|
3923
|
+
"auto",
|
|
3924
|
+
"min-content",
|
|
3925
|
+
"max-content",
|
|
3926
|
+
"fit-content",
|
|
3927
|
+
"initial",
|
|
3928
|
+
"inherit",
|
|
3929
|
+
"unset"
|
|
3930
|
+
],
|
|
3931
|
+
hyphenateCharacter: ["auto", "initial", "inherit", "unset"],
|
|
3932
|
+
hyphens: ["none", "manual", "auto", "initial", "inherit", "unset"],
|
|
3933
|
+
imageOrientation: ["from-image", "flip", "initial", "inherit", "unset"],
|
|
3934
|
+
imageRendering: [
|
|
3935
|
+
"auto",
|
|
3936
|
+
"crisp-edges",
|
|
3937
|
+
"pixelated",
|
|
3938
|
+
"initial",
|
|
3939
|
+
"inherit",
|
|
3940
|
+
"unset"
|
|
3941
|
+
],
|
|
3942
|
+
imageResolution: ["from-image", "snap", "initial", "inherit", "unset"],
|
|
3943
|
+
initialLetter: ["normal", "initial", "inherit", "unset"],
|
|
3944
|
+
initialLetterAlign: [
|
|
3945
|
+
"auto",
|
|
3946
|
+
"alphabetic",
|
|
3947
|
+
"hanging",
|
|
3948
|
+
"ideographic",
|
|
3949
|
+
"initial",
|
|
3950
|
+
"inherit",
|
|
3951
|
+
"unset"
|
|
3952
|
+
],
|
|
3953
|
+
inlineSize: [
|
|
3954
|
+
"auto",
|
|
3955
|
+
"min-content",
|
|
3956
|
+
"max-content",
|
|
3957
|
+
"fit-content",
|
|
3958
|
+
"initial",
|
|
3959
|
+
"inherit",
|
|
3960
|
+
"unset"
|
|
3961
|
+
],
|
|
3962
|
+
inputSecurity: ["auto", "none", "initial", "inherit", "unset"],
|
|
3963
|
+
insetBlockEnd: ["auto", "initial", "inherit", "unset"],
|
|
3964
|
+
insetBlockStart: ["auto", "initial", "inherit", "unset"],
|
|
3965
|
+
insetInlineEnd: ["auto", "initial", "inherit", "unset"],
|
|
3966
|
+
insetInlineStart: ["auto", "initial", "inherit", "unset"],
|
|
3967
|
+
isolation: ["auto", "isolate", "initial", "inherit", "unset"],
|
|
3519
3968
|
justifyContent: [
|
|
3520
3969
|
"normal",
|
|
3521
3970
|
"space-between",
|
|
@@ -3530,7 +3979,10 @@ const keywordValues = {
|
|
|
3530
3979
|
"flex-start",
|
|
3531
3980
|
"flex-end",
|
|
3532
3981
|
"left",
|
|
3533
|
-
"right"
|
|
3982
|
+
"right",
|
|
3983
|
+
"initial",
|
|
3984
|
+
"inherit",
|
|
3985
|
+
"unset"
|
|
3534
3986
|
],
|
|
3535
3987
|
justifyItems: [
|
|
3536
3988
|
"normal",
|
|
@@ -3549,7 +4001,10 @@ const keywordValues = {
|
|
|
3549
4001
|
"flex-end",
|
|
3550
4002
|
"left",
|
|
3551
4003
|
"right",
|
|
3552
|
-
"legacy"
|
|
4004
|
+
"legacy",
|
|
4005
|
+
"initial",
|
|
4006
|
+
"inherit",
|
|
4007
|
+
"unset"
|
|
3553
4008
|
],
|
|
3554
4009
|
justifySelf: [
|
|
3555
4010
|
"auto",
|
|
@@ -3568,7 +4023,10 @@ const keywordValues = {
|
|
|
3568
4023
|
"flex-start",
|
|
3569
4024
|
"flex-end",
|
|
3570
4025
|
"left",
|
|
3571
|
-
"right"
|
|
4026
|
+
"right",
|
|
4027
|
+
"initial",
|
|
4028
|
+
"inherit",
|
|
4029
|
+
"unset"
|
|
3572
4030
|
],
|
|
3573
4031
|
justifyTracks: [
|
|
3574
4032
|
"normal",
|
|
@@ -3584,30 +4042,52 @@ const keywordValues = {
|
|
|
3584
4042
|
"flex-start",
|
|
3585
4043
|
"flex-end",
|
|
3586
4044
|
"left",
|
|
3587
|
-
"right"
|
|
3588
|
-
|
|
3589
|
-
|
|
3590
|
-
|
|
3591
|
-
|
|
3592
|
-
|
|
3593
|
-
|
|
3594
|
-
|
|
3595
|
-
|
|
3596
|
-
|
|
3597
|
-
|
|
3598
|
-
|
|
3599
|
-
|
|
3600
|
-
|
|
3601
|
-
|
|
3602
|
-
|
|
3603
|
-
|
|
3604
|
-
|
|
3605
|
-
|
|
3606
|
-
|
|
3607
|
-
|
|
3608
|
-
|
|
3609
|
-
|
|
3610
|
-
|
|
4045
|
+
"right",
|
|
4046
|
+
"initial",
|
|
4047
|
+
"inherit",
|
|
4048
|
+
"unset"
|
|
4049
|
+
],
|
|
4050
|
+
left: ["auto", "initial", "inherit", "unset"],
|
|
4051
|
+
letterSpacing: ["normal", "initial", "inherit", "unset"],
|
|
4052
|
+
lineBreak: [
|
|
4053
|
+
"auto",
|
|
4054
|
+
"loose",
|
|
4055
|
+
"normal",
|
|
4056
|
+
"strict",
|
|
4057
|
+
"anywhere",
|
|
4058
|
+
"initial",
|
|
4059
|
+
"inherit",
|
|
4060
|
+
"unset"
|
|
4061
|
+
],
|
|
4062
|
+
lineClamp: ["none", "initial", "inherit", "unset"],
|
|
4063
|
+
lineHeight: ["normal", "initial", "inherit", "unset"],
|
|
4064
|
+
lineHeightStep: ["initial", "inherit", "unset"],
|
|
4065
|
+
listStyleImage: ["none", "initial", "inherit", "unset"],
|
|
4066
|
+
listStylePosition: ["inside", "outside", "initial", "inherit", "unset"],
|
|
4067
|
+
listStyleType: ["none", "initial", "inherit", "unset"],
|
|
4068
|
+
marginBlockEnd: ["auto", "initial", "inherit", "unset"],
|
|
4069
|
+
marginBlockStart: ["auto", "initial", "inherit", "unset"],
|
|
4070
|
+
marginBottom: ["auto", "initial", "inherit", "unset"],
|
|
4071
|
+
marginInlineEnd: ["auto", "initial", "inherit", "unset"],
|
|
4072
|
+
marginInlineStart: ["auto", "initial", "inherit", "unset"],
|
|
4073
|
+
marginLeft: ["auto", "initial", "inherit", "unset"],
|
|
4074
|
+
marginRight: ["auto", "initial", "inherit", "unset"],
|
|
4075
|
+
marginTop: ["auto", "initial", "inherit", "unset"],
|
|
4076
|
+
marginTrim: ["none", "in-flow", "all", "initial", "inherit", "unset"],
|
|
4077
|
+
maskBorderMode: ["luminance", "alpha", "initial", "inherit", "unset"],
|
|
4078
|
+
maskBorderOutset: ["initial", "inherit", "unset"],
|
|
4079
|
+
maskBorderRepeat: [
|
|
4080
|
+
"stretch",
|
|
4081
|
+
"repeat",
|
|
4082
|
+
"round",
|
|
4083
|
+
"space",
|
|
4084
|
+
"initial",
|
|
4085
|
+
"inherit",
|
|
4086
|
+
"unset"
|
|
4087
|
+
],
|
|
4088
|
+
maskBorderSlice: ["fill", "initial", "inherit", "unset"],
|
|
4089
|
+
maskBorderSource: ["none", "initial", "inherit", "unset"],
|
|
4090
|
+
maskBorderWidth: ["auto", "initial", "inherit", "unset"],
|
|
3611
4091
|
maskClip: [
|
|
3612
4092
|
"border-box",
|
|
3613
4093
|
"padding-box",
|
|
@@ -3616,11 +4096,29 @@ const keywordValues = {
|
|
|
3616
4096
|
"fill-box",
|
|
3617
4097
|
"stroke-box",
|
|
3618
4098
|
"view-box",
|
|
3619
|
-
"no-clip"
|
|
4099
|
+
"no-clip",
|
|
4100
|
+
"initial",
|
|
4101
|
+
"inherit",
|
|
4102
|
+
"unset"
|
|
4103
|
+
],
|
|
4104
|
+
maskComposite: [
|
|
4105
|
+
"add",
|
|
4106
|
+
"subtract",
|
|
4107
|
+
"intersect",
|
|
4108
|
+
"exclude",
|
|
4109
|
+
"initial",
|
|
4110
|
+
"inherit",
|
|
4111
|
+
"unset"
|
|
4112
|
+
],
|
|
4113
|
+
maskImage: ["none", "initial", "inherit", "unset"],
|
|
4114
|
+
maskMode: [
|
|
4115
|
+
"alpha",
|
|
4116
|
+
"luminance",
|
|
4117
|
+
"match-source",
|
|
4118
|
+
"initial",
|
|
4119
|
+
"inherit",
|
|
4120
|
+
"unset"
|
|
3620
4121
|
],
|
|
3621
|
-
maskComposite: ["add", "subtract", "intersect", "exclude"],
|
|
3622
|
-
maskImage: ["none"],
|
|
3623
|
-
maskMode: ["alpha", "luminance", "match-source"],
|
|
3624
4122
|
maskOrigin: [
|
|
3625
4123
|
"border-box",
|
|
3626
4124
|
"padding-box",
|
|
@@ -3628,25 +4126,119 @@ const keywordValues = {
|
|
|
3628
4126
|
"margin-box",
|
|
3629
4127
|
"fill-box",
|
|
3630
4128
|
"stroke-box",
|
|
3631
|
-
"view-box"
|
|
3632
|
-
|
|
3633
|
-
|
|
3634
|
-
|
|
3635
|
-
|
|
3636
|
-
|
|
3637
|
-
|
|
3638
|
-
|
|
3639
|
-
|
|
3640
|
-
|
|
3641
|
-
|
|
3642
|
-
|
|
3643
|
-
|
|
3644
|
-
|
|
3645
|
-
|
|
3646
|
-
|
|
3647
|
-
|
|
3648
|
-
|
|
3649
|
-
|
|
4129
|
+
"view-box",
|
|
4130
|
+
"initial",
|
|
4131
|
+
"inherit",
|
|
4132
|
+
"unset"
|
|
4133
|
+
],
|
|
4134
|
+
maskPosition: [
|
|
4135
|
+
"left",
|
|
4136
|
+
"center",
|
|
4137
|
+
"right",
|
|
4138
|
+
"top",
|
|
4139
|
+
"bottom",
|
|
4140
|
+
"initial",
|
|
4141
|
+
"inherit",
|
|
4142
|
+
"unset"
|
|
4143
|
+
],
|
|
4144
|
+
maskRepeat: [
|
|
4145
|
+
"repeat-x",
|
|
4146
|
+
"repeat-y",
|
|
4147
|
+
"repeat",
|
|
4148
|
+
"space",
|
|
4149
|
+
"round",
|
|
4150
|
+
"no-repeat",
|
|
4151
|
+
"initial",
|
|
4152
|
+
"inherit",
|
|
4153
|
+
"unset"
|
|
4154
|
+
],
|
|
4155
|
+
maskSize: ["auto", "cover", "contain", "initial", "inherit", "unset"],
|
|
4156
|
+
maskType: ["luminance", "alpha", "initial", "inherit", "unset"],
|
|
4157
|
+
masonryAutoFlow: [
|
|
4158
|
+
"pack",
|
|
4159
|
+
"next",
|
|
4160
|
+
"definite-first",
|
|
4161
|
+
"ordered",
|
|
4162
|
+
"initial",
|
|
4163
|
+
"inherit",
|
|
4164
|
+
"unset"
|
|
4165
|
+
],
|
|
4166
|
+
mathDepth: ["auto-add", "initial", "inherit", "unset"],
|
|
4167
|
+
mathShift: ["normal", "compact", "initial", "inherit", "unset"],
|
|
4168
|
+
mathStyle: ["normal", "compact", "initial", "inherit", "unset"],
|
|
4169
|
+
maxBlockSize: [
|
|
4170
|
+
"none",
|
|
4171
|
+
"min-content",
|
|
4172
|
+
"max-content",
|
|
4173
|
+
"fit-content",
|
|
4174
|
+
"initial",
|
|
4175
|
+
"inherit",
|
|
4176
|
+
"unset"
|
|
4177
|
+
],
|
|
4178
|
+
maxHeight: [
|
|
4179
|
+
"none",
|
|
4180
|
+
"min-content",
|
|
4181
|
+
"max-content",
|
|
4182
|
+
"fit-content",
|
|
4183
|
+
"initial",
|
|
4184
|
+
"inherit",
|
|
4185
|
+
"unset"
|
|
4186
|
+
],
|
|
4187
|
+
maxInlineSize: [
|
|
4188
|
+
"none",
|
|
4189
|
+
"min-content",
|
|
4190
|
+
"max-content",
|
|
4191
|
+
"fit-content",
|
|
4192
|
+
"initial",
|
|
4193
|
+
"inherit",
|
|
4194
|
+
"unset"
|
|
4195
|
+
],
|
|
4196
|
+
maxLines: ["none", "initial", "inherit", "unset"],
|
|
4197
|
+
maxWidth: [
|
|
4198
|
+
"none",
|
|
4199
|
+
"min-content",
|
|
4200
|
+
"max-content",
|
|
4201
|
+
"fit-content",
|
|
4202
|
+
"initial",
|
|
4203
|
+
"inherit",
|
|
4204
|
+
"unset"
|
|
4205
|
+
],
|
|
4206
|
+
minBlockSize: [
|
|
4207
|
+
"auto",
|
|
4208
|
+
"min-content",
|
|
4209
|
+
"max-content",
|
|
4210
|
+
"fit-content",
|
|
4211
|
+
"initial",
|
|
4212
|
+
"inherit",
|
|
4213
|
+
"unset"
|
|
4214
|
+
],
|
|
4215
|
+
minHeight: [
|
|
4216
|
+
"auto",
|
|
4217
|
+
"min-content",
|
|
4218
|
+
"max-content",
|
|
4219
|
+
"fit-content",
|
|
4220
|
+
"initial",
|
|
4221
|
+
"inherit",
|
|
4222
|
+
"unset"
|
|
4223
|
+
],
|
|
4224
|
+
minInlineSize: [
|
|
4225
|
+
"auto",
|
|
4226
|
+
"min-content",
|
|
4227
|
+
"max-content",
|
|
4228
|
+
"fit-content",
|
|
4229
|
+
"initial",
|
|
4230
|
+
"inherit",
|
|
4231
|
+
"unset"
|
|
4232
|
+
],
|
|
4233
|
+
minWidth: [
|
|
4234
|
+
"auto",
|
|
4235
|
+
"min-content",
|
|
4236
|
+
"max-content",
|
|
4237
|
+
"fit-content",
|
|
4238
|
+
"initial",
|
|
4239
|
+
"inherit",
|
|
4240
|
+
"unset"
|
|
4241
|
+
],
|
|
3650
4242
|
mixBlendMode: [
|
|
3651
4243
|
"normal",
|
|
3652
4244
|
"multiply",
|
|
@@ -3664,11 +4256,43 @@ const keywordValues = {
|
|
|
3664
4256
|
"saturation",
|
|
3665
4257
|
"color",
|
|
3666
4258
|
"luminosity",
|
|
3667
|
-
"plus-lighter"
|
|
4259
|
+
"plus-lighter",
|
|
4260
|
+
"initial",
|
|
4261
|
+
"inherit",
|
|
4262
|
+
"unset"
|
|
4263
|
+
],
|
|
4264
|
+
objectFit: [
|
|
4265
|
+
"fill",
|
|
4266
|
+
"contain",
|
|
4267
|
+
"cover",
|
|
4268
|
+
"none",
|
|
4269
|
+
"scale-down",
|
|
4270
|
+
"initial",
|
|
4271
|
+
"inherit",
|
|
4272
|
+
"unset"
|
|
4273
|
+
],
|
|
4274
|
+
objectPosition: [
|
|
4275
|
+
"left",
|
|
4276
|
+
"center",
|
|
4277
|
+
"right",
|
|
4278
|
+
"top",
|
|
4279
|
+
"bottom",
|
|
4280
|
+
"initial",
|
|
4281
|
+
"inherit",
|
|
4282
|
+
"unset"
|
|
4283
|
+
],
|
|
4284
|
+
offsetAnchor: [
|
|
4285
|
+
"auto",
|
|
4286
|
+
"left",
|
|
4287
|
+
"center",
|
|
4288
|
+
"right",
|
|
4289
|
+
"top",
|
|
4290
|
+
"bottom",
|
|
4291
|
+
"initial",
|
|
4292
|
+
"inherit",
|
|
4293
|
+
"unset"
|
|
3668
4294
|
],
|
|
3669
|
-
|
|
3670
|
-
objectPosition: ["left", "center", "right", "top", "bottom"],
|
|
3671
|
-
offsetAnchor: ["auto", "left", "center", "right", "top", "bottom"],
|
|
4295
|
+
offsetDistance: ["initial", "inherit", "unset"],
|
|
3672
4296
|
offsetPath: [
|
|
3673
4297
|
"none",
|
|
3674
4298
|
"border-box",
|
|
@@ -3677,10 +4301,26 @@ const keywordValues = {
|
|
|
3677
4301
|
"margin-box",
|
|
3678
4302
|
"fill-box",
|
|
3679
4303
|
"stroke-box",
|
|
3680
|
-
"view-box"
|
|
4304
|
+
"view-box",
|
|
4305
|
+
"initial",
|
|
4306
|
+
"inherit",
|
|
4307
|
+
"unset"
|
|
4308
|
+
],
|
|
4309
|
+
offsetPosition: [
|
|
4310
|
+
"auto",
|
|
4311
|
+
"left",
|
|
4312
|
+
"center",
|
|
4313
|
+
"right",
|
|
4314
|
+
"top",
|
|
4315
|
+
"bottom",
|
|
4316
|
+
"initial",
|
|
4317
|
+
"inherit",
|
|
4318
|
+
"unset"
|
|
3681
4319
|
],
|
|
3682
|
-
|
|
3683
|
-
|
|
4320
|
+
offsetRotate: ["auto", "reverse", "initial", "inherit", "unset"],
|
|
4321
|
+
opacity: ["initial", "inherit", "unset"],
|
|
4322
|
+
order: ["initial", "inherit", "unset"],
|
|
4323
|
+
orphans: ["initial", "inherit", "unset"],
|
|
3684
4324
|
outlineColor: [
|
|
3685
4325
|
"transparent",
|
|
3686
4326
|
"aliceblue",
|
|
@@ -3831,7 +4471,7 @@ const keywordValues = {
|
|
|
3831
4471
|
"whitesmoke",
|
|
3832
4472
|
"yellow",
|
|
3833
4473
|
"yellowgreen",
|
|
3834
|
-
"
|
|
4474
|
+
"currentColor",
|
|
3835
4475
|
"ActiveBorder",
|
|
3836
4476
|
"ActiveCaption",
|
|
3837
4477
|
"AppWorkspace",
|
|
@@ -3860,8 +4500,12 @@ const keywordValues = {
|
|
|
3860
4500
|
"Window",
|
|
3861
4501
|
"WindowFrame",
|
|
3862
4502
|
"WindowText",
|
|
3863
|
-
"invert"
|
|
4503
|
+
"invert",
|
|
4504
|
+
"initial",
|
|
4505
|
+
"inherit",
|
|
4506
|
+
"unset"
|
|
3864
4507
|
],
|
|
4508
|
+
outlineOffset: ["initial", "inherit", "unset"],
|
|
3865
4509
|
outlineStyle: [
|
|
3866
4510
|
"auto",
|
|
3867
4511
|
"none",
|
|
@@ -3873,22 +4517,127 @@ const keywordValues = {
|
|
|
3873
4517
|
"groove",
|
|
3874
4518
|
"ridge",
|
|
3875
4519
|
"inset",
|
|
3876
|
-
"outset"
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3887
|
-
|
|
3888
|
-
|
|
3889
|
-
|
|
3890
|
-
|
|
3891
|
-
|
|
4520
|
+
"outset",
|
|
4521
|
+
"initial",
|
|
4522
|
+
"inherit",
|
|
4523
|
+
"unset"
|
|
4524
|
+
],
|
|
4525
|
+
outlineWidth: ["thin", "medium", "thick", "initial", "inherit", "unset"],
|
|
4526
|
+
overflow: [
|
|
4527
|
+
"visible",
|
|
4528
|
+
"hidden",
|
|
4529
|
+
"clip",
|
|
4530
|
+
"scroll",
|
|
4531
|
+
"auto",
|
|
4532
|
+
"initial",
|
|
4533
|
+
"inherit",
|
|
4534
|
+
"unset"
|
|
4535
|
+
],
|
|
4536
|
+
overflowAnchor: ["auto", "none", "initial", "inherit", "unset"],
|
|
4537
|
+
overflowBlock: [
|
|
4538
|
+
"visible",
|
|
4539
|
+
"hidden",
|
|
4540
|
+
"clip",
|
|
4541
|
+
"scroll",
|
|
4542
|
+
"auto",
|
|
4543
|
+
"initial",
|
|
4544
|
+
"inherit",
|
|
4545
|
+
"unset"
|
|
4546
|
+
],
|
|
4547
|
+
overflowClipMargin: [
|
|
4548
|
+
"content-box",
|
|
4549
|
+
"padding-box",
|
|
4550
|
+
"border-box",
|
|
4551
|
+
"initial",
|
|
4552
|
+
"inherit",
|
|
4553
|
+
"unset"
|
|
4554
|
+
],
|
|
4555
|
+
overflowInline: [
|
|
4556
|
+
"visible",
|
|
4557
|
+
"hidden",
|
|
4558
|
+
"clip",
|
|
4559
|
+
"scroll",
|
|
4560
|
+
"auto",
|
|
4561
|
+
"initial",
|
|
4562
|
+
"inherit",
|
|
4563
|
+
"unset"
|
|
4564
|
+
],
|
|
4565
|
+
overflowWrap: [
|
|
4566
|
+
"normal",
|
|
4567
|
+
"break-word",
|
|
4568
|
+
"anywhere",
|
|
4569
|
+
"initial",
|
|
4570
|
+
"inherit",
|
|
4571
|
+
"unset"
|
|
4572
|
+
],
|
|
4573
|
+
overflowX: [
|
|
4574
|
+
"visible",
|
|
4575
|
+
"hidden",
|
|
4576
|
+
"clip",
|
|
4577
|
+
"scroll",
|
|
4578
|
+
"auto",
|
|
4579
|
+
"initial",
|
|
4580
|
+
"inherit",
|
|
4581
|
+
"unset"
|
|
4582
|
+
],
|
|
4583
|
+
overflowY: [
|
|
4584
|
+
"visible",
|
|
4585
|
+
"hidden",
|
|
4586
|
+
"clip",
|
|
4587
|
+
"scroll",
|
|
4588
|
+
"auto",
|
|
4589
|
+
"initial",
|
|
4590
|
+
"inherit",
|
|
4591
|
+
"unset"
|
|
4592
|
+
],
|
|
4593
|
+
overscrollBehavior: [
|
|
4594
|
+
"contain",
|
|
4595
|
+
"none",
|
|
4596
|
+
"auto",
|
|
4597
|
+
"initial",
|
|
4598
|
+
"inherit",
|
|
4599
|
+
"unset"
|
|
4600
|
+
],
|
|
4601
|
+
overscrollBehaviorBlock: [
|
|
4602
|
+
"contain",
|
|
4603
|
+
"none",
|
|
4604
|
+
"auto",
|
|
4605
|
+
"initial",
|
|
4606
|
+
"inherit",
|
|
4607
|
+
"unset"
|
|
4608
|
+
],
|
|
4609
|
+
overscrollBehaviorInline: [
|
|
4610
|
+
"contain",
|
|
4611
|
+
"none",
|
|
4612
|
+
"auto",
|
|
4613
|
+
"initial",
|
|
4614
|
+
"inherit",
|
|
4615
|
+
"unset"
|
|
4616
|
+
],
|
|
4617
|
+
overscrollBehaviorX: [
|
|
4618
|
+
"contain",
|
|
4619
|
+
"none",
|
|
4620
|
+
"auto",
|
|
4621
|
+
"initial",
|
|
4622
|
+
"inherit",
|
|
4623
|
+
"unset"
|
|
4624
|
+
],
|
|
4625
|
+
overscrollBehaviorY: [
|
|
4626
|
+
"contain",
|
|
4627
|
+
"none",
|
|
4628
|
+
"auto",
|
|
4629
|
+
"initial",
|
|
4630
|
+
"inherit",
|
|
4631
|
+
"unset"
|
|
4632
|
+
],
|
|
4633
|
+
paddingBlockEnd: ["initial", "inherit", "unset"],
|
|
4634
|
+
paddingBlockStart: ["initial", "inherit", "unset"],
|
|
4635
|
+
paddingBottom: ["initial", "inherit", "unset"],
|
|
4636
|
+
paddingInlineEnd: ["initial", "inherit", "unset"],
|
|
4637
|
+
paddingInlineStart: ["initial", "inherit", "unset"],
|
|
4638
|
+
paddingLeft: ["initial", "inherit", "unset"],
|
|
4639
|
+
paddingRight: ["initial", "inherit", "unset"],
|
|
4640
|
+
paddingTop: ["initial", "inherit", "unset"],
|
|
3892
4641
|
pageBreakAfter: [
|
|
3893
4642
|
"auto",
|
|
3894
4643
|
"always",
|
|
@@ -3896,7 +4645,10 @@ const keywordValues = {
|
|
|
3896
4645
|
"left",
|
|
3897
4646
|
"right",
|
|
3898
4647
|
"recto",
|
|
3899
|
-
"verso"
|
|
4648
|
+
"verso",
|
|
4649
|
+
"initial",
|
|
4650
|
+
"inherit",
|
|
4651
|
+
"unset"
|
|
3900
4652
|
],
|
|
3901
4653
|
pageBreakBefore: [
|
|
3902
4654
|
"auto",
|
|
@@ -3905,12 +4657,32 @@ const keywordValues = {
|
|
|
3905
4657
|
"left",
|
|
3906
4658
|
"right",
|
|
3907
4659
|
"recto",
|
|
3908
|
-
"verso"
|
|
4660
|
+
"verso",
|
|
4661
|
+
"initial",
|
|
4662
|
+
"inherit",
|
|
4663
|
+
"unset"
|
|
4664
|
+
],
|
|
4665
|
+
pageBreakInside: ["auto", "avoid", "initial", "inherit", "unset"],
|
|
4666
|
+
paintOrder: [
|
|
4667
|
+
"normal",
|
|
4668
|
+
"fill",
|
|
4669
|
+
"stroke",
|
|
4670
|
+
"markers",
|
|
4671
|
+
"initial",
|
|
4672
|
+
"inherit",
|
|
4673
|
+
"unset"
|
|
4674
|
+
],
|
|
4675
|
+
perspective: ["none", "initial", "inherit", "unset"],
|
|
4676
|
+
perspectiveOrigin: [
|
|
4677
|
+
"left",
|
|
4678
|
+
"center",
|
|
4679
|
+
"right",
|
|
4680
|
+
"top",
|
|
4681
|
+
"bottom",
|
|
4682
|
+
"initial",
|
|
4683
|
+
"inherit",
|
|
4684
|
+
"unset"
|
|
3909
4685
|
],
|
|
3910
|
-
pageBreakInside: ["auto", "avoid"],
|
|
3911
|
-
paintOrder: ["normal", "fill", "stroke", "markers"],
|
|
3912
|
-
perspective: ["none"],
|
|
3913
|
-
perspectiveOrigin: ["left", "center", "right", "top", "bottom"],
|
|
3914
4686
|
pointerEvents: [
|
|
3915
4687
|
"auto",
|
|
3916
4688
|
"none",
|
|
@@ -3922,18 +4694,55 @@ const keywordValues = {
|
|
|
3922
4694
|
"fill",
|
|
3923
4695
|
"stroke",
|
|
3924
4696
|
"all",
|
|
3925
|
-
"
|
|
3926
|
-
|
|
3927
|
-
|
|
3928
|
-
|
|
3929
|
-
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3934
|
-
|
|
3935
|
-
|
|
3936
|
-
|
|
4697
|
+
"initial",
|
|
4698
|
+
"inherit",
|
|
4699
|
+
"unset"
|
|
4700
|
+
],
|
|
4701
|
+
position: [
|
|
4702
|
+
"static",
|
|
4703
|
+
"relative",
|
|
4704
|
+
"absolute",
|
|
4705
|
+
"sticky",
|
|
4706
|
+
"fixed",
|
|
4707
|
+
"initial",
|
|
4708
|
+
"inherit",
|
|
4709
|
+
"unset"
|
|
4710
|
+
],
|
|
4711
|
+
quotes: ["none", "auto", "initial", "inherit", "unset"],
|
|
4712
|
+
resize: [
|
|
4713
|
+
"none",
|
|
4714
|
+
"both",
|
|
4715
|
+
"horizontal",
|
|
4716
|
+
"vertical",
|
|
4717
|
+
"block",
|
|
4718
|
+
"inline",
|
|
4719
|
+
"initial",
|
|
4720
|
+
"inherit",
|
|
4721
|
+
"unset"
|
|
4722
|
+
],
|
|
4723
|
+
right: ["auto", "initial", "inherit", "unset"],
|
|
4724
|
+
rotate: ["none", "x", "y", "z", "initial", "inherit", "unset"],
|
|
4725
|
+
rowGap: ["normal", "initial", "inherit", "unset"],
|
|
4726
|
+
rubyAlign: [
|
|
4727
|
+
"start",
|
|
4728
|
+
"center",
|
|
4729
|
+
"space-between",
|
|
4730
|
+
"space-around",
|
|
4731
|
+
"initial",
|
|
4732
|
+
"inherit",
|
|
4733
|
+
"unset"
|
|
4734
|
+
],
|
|
4735
|
+
rubyMerge: ["separate", "collapse", "auto", "initial", "inherit", "unset"],
|
|
4736
|
+
rubyPosition: [
|
|
4737
|
+
"alternate",
|
|
4738
|
+
"over",
|
|
4739
|
+
"under",
|
|
4740
|
+
"inter-character",
|
|
4741
|
+
"initial",
|
|
4742
|
+
"inherit",
|
|
4743
|
+
"unset"
|
|
4744
|
+
],
|
|
4745
|
+
scale: ["none", "initial", "inherit", "unset"],
|
|
3937
4746
|
scrollbarColor: [
|
|
3938
4747
|
"auto",
|
|
3939
4748
|
"transparent",
|
|
@@ -4085,7 +4894,7 @@ const keywordValues = {
|
|
|
4085
4894
|
"whitesmoke",
|
|
4086
4895
|
"yellow",
|
|
4087
4896
|
"yellowgreen",
|
|
4088
|
-
"
|
|
4897
|
+
"currentColor",
|
|
4089
4898
|
"ActiveBorder",
|
|
4090
4899
|
"ActiveCaption",
|
|
4091
4900
|
"AppWorkspace",
|
|
@@ -4113,21 +4922,47 @@ const keywordValues = {
|
|
|
4113
4922
|
"ThreeDShadow",
|
|
4114
4923
|
"Window",
|
|
4115
4924
|
"WindowFrame",
|
|
4116
|
-
"WindowText"
|
|
4117
|
-
|
|
4118
|
-
|
|
4119
|
-
|
|
4120
|
-
|
|
4121
|
-
|
|
4122
|
-
|
|
4123
|
-
|
|
4124
|
-
|
|
4125
|
-
|
|
4126
|
-
|
|
4127
|
-
|
|
4128
|
-
|
|
4129
|
-
|
|
4130
|
-
|
|
4925
|
+
"WindowText",
|
|
4926
|
+
"initial",
|
|
4927
|
+
"inherit",
|
|
4928
|
+
"unset"
|
|
4929
|
+
],
|
|
4930
|
+
scrollbarGutter: [
|
|
4931
|
+
"auto",
|
|
4932
|
+
"stable",
|
|
4933
|
+
"both-edges",
|
|
4934
|
+
"initial",
|
|
4935
|
+
"inherit",
|
|
4936
|
+
"unset"
|
|
4937
|
+
],
|
|
4938
|
+
scrollbarWidth: ["auto", "thin", "none", "initial", "inherit", "unset"],
|
|
4939
|
+
scrollBehavior: ["auto", "smooth", "initial", "inherit", "unset"],
|
|
4940
|
+
scrollMarginBlockStart: ["initial", "inherit", "unset"],
|
|
4941
|
+
scrollMarginBlockEnd: ["initial", "inherit", "unset"],
|
|
4942
|
+
scrollMarginBottom: ["initial", "inherit", "unset"],
|
|
4943
|
+
scrollMarginInlineStart: ["initial", "inherit", "unset"],
|
|
4944
|
+
scrollMarginInlineEnd: ["initial", "inherit", "unset"],
|
|
4945
|
+
scrollMarginLeft: ["initial", "inherit", "unset"],
|
|
4946
|
+
scrollMarginRight: ["initial", "inherit", "unset"],
|
|
4947
|
+
scrollMarginTop: ["initial", "inherit", "unset"],
|
|
4948
|
+
scrollPaddingBlockStart: ["auto", "initial", "inherit", "unset"],
|
|
4949
|
+
scrollPaddingBlockEnd: ["auto", "initial", "inherit", "unset"],
|
|
4950
|
+
scrollPaddingBottom: ["auto", "initial", "inherit", "unset"],
|
|
4951
|
+
scrollPaddingInlineStart: ["auto", "initial", "inherit", "unset"],
|
|
4952
|
+
scrollPaddingInlineEnd: ["auto", "initial", "inherit", "unset"],
|
|
4953
|
+
scrollPaddingLeft: ["auto", "initial", "inherit", "unset"],
|
|
4954
|
+
scrollPaddingRight: ["auto", "initial", "inherit", "unset"],
|
|
4955
|
+
scrollPaddingTop: ["auto", "initial", "inherit", "unset"],
|
|
4956
|
+
scrollSnapAlign: [
|
|
4957
|
+
"none",
|
|
4958
|
+
"start",
|
|
4959
|
+
"end",
|
|
4960
|
+
"center",
|
|
4961
|
+
"initial",
|
|
4962
|
+
"inherit",
|
|
4963
|
+
"unset"
|
|
4964
|
+
],
|
|
4965
|
+
scrollSnapStop: ["normal", "always", "initial", "inherit", "unset"],
|
|
4131
4966
|
scrollSnapType: [
|
|
4132
4967
|
"none",
|
|
4133
4968
|
"x",
|
|
@@ -4136,18 +4971,35 @@ const keywordValues = {
|
|
|
4136
4971
|
"inline",
|
|
4137
4972
|
"both",
|
|
4138
4973
|
"mandatory",
|
|
4139
|
-
"proximity"
|
|
4974
|
+
"proximity",
|
|
4975
|
+
"initial",
|
|
4976
|
+
"inherit",
|
|
4977
|
+
"unset"
|
|
4140
4978
|
],
|
|
4141
|
-
scrollTimelineAxis: [
|
|
4142
|
-
|
|
4979
|
+
scrollTimelineAxis: [
|
|
4980
|
+
"block",
|
|
4981
|
+
"inline",
|
|
4982
|
+
"vertical",
|
|
4983
|
+
"horizontal",
|
|
4984
|
+
"initial",
|
|
4985
|
+
"inherit",
|
|
4986
|
+
"unset"
|
|
4987
|
+
],
|
|
4988
|
+
scrollTimelineName: ["none", "initial", "inherit", "unset"],
|
|
4989
|
+
shapeImageThreshold: ["initial", "inherit", "unset"],
|
|
4990
|
+
shapeMargin: ["initial", "inherit", "unset"],
|
|
4143
4991
|
shapeOutside: [
|
|
4144
4992
|
"none",
|
|
4145
4993
|
"border-box",
|
|
4146
4994
|
"padding-box",
|
|
4147
4995
|
"content-box",
|
|
4148
|
-
"margin-box"
|
|
4996
|
+
"margin-box",
|
|
4997
|
+
"initial",
|
|
4998
|
+
"inherit",
|
|
4999
|
+
"unset"
|
|
4149
5000
|
],
|
|
4150
|
-
|
|
5001
|
+
tabSize: ["initial", "inherit", "unset"],
|
|
5002
|
+
tableLayout: ["auto", "fixed", "initial", "inherit", "unset"],
|
|
4151
5003
|
textAlign: [
|
|
4152
5004
|
"start",
|
|
4153
5005
|
"end",
|
|
@@ -4155,10 +5007,24 @@ const keywordValues = {
|
|
|
4155
5007
|
"right",
|
|
4156
5008
|
"center",
|
|
4157
5009
|
"justify",
|
|
4158
|
-
"match-parent"
|
|
5010
|
+
"match-parent",
|
|
5011
|
+
"initial",
|
|
5012
|
+
"inherit",
|
|
5013
|
+
"unset"
|
|
5014
|
+
],
|
|
5015
|
+
textAlignLast: [
|
|
5016
|
+
"auto",
|
|
5017
|
+
"start",
|
|
5018
|
+
"end",
|
|
5019
|
+
"left",
|
|
5020
|
+
"right",
|
|
5021
|
+
"center",
|
|
5022
|
+
"justify",
|
|
5023
|
+
"initial",
|
|
5024
|
+
"inherit",
|
|
5025
|
+
"unset"
|
|
4159
5026
|
],
|
|
4160
|
-
|
|
4161
|
-
textCombineUpright: ["none", "all", "digits"],
|
|
5027
|
+
textCombineUpright: ["none", "all", "digits", "initial", "inherit", "unset"],
|
|
4162
5028
|
textDecorationColor: [
|
|
4163
5029
|
"transparent",
|
|
4164
5030
|
"aliceblue",
|
|
@@ -4309,7 +5175,7 @@ const keywordValues = {
|
|
|
4309
5175
|
"whitesmoke",
|
|
4310
5176
|
"yellow",
|
|
4311
5177
|
"yellowgreen",
|
|
4312
|
-
"
|
|
5178
|
+
"currentColor",
|
|
4313
5179
|
"ActiveBorder",
|
|
4314
5180
|
"ActiveCaption",
|
|
4315
5181
|
"AppWorkspace",
|
|
@@ -4337,7 +5203,10 @@ const keywordValues = {
|
|
|
4337
5203
|
"ThreeDShadow",
|
|
4338
5204
|
"Window",
|
|
4339
5205
|
"WindowFrame",
|
|
4340
|
-
"WindowText"
|
|
5206
|
+
"WindowText",
|
|
5207
|
+
"initial",
|
|
5208
|
+
"inherit",
|
|
5209
|
+
"unset"
|
|
4341
5210
|
],
|
|
4342
5211
|
textDecorationLine: [
|
|
4343
5212
|
"none",
|
|
@@ -4346,7 +5215,10 @@ const keywordValues = {
|
|
|
4346
5215
|
"line-through",
|
|
4347
5216
|
"blink",
|
|
4348
5217
|
"spelling-error",
|
|
4349
|
-
"grammar-error"
|
|
5218
|
+
"grammar-error",
|
|
5219
|
+
"initial",
|
|
5220
|
+
"inherit",
|
|
5221
|
+
"unset"
|
|
4350
5222
|
],
|
|
4351
5223
|
textDecorationSkip: [
|
|
4352
5224
|
"none",
|
|
@@ -4355,11 +5227,23 @@ const keywordValues = {
|
|
|
4355
5227
|
"leading-spaces",
|
|
4356
5228
|
"trailing-spaces",
|
|
4357
5229
|
"edges",
|
|
4358
|
-
"box-decoration"
|
|
5230
|
+
"box-decoration",
|
|
5231
|
+
"initial",
|
|
5232
|
+
"inherit",
|
|
5233
|
+
"unset"
|
|
4359
5234
|
],
|
|
4360
|
-
textDecorationSkipInk: ["auto", "all", "none"],
|
|
4361
|
-
textDecorationStyle: [
|
|
4362
|
-
|
|
5235
|
+
textDecorationSkipInk: ["auto", "all", "none", "initial", "inherit", "unset"],
|
|
5236
|
+
textDecorationStyle: [
|
|
5237
|
+
"solid",
|
|
5238
|
+
"double",
|
|
5239
|
+
"dotted",
|
|
5240
|
+
"dashed",
|
|
5241
|
+
"wavy",
|
|
5242
|
+
"initial",
|
|
5243
|
+
"inherit",
|
|
5244
|
+
"unset"
|
|
5245
|
+
],
|
|
5246
|
+
textDecorationThickness: ["auto", "from-font", "initial", "inherit", "unset"],
|
|
4363
5247
|
textEmphasisColor: [
|
|
4364
5248
|
"transparent",
|
|
4365
5249
|
"aliceblue",
|
|
@@ -4510,7 +5394,7 @@ const keywordValues = {
|
|
|
4510
5394
|
"whitesmoke",
|
|
4511
5395
|
"yellow",
|
|
4512
5396
|
"yellowgreen",
|
|
4513
|
-
"
|
|
5397
|
+
"currentColor",
|
|
4514
5398
|
"ActiveBorder",
|
|
4515
5399
|
"ActiveCaption",
|
|
4516
5400
|
"AppWorkspace",
|
|
@@ -4538,9 +5422,20 @@ const keywordValues = {
|
|
|
4538
5422
|
"ThreeDShadow",
|
|
4539
5423
|
"Window",
|
|
4540
5424
|
"WindowFrame",
|
|
4541
|
-
"WindowText"
|
|
5425
|
+
"WindowText",
|
|
5426
|
+
"initial",
|
|
5427
|
+
"inherit",
|
|
5428
|
+
"unset"
|
|
5429
|
+
],
|
|
5430
|
+
textEmphasisPosition: [
|
|
5431
|
+
"over",
|
|
5432
|
+
"under",
|
|
5433
|
+
"right",
|
|
5434
|
+
"left",
|
|
5435
|
+
"initial",
|
|
5436
|
+
"inherit",
|
|
5437
|
+
"unset"
|
|
4542
5438
|
],
|
|
4543
|
-
textEmphasisPosition: ["over", "under", "right", "left"],
|
|
4544
5439
|
textEmphasisStyle: [
|
|
4545
5440
|
"none",
|
|
4546
5441
|
"filled",
|
|
@@ -4549,17 +5444,38 @@ const keywordValues = {
|
|
|
4549
5444
|
"circle",
|
|
4550
5445
|
"double-circle",
|
|
4551
5446
|
"triangle",
|
|
4552
|
-
"sesame"
|
|
5447
|
+
"sesame",
|
|
5448
|
+
"initial",
|
|
5449
|
+
"inherit",
|
|
5450
|
+
"unset"
|
|
5451
|
+
],
|
|
5452
|
+
textIndent: ["hanging", "each-line", "initial", "inherit", "unset"],
|
|
5453
|
+
textJustify: [
|
|
5454
|
+
"auto",
|
|
5455
|
+
"inter-character",
|
|
5456
|
+
"inter-word",
|
|
5457
|
+
"none",
|
|
5458
|
+
"initial",
|
|
5459
|
+
"inherit",
|
|
5460
|
+
"unset"
|
|
4553
5461
|
],
|
|
4554
|
-
|
|
4555
|
-
|
|
4556
|
-
|
|
4557
|
-
|
|
5462
|
+
textOrientation: [
|
|
5463
|
+
"mixed",
|
|
5464
|
+
"upright",
|
|
5465
|
+
"sideways",
|
|
5466
|
+
"initial",
|
|
5467
|
+
"inherit",
|
|
5468
|
+
"unset"
|
|
5469
|
+
],
|
|
5470
|
+
textOverflow: ["clip", "ellipsis", "initial", "inherit", "unset"],
|
|
4558
5471
|
textRendering: [
|
|
4559
5472
|
"auto",
|
|
4560
5473
|
"optimizeSpeed",
|
|
4561
5474
|
"optimizeLegibility",
|
|
4562
|
-
"geometricPrecision"
|
|
5475
|
+
"geometricPrecision",
|
|
5476
|
+
"initial",
|
|
5477
|
+
"inherit",
|
|
5478
|
+
"unset"
|
|
4563
5479
|
],
|
|
4564
5480
|
textShadow: [
|
|
4565
5481
|
"none",
|
|
@@ -4712,7 +5628,7 @@ const keywordValues = {
|
|
|
4712
5628
|
"whitesmoke",
|
|
4713
5629
|
"yellow",
|
|
4714
5630
|
"yellowgreen",
|
|
4715
|
-
"
|
|
5631
|
+
"currentColor",
|
|
4716
5632
|
"ActiveBorder",
|
|
4717
5633
|
"ActiveCaption",
|
|
4718
5634
|
"AppWorkspace",
|
|
@@ -4740,20 +5656,35 @@ const keywordValues = {
|
|
|
4740
5656
|
"ThreeDShadow",
|
|
4741
5657
|
"Window",
|
|
4742
5658
|
"WindowFrame",
|
|
4743
|
-
"WindowText"
|
|
5659
|
+
"WindowText",
|
|
5660
|
+
"initial",
|
|
5661
|
+
"inherit",
|
|
5662
|
+
"unset"
|
|
4744
5663
|
],
|
|
4745
|
-
textSizeAdjust: ["none", "auto"],
|
|
5664
|
+
textSizeAdjust: ["none", "auto", "initial", "inherit", "unset"],
|
|
4746
5665
|
textTransform: [
|
|
4747
5666
|
"none",
|
|
4748
5667
|
"capitalize",
|
|
4749
5668
|
"uppercase",
|
|
4750
5669
|
"lowercase",
|
|
4751
5670
|
"full-width",
|
|
4752
|
-
"full-size-kana"
|
|
5671
|
+
"full-size-kana",
|
|
5672
|
+
"initial",
|
|
5673
|
+
"inherit",
|
|
5674
|
+
"unset"
|
|
5675
|
+
],
|
|
5676
|
+
textUnderlineOffset: ["auto", "initial", "inherit", "unset"],
|
|
5677
|
+
textUnderlinePosition: [
|
|
5678
|
+
"auto",
|
|
5679
|
+
"from-font",
|
|
5680
|
+
"under",
|
|
5681
|
+
"left",
|
|
5682
|
+
"right",
|
|
5683
|
+
"initial",
|
|
5684
|
+
"inherit",
|
|
5685
|
+
"unset"
|
|
4753
5686
|
],
|
|
4754
|
-
|
|
4755
|
-
textUnderlinePosition: ["auto", "from-font", "under", "left", "right"],
|
|
4756
|
-
top: ["auto"],
|
|
5687
|
+
top: ["auto", "initial", "inherit", "unset"],
|
|
4757
5688
|
touchAction: [
|
|
4758
5689
|
"auto",
|
|
4759
5690
|
"none",
|
|
@@ -4764,19 +5695,36 @@ const keywordValues = {
|
|
|
4764
5695
|
"pan-up",
|
|
4765
5696
|
"pan-down",
|
|
4766
5697
|
"pinch-zoom",
|
|
4767
|
-
"manipulation"
|
|
5698
|
+
"manipulation",
|
|
5699
|
+
"initial",
|
|
5700
|
+
"inherit",
|
|
5701
|
+
"unset"
|
|
4768
5702
|
],
|
|
4769
|
-
transform: ["none"],
|
|
5703
|
+
transform: ["none", "initial", "inherit", "unset"],
|
|
4770
5704
|
transformBox: [
|
|
4771
5705
|
"content-box",
|
|
4772
5706
|
"border-box",
|
|
4773
5707
|
"fill-box",
|
|
4774
5708
|
"stroke-box",
|
|
4775
|
-
"view-box"
|
|
5709
|
+
"view-box",
|
|
5710
|
+
"initial",
|
|
5711
|
+
"inherit",
|
|
5712
|
+
"unset"
|
|
5713
|
+
],
|
|
5714
|
+
transformOrigin: [
|
|
5715
|
+
"left",
|
|
5716
|
+
"center",
|
|
5717
|
+
"right",
|
|
5718
|
+
"top",
|
|
5719
|
+
"bottom",
|
|
5720
|
+
"initial",
|
|
5721
|
+
"inherit",
|
|
5722
|
+
"unset"
|
|
4776
5723
|
],
|
|
4777
|
-
|
|
4778
|
-
|
|
4779
|
-
|
|
5724
|
+
transformStyle: ["flat", "preserve-3d", "initial", "inherit", "unset"],
|
|
5725
|
+
transitionDelay: ["initial", "inherit", "unset"],
|
|
5726
|
+
transitionDuration: ["initial", "inherit", "unset"],
|
|
5727
|
+
transitionProperty: ["none", "all", "initial", "inherit", "unset"],
|
|
4780
5728
|
transitionTimingFunction: [
|
|
4781
5729
|
"linear",
|
|
4782
5730
|
"ease",
|
|
@@ -4784,18 +5732,33 @@ const keywordValues = {
|
|
|
4784
5732
|
"ease-out",
|
|
4785
5733
|
"ease-in-out",
|
|
4786
5734
|
"step-start",
|
|
4787
|
-
"step-end"
|
|
5735
|
+
"step-end",
|
|
5736
|
+
"initial",
|
|
5737
|
+
"inherit",
|
|
5738
|
+
"unset"
|
|
4788
5739
|
],
|
|
4789
|
-
translate: ["none"],
|
|
5740
|
+
translate: ["none", "initial", "inherit", "unset"],
|
|
4790
5741
|
unicodeBidi: [
|
|
4791
5742
|
"normal",
|
|
4792
5743
|
"embed",
|
|
4793
5744
|
"isolate",
|
|
4794
5745
|
"bidi-override",
|
|
4795
5746
|
"isolate-override",
|
|
4796
|
-
"plaintext"
|
|
5747
|
+
"plaintext",
|
|
5748
|
+
"initial",
|
|
5749
|
+
"inherit",
|
|
5750
|
+
"unset"
|
|
5751
|
+
],
|
|
5752
|
+
userSelect: [
|
|
5753
|
+
"auto",
|
|
5754
|
+
"text",
|
|
5755
|
+
"none",
|
|
5756
|
+
"contain",
|
|
5757
|
+
"all",
|
|
5758
|
+
"initial",
|
|
5759
|
+
"inherit",
|
|
5760
|
+
"unset"
|
|
4797
5761
|
],
|
|
4798
|
-
userSelect: ["auto", "text", "none", "contain", "all"],
|
|
4799
5762
|
verticalAlign: [
|
|
4800
5763
|
"baseline",
|
|
4801
5764
|
"sub",
|
|
@@ -4804,28 +5767,61 @@ const keywordValues = {
|
|
|
4804
5767
|
"text-bottom",
|
|
4805
5768
|
"middle",
|
|
4806
5769
|
"top",
|
|
4807
|
-
"bottom"
|
|
5770
|
+
"bottom",
|
|
5771
|
+
"initial",
|
|
5772
|
+
"inherit",
|
|
5773
|
+
"unset"
|
|
4808
5774
|
],
|
|
4809
|
-
visibility: ["visible", "hidden", "collapse"],
|
|
5775
|
+
visibility: ["visible", "hidden", "collapse", "initial", "inherit", "unset"],
|
|
4810
5776
|
whiteSpace: [
|
|
4811
5777
|
"normal",
|
|
4812
5778
|
"pre",
|
|
4813
5779
|
"nowrap",
|
|
4814
5780
|
"pre-wrap",
|
|
4815
5781
|
"pre-line",
|
|
4816
|
-
"break-spaces"
|
|
5782
|
+
"break-spaces",
|
|
5783
|
+
"initial",
|
|
5784
|
+
"inherit",
|
|
5785
|
+
"unset"
|
|
5786
|
+
],
|
|
5787
|
+
widows: ["initial", "inherit", "unset"],
|
|
5788
|
+
width: [
|
|
5789
|
+
"auto",
|
|
5790
|
+
"min-content",
|
|
5791
|
+
"max-content",
|
|
5792
|
+
"fit-content",
|
|
5793
|
+
"initial",
|
|
5794
|
+
"inherit",
|
|
5795
|
+
"unset"
|
|
5796
|
+
],
|
|
5797
|
+
willChange: [
|
|
5798
|
+
"auto",
|
|
5799
|
+
"scroll-position",
|
|
5800
|
+
"contents",
|
|
5801
|
+
"initial",
|
|
5802
|
+
"inherit",
|
|
5803
|
+
"unset"
|
|
5804
|
+
],
|
|
5805
|
+
wordBreak: [
|
|
5806
|
+
"normal",
|
|
5807
|
+
"break-all",
|
|
5808
|
+
"keep-all",
|
|
5809
|
+
"break-word",
|
|
5810
|
+
"initial",
|
|
5811
|
+
"inherit",
|
|
5812
|
+
"unset"
|
|
4817
5813
|
],
|
|
4818
|
-
|
|
4819
|
-
|
|
4820
|
-
wordBreak: ["normal", "break-all", "keep-all", "break-word"],
|
|
4821
|
-
wordSpacing: ["normal"],
|
|
4822
|
-
wordWrap: ["normal", "break-word"],
|
|
5814
|
+
wordSpacing: ["normal", "initial", "inherit", "unset"],
|
|
5815
|
+
wordWrap: ["normal", "break-word", "initial", "inherit", "unset"],
|
|
4823
5816
|
writingMode: [
|
|
4824
5817
|
"horizontal-tb",
|
|
4825
5818
|
"vertical-rl",
|
|
4826
5819
|
"vertical-lr",
|
|
4827
5820
|
"sideways-rl",
|
|
4828
|
-
"sideways-lr"
|
|
5821
|
+
"sideways-lr",
|
|
5822
|
+
"initial",
|
|
5823
|
+
"inherit",
|
|
5824
|
+
"unset"
|
|
4829
5825
|
],
|
|
4830
|
-
zIndex: ["auto"]
|
|
5826
|
+
zIndex: ["auto", "initial", "inherit", "unset"]
|
|
4831
5827
|
};
|