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