@markuplint/types 3.0.0-alpha.6 → 3.0.0-dev.176

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.
Files changed (107) hide show
  1. package/README.md +12 -8
  2. package/lib/check-multi-types.d.ts +1 -1
  3. package/lib/check-multi-types.js +5 -4
  4. package/lib/check.d.ts +6 -5
  5. package/lib/check.spec.js +64 -58
  6. package/lib/css-syntax.js +49 -47
  7. package/lib/css-syntax.spec.js +152 -149
  8. package/lib/defs.js +2 -2
  9. package/lib/enum.d.ts +2 -1
  10. package/lib/enum.js +1 -1
  11. package/lib/get-candidate.d.ts +1 -1
  12. package/lib/keyword-type.js +3 -2
  13. package/lib/list.d.ts +2 -1
  14. package/lib/list.js +2 -1
  15. package/lib/list.spec.js +118 -117
  16. package/lib/match-result.d.ts +3 -3
  17. package/lib/match-result.js +2 -1
  18. package/lib/number.d.ts +1 -1
  19. package/lib/primitive/index.spec.js +53 -52
  20. package/lib/primitive/is-quantity.d.ts +5 -1
  21. package/lib/primitive/is-uint.d.ts +1 -1
  22. package/lib/primitive/split-unit.js +2 -2
  23. package/lib/rfc/is-bcp-47.spec.js +9 -8
  24. package/lib/token/token-collection.d.ts +20 -14
  25. package/lib/token/token-collection.js +30 -23
  26. package/lib/token/token-collection.spec.js +156 -134
  27. package/lib/token/token.d.ts +10 -9
  28. package/lib/token/token.js +19 -20
  29. package/lib/token/types.d.ts +3 -0
  30. package/lib/token/types.js +2 -0
  31. package/lib/types.d.ts +44 -44
  32. package/lib/types.schema.d.ts +369 -318
  33. package/lib/w3c/check-serialized-permissions-policy.spec.js +30 -28
  34. package/lib/whatwg/check-autocomplete.js +6 -6
  35. package/lib/whatwg/check-autocomplete.spec.js +361 -360
  36. package/lib/whatwg/check-datetime/datetime-tokens.js +9 -6
  37. package/lib/whatwg/check-datetime/duration-string.js +12 -2
  38. package/lib/whatwg/check-datetime/index.spec.js +277 -276
  39. package/lib/whatwg/check-datetime/local-date-and-time-string.js +6 -2
  40. package/lib/whatwg/check-datetime/time-zone-offset-string.d.ts +1 -1
  41. package/lib/whatwg/check-datetime/time-zone-offset-string.js +3 -2
  42. package/lib/whatwg/check-mime-type.js +1 -1
  43. package/lib/whatwg/check-mime-type.spec.js +53 -52
  44. package/lib/whatwg/is-abs-url.spec.js +6 -5
  45. package/lib/whatwg/is-itemprop-name.js +1 -1
  46. package/package.json +13 -11
  47. package/{src/check.spec.ts → test/check.spec.js} +7 -1
  48. package/{src/css-syntax.spec.ts → test/css-syntax.spec.js} +10 -12
  49. package/{src/list.spec.ts → test/list.spec.js} +7 -7
  50. package/{src/primitive/index.spec.ts → test/primitive/index.spec.js} +1 -1
  51. package/{src/rfc/is-bcp-47.spec.ts → test/rfc/is-bcp-47.spec.js} +1 -1
  52. package/{src/token/token-collection.spec.ts → test/token/token-collection.spec.js} +2 -3
  53. package/{src/w3c/check-serialized-permissions-policy.spec.ts → test/w3c/check-serialized-permissions-policy.spec.js} +1 -3
  54. package/{src/whatwg/check-autocomplete.spec.ts → test/whatwg/check-autocomplete.spec.js} +1 -1
  55. package/{src/whatwg/check-datetime/index.spec.ts → test/whatwg/check-datetime/index.spec.js} +18 -15
  56. package/{src/whatwg/check-mime-type.spec.ts → test/whatwg/check-mime-type.spec.js} +1 -1
  57. package/{src/whatwg/is-abs-url.spec.ts → test/whatwg/is-abs-url.spec.js} +1 -1
  58. package/types.schema.json +369 -318
  59. package/gen/specific-schema.json +0 -98
  60. package/gen/types.ts +0 -66
  61. package/src/check-multi-types.ts +0 -35
  62. package/src/check.ts +0 -48
  63. package/src/css-syntax.ts +0 -188
  64. package/src/debug.ts +0 -3
  65. package/src/defs.ts +0 -811
  66. package/src/enum.ts +0 -25
  67. package/src/get-candidate.ts +0 -24
  68. package/src/index.ts +0 -3
  69. package/src/keyword-type.ts +0 -64
  70. package/src/list.ts +0 -34
  71. package/src/match-result.ts +0 -49
  72. package/src/number.ts +0 -46
  73. package/src/primitive/index.ts +0 -7
  74. package/src/primitive/is-float.ts +0 -8
  75. package/src/primitive/is-int.ts +0 -8
  76. package/src/primitive/is-non-zero-uint.ts +0 -8
  77. package/src/primitive/is-quantity.ts +0 -38
  78. package/src/primitive/is-uint.ts +0 -15
  79. package/src/primitive/range.ts +0 -14
  80. package/src/primitive/split-unit.ts +0 -20
  81. package/src/rfc/is-bcp-47.ts +0 -13
  82. package/src/token/index.ts +0 -2
  83. package/src/token/token-collection.ts +0 -444
  84. package/src/token/token.ts +0 -144
  85. package/src/types.schema.ts +0 -1062
  86. package/src/types.ts +0 -118
  87. package/src/w3c/check-serialized-permissions-policy.ts +0 -303
  88. package/src/whatwg/check-autocomplete.ts +0 -380
  89. package/src/whatwg/check-datetime/date-string.ts +0 -44
  90. package/src/whatwg/check-datetime/datetime-tokens.ts +0 -600
  91. package/src/whatwg/check-datetime/duration-string.ts +0 -399
  92. package/src/whatwg/check-datetime/global-date-and-time-string.ts +0 -96
  93. package/src/whatwg/check-datetime/index.ts +0 -36
  94. package/src/whatwg/check-datetime/local-date-and-time-string.ts +0 -163
  95. package/src/whatwg/check-datetime/month-string.ts +0 -31
  96. package/src/whatwg/check-datetime/time-string.ts +0 -49
  97. package/src/whatwg/check-datetime/time-zone-offset-string.ts +0 -93
  98. package/src/whatwg/check-datetime/week-string.ts +0 -41
  99. package/src/whatwg/check-datetime/year-string.ts +0 -26
  100. package/src/whatwg/check-datetime/yearless-date-string.ts +0 -38
  101. package/src/whatwg/check-mime-type.ts +0 -46
  102. package/src/whatwg/is-abs-url.ts +0 -31
  103. package/src/whatwg/is-browser-context-name.ts +0 -16
  104. package/src/whatwg/is-custom-element-name.ts +0 -76
  105. package/src/whatwg/is-itemprop-name.ts +0 -17
  106. package/tsconfig.test.json +0 -3
  107. package/tsconfig.tsbuildinfo +0 -1
@@ -7,35 +7,70 @@ export type Type = KeywordDefinedType | List | Enum | Number;
7
7
  export type KeywordDefinedType = CssSyntax | ExtendedType | HtmlAttrRequirement;
8
8
  export type CssSyntax =
9
9
  | "<'--*'>"
10
+ | "<'-moz-appearance'>"
11
+ | "<'-moz-background-clip'>"
12
+ | "<'-moz-binding'>"
13
+ | "<'-moz-border-bottom-colors'>"
14
+ | "<'-moz-border-left-colors'>"
15
+ | "<'-moz-border-radius-bottomleft'>"
16
+ | "<'-moz-border-radius-bottomright'>"
17
+ | "<'-moz-border-radius-topleft'>"
18
+ | "<'-moz-border-radius-topright'>"
19
+ | "<'-moz-border-right-colors'>"
20
+ | "<'-moz-border-top-colors'>"
21
+ | "<'-moz-context-properties'>"
22
+ | "<'-moz-control-character-visibility'>"
23
+ | "<'-moz-float-edge'>"
24
+ | "<'-moz-force-broken-image-icon'>"
25
+ | "<'-moz-image-region'>"
26
+ | "<'-moz-orient'>"
27
+ | "<'-moz-osx-font-smoothing'>"
28
+ | "<'-moz-outline-radius'>"
29
+ | "<'-moz-outline-radius-bottomleft'>"
30
+ | "<'-moz-outline-radius-bottomright'>"
31
+ | "<'-moz-outline-radius-topleft'>"
32
+ | "<'-moz-outline-radius-topright'>"
33
+ | "<'-moz-stack-sizing'>"
34
+ | "<'-moz-text-blink'>"
35
+ | "<'-moz-user-focus'>"
36
+ | "<'-moz-user-input'>"
37
+ | "<'-moz-user-modify'>"
38
+ | "<'-moz-user-select'>"
39
+ | "<'-moz-window-dragging'>"
40
+ | "<'-moz-window-shadow'>"
10
41
  | "<'-ms-accelerator'>"
11
42
  | "<'-ms-block-progression'>"
12
43
  | "<'-ms-content-zoom-chaining'>"
13
- | "<'-ms-content-zooming'>"
14
44
  | "<'-ms-content-zoom-limit'>"
15
45
  | "<'-ms-content-zoom-limit-max'>"
16
46
  | "<'-ms-content-zoom-limit-min'>"
17
47
  | "<'-ms-content-zoom-snap'>"
18
48
  | "<'-ms-content-zoom-snap-points'>"
19
49
  | "<'-ms-content-zoom-snap-type'>"
50
+ | "<'-ms-content-zooming'>"
20
51
  | "<'-ms-filter'>"
52
+ | "<'-ms-flex-align'>"
53
+ | "<'-ms-flex-item-align'>"
54
+ | "<'-ms-flex-line-pack'>"
55
+ | "<'-ms-flex-negative'>"
56
+ | "<'-ms-flex-order'>"
57
+ | "<'-ms-flex-pack'>"
58
+ | "<'-ms-flex-positive'>"
59
+ | "<'-ms-flex-preferred-size'>"
21
60
  | "<'-ms-flow-from'>"
22
61
  | "<'-ms-flow-into'>"
62
+ | "<'-ms-grid-column-align'>"
23
63
  | "<'-ms-grid-columns'>"
64
+ | "<'-ms-grid-row-align'>"
24
65
  | "<'-ms-grid-rows'>"
25
66
  | "<'-ms-high-contrast-adjust'>"
26
67
  | "<'-ms-hyphenate-limit-chars'>"
68
+ | "<'-ms-hyphenate-limit-last'>"
27
69
  | "<'-ms-hyphenate-limit-lines'>"
28
70
  | "<'-ms-hyphenate-limit-zone'>"
29
71
  | "<'-ms-ime-align'>"
72
+ | "<'-ms-interpolation-mode'>"
30
73
  | "<'-ms-overflow-style'>"
31
- | "<'-ms-scrollbar-3dlight-color'>"
32
- | "<'-ms-scrollbar-arrow-color'>"
33
- | "<'-ms-scrollbar-base-color'>"
34
- | "<'-ms-scrollbar-darkshadow-color'>"
35
- | "<'-ms-scrollbar-face-color'>"
36
- | "<'-ms-scrollbar-highlight-color'>"
37
- | "<'-ms-scrollbar-shadow-color'>"
38
- | "<'-ms-scrollbar-track-color'>"
39
74
  | "<'-ms-scroll-chaining'>"
40
75
  | "<'-ms-scroll-limit'>"
41
76
  | "<'-ms-scroll-limit-x-max'>"
@@ -49,44 +84,35 @@ export type CssSyntax =
49
84
  | "<'-ms-scroll-snap-x'>"
50
85
  | "<'-ms-scroll-snap-y'>"
51
86
  | "<'-ms-scroll-translation'>"
87
+ | "<'-ms-scrollbar-3dlight-color'>"
88
+ | "<'-ms-scrollbar-arrow-color'>"
89
+ | "<'-ms-scrollbar-base-color'>"
90
+ | "<'-ms-scrollbar-darkshadow-color'>"
91
+ | "<'-ms-scrollbar-face-color'>"
92
+ | "<'-ms-scrollbar-highlight-color'>"
93
+ | "<'-ms-scrollbar-shadow-color'>"
94
+ | "<'-ms-scrollbar-track-color'>"
52
95
  | "<'-ms-text-autospace'>"
53
96
  | "<'-ms-touch-select'>"
54
97
  | "<'-ms-user-select'>"
55
98
  | "<'-ms-wrap-flow'>"
56
99
  | "<'-ms-wrap-margin'>"
57
100
  | "<'-ms-wrap-through'>"
58
- | "<'-moz-appearance'>"
59
- | "<'-moz-binding'>"
60
- | "<'-moz-border-bottom-colors'>"
61
- | "<'-moz-border-left-colors'>"
62
- | "<'-moz-border-right-colors'>"
63
- | "<'-moz-border-top-colors'>"
64
- | "<'-moz-context-properties'>"
65
- | "<'-moz-float-edge'>"
66
- | "<'-moz-force-broken-image-icon'>"
67
- | "<'-moz-image-region'>"
68
- | "<'-moz-orient'>"
69
- | "<'-moz-outline-radius'>"
70
- | "<'-moz-outline-radius-bottomleft'>"
71
- | "<'-moz-outline-radius-bottomright'>"
72
- | "<'-moz-outline-radius-topleft'>"
73
- | "<'-moz-outline-radius-topright'>"
74
- | "<'-moz-stack-sizing'>"
75
- | "<'-moz-text-blink'>"
76
- | "<'-moz-user-focus'>"
77
- | "<'-moz-user-input'>"
78
- | "<'-moz-user-modify'>"
79
- | "<'-moz-window-dragging'>"
80
- | "<'-moz-window-shadow'>"
81
101
  | "<'-webkit-appearance'>"
102
+ | "<'-webkit-background-clip'>"
82
103
  | "<'-webkit-border-before'>"
83
104
  | "<'-webkit-border-before-color'>"
84
105
  | "<'-webkit-border-before-style'>"
85
106
  | "<'-webkit-border-before-width'>"
86
107
  | "<'-webkit-box-reflect'>"
108
+ | "<'-webkit-column-break-after'>"
109
+ | "<'-webkit-column-break-before'>"
110
+ | "<'-webkit-column-break-inside'>"
111
+ | "<'-webkit-font-smoothing'>"
87
112
  | "<'-webkit-line-clamp'>"
88
113
  | "<'-webkit-mask'>"
89
114
  | "<'-webkit-mask-attachment'>"
115
+ | "<'-webkit-mask-box-image'>"
90
116
  | "<'-webkit-mask-clip'>"
91
117
  | "<'-webkit-mask-composite'>"
92
118
  | "<'-webkit-mask-image'>"
@@ -99,19 +125,26 @@ export type CssSyntax =
99
125
  | "<'-webkit-mask-repeat-y'>"
100
126
  | "<'-webkit-mask-size'>"
101
127
  | "<'-webkit-overflow-scrolling'>"
128
+ | "<'-webkit-print-color-adjust'>"
102
129
  | "<'-webkit-tap-highlight-color'>"
103
130
  | "<'-webkit-text-fill-color'>"
131
+ | "<'-webkit-text-security'>"
104
132
  | "<'-webkit-text-stroke'>"
105
133
  | "<'-webkit-text-stroke-color'>"
106
134
  | "<'-webkit-text-stroke-width'>"
107
135
  | "<'-webkit-touch-callout'>"
136
+ | "<'-webkit-user-drag'>"
108
137
  | "<'-webkit-user-modify'>"
138
+ | "<'-webkit-user-select'>"
139
+ | "<'accent-color'>"
109
140
  | "<'align-content'>"
110
141
  | "<'align-items'>"
111
142
  | "<'align-self'>"
112
143
  | "<'align-tracks'>"
144
+ | "<'alignment-baseline'>"
113
145
  | "<'all'>"
114
146
  | "<'animation'>"
147
+ | "<'animation-composition'>"
115
148
  | "<'animation-delay'>"
116
149
  | "<'animation-direction'>"
117
150
  | "<'animation-duration'>"
@@ -119,6 +152,7 @@ export type CssSyntax =
119
152
  | "<'animation-iteration-count'>"
120
153
  | "<'animation-name'>"
121
154
  | "<'animation-play-state'>"
155
+ | "<'animation-timeline'>"
122
156
  | "<'animation-timing-function'>"
123
157
  | "<'appearance'>"
124
158
  | "<'aspect-ratio'>"
@@ -137,13 +171,13 @@ export type CssSyntax =
137
171
  | "<'background-position-y'>"
138
172
  | "<'background-repeat'>"
139
173
  | "<'background-size'>"
174
+ | "<'baseline-shift'>"
175
+ | "<'behavior'>"
140
176
  | "<'block-overflow'>"
141
177
  | "<'block-size'>"
142
178
  | "<'border'>"
143
179
  | "<'border-block'>"
144
180
  | "<'border-block-color'>"
145
- | "<'border-block-style'>"
146
- | "<'border-block-width'>"
147
181
  | "<'border-block-end'>"
148
182
  | "<'border-block-end-color'>"
149
183
  | "<'border-block-end-style'>"
@@ -152,6 +186,8 @@ export type CssSyntax =
152
186
  | "<'border-block-start-color'>"
153
187
  | "<'border-block-start-style'>"
154
188
  | "<'border-block-start-width'>"
189
+ | "<'border-block-style'>"
190
+ | "<'border-block-width'>"
155
191
  | "<'border-bottom'>"
156
192
  | "<'border-bottom-color'>"
157
193
  | "<'border-bottom-left-radius'>"
@@ -169,10 +205,8 @@ export type CssSyntax =
169
205
  | "<'border-image-source'>"
170
206
  | "<'border-image-width'>"
171
207
  | "<'border-inline'>"
172
- | "<'border-inline-end'>"
173
208
  | "<'border-inline-color'>"
174
- | "<'border-inline-style'>"
175
- | "<'border-inline-width'>"
209
+ | "<'border-inline-end'>"
176
210
  | "<'border-inline-end-color'>"
177
211
  | "<'border-inline-end-style'>"
178
212
  | "<'border-inline-end-width'>"
@@ -180,6 +214,8 @@ export type CssSyntax =
180
214
  | "<'border-inline-start-color'>"
181
215
  | "<'border-inline-start-style'>"
182
216
  | "<'border-inline-start-width'>"
217
+ | "<'border-inline-style'>"
218
+ | "<'border-inline-width'>"
183
219
  | "<'border-left'>"
184
220
  | "<'border-left-color'>"
185
221
  | "<'border-left-style'>"
@@ -216,12 +252,15 @@ export type CssSyntax =
216
252
  | "<'break-before'>"
217
253
  | "<'break-inside'>"
218
254
  | "<'caption-side'>"
255
+ | "<'caret'>"
219
256
  | "<'caret-color'>"
257
+ | "<'caret-shape'>"
220
258
  | "<'clear'>"
221
259
  | "<'clip'>"
222
260
  | "<'clip-path'>"
261
+ | "<'clip-rule'>"
223
262
  | "<'color'>"
224
- | "<'color-adjust'>"
263
+ | "<'color-scheme'>"
225
264
  | "<'column-count'>"
226
265
  | "<'column-fill'>"
227
266
  | "<'column-gap'>"
@@ -233,14 +272,27 @@ export type CssSyntax =
233
272
  | "<'column-width'>"
234
273
  | "<'columns'>"
235
274
  | "<'contain'>"
275
+ | "<'contain-intrinsic-block-size'>"
276
+ | "<'contain-intrinsic-height'>"
277
+ | "<'contain-intrinsic-inline-size'>"
278
+ | "<'contain-intrinsic-size'>"
279
+ | "<'contain-intrinsic-width'>"
236
280
  | "<'content'>"
281
+ | "<'content-visibility'>"
237
282
  | "<'counter-increment'>"
238
283
  | "<'counter-reset'>"
239
284
  | "<'counter-set'>"
285
+ | "<'cue'>"
286
+ | "<'cue-after'>"
287
+ | "<'cue-before'>"
240
288
  | "<'cursor'>"
241
289
  | "<'direction'>"
242
290
  | "<'display'>"
291
+ | "<'dominant-baseline'>"
243
292
  | "<'empty-cells'>"
293
+ | "<'fill'>"
294
+ | "<'fill-opacity'>"
295
+ | "<'fill-rule'>"
244
296
  | "<'filter'>"
245
297
  | "<'flex'>"
246
298
  | "<'flex-basis'>"
@@ -256,7 +308,6 @@ export type CssSyntax =
256
308
  | "<'font-kerning'>"
257
309
  | "<'font-language-override'>"
258
310
  | "<'font-optical-sizing'>"
259
- | "<'font-variation-settings'>"
260
311
  | "<'font-size'>"
261
312
  | "<'font-size-adjust'>"
262
313
  | "<'font-smooth'>"
@@ -270,8 +321,12 @@ export type CssSyntax =
270
321
  | "<'font-variant-ligatures'>"
271
322
  | "<'font-variant-numeric'>"
272
323
  | "<'font-variant-position'>"
324
+ | "<'font-variation-settings'>"
273
325
  | "<'font-weight'>"
326
+ | "<'forced-color-adjust'>"
274
327
  | "<'gap'>"
328
+ | "<'glyph-orientation-horizontal'>"
329
+ | "<'glyph-orientation-vertical'>"
275
330
  | "<'grid'>"
276
331
  | "<'grid-area'>"
277
332
  | "<'grid-auto-columns'>"
@@ -292,6 +347,7 @@ export type CssSyntax =
292
347
  | "<'grid-template-rows'>"
293
348
  | "<'hanging-punctuation'>"
294
349
  | "<'height'>"
350
+ | "<'hyphenate-character'>"
295
351
  | "<'hyphens'>"
296
352
  | "<'image-orientation'>"
297
353
  | "<'image-rendering'>"
@@ -300,6 +356,7 @@ export type CssSyntax =
300
356
  | "<'initial-letter'>"
301
357
  | "<'initial-letter-align'>"
302
358
  | "<'inline-size'>"
359
+ | "<'input-security'>"
303
360
  | "<'inset'>"
304
361
  | "<'inset-block'>"
305
362
  | "<'inset-block-end'>"
@@ -312,6 +369,7 @@ export type CssSyntax =
312
369
  | "<'justify-items'>"
313
370
  | "<'justify-self'>"
314
371
  | "<'justify-tracks'>"
372
+ | "<'kerning'>"
315
373
  | "<'left'>"
316
374
  | "<'letter-spacing'>"
317
375
  | "<'line-break'>"
@@ -334,6 +392,10 @@ export type CssSyntax =
334
392
  | "<'margin-right'>"
335
393
  | "<'margin-top'>"
336
394
  | "<'margin-trim'>"
395
+ | "<'marker'>"
396
+ | "<'marker-end'>"
397
+ | "<'marker-mid'>"
398
+ | "<'marker-start'>"
337
399
  | "<'mask'>"
338
400
  | "<'mask-border'>"
339
401
  | "<'mask-border-mode'>"
@@ -352,6 +414,8 @@ export type CssSyntax =
352
414
  | "<'mask-size'>"
353
415
  | "<'mask-type'>"
354
416
  | "<'masonry-auto-flow'>"
417
+ | "<'math-depth'>"
418
+ | "<'math-shift'>"
355
419
  | "<'math-style'>"
356
420
  | "<'max-block-size'>"
357
421
  | "<'max-height'>"
@@ -383,6 +447,7 @@ export type CssSyntax =
383
447
  | "<'overflow-anchor'>"
384
448
  | "<'overflow-block'>"
385
449
  | "<'overflow-clip-box'>"
450
+ | "<'overflow-clip-margin'>"
386
451
  | "<'overflow-inline'>"
387
452
  | "<'overflow-wrap'>"
388
453
  | "<'overflow-x'>"
@@ -407,6 +472,9 @@ export type CssSyntax =
407
472
  | "<'page-break-before'>"
408
473
  | "<'page-break-inside'>"
409
474
  | "<'paint-order'>"
475
+ | "<'pause'>"
476
+ | "<'pause-after'>"
477
+ | "<'pause-before'>"
410
478
  | "<'perspective'>"
411
479
  | "<'perspective-origin'>"
412
480
  | "<'place-content'>"
@@ -414,8 +482,12 @@ export type CssSyntax =
414
482
  | "<'place-self'>"
415
483
  | "<'pointer-events'>"
416
484
  | "<'position'>"
485
+ | "<'print-color-adjust'>"
417
486
  | "<'quotes'>"
418
487
  | "<'resize'>"
488
+ | "<'rest'>"
489
+ | "<'rest-after'>"
490
+ | "<'rest-before'>"
419
491
  | "<'right'>"
420
492
  | "<'rotate'>"
421
493
  | "<'row-gap'>"
@@ -423,29 +495,26 @@ export type CssSyntax =
423
495
  | "<'ruby-merge'>"
424
496
  | "<'ruby-position'>"
425
497
  | "<'scale'>"
426
- | "<'scrollbar-color'>"
427
- | "<'scrollbar-gutter'>"
428
- | "<'scrollbar-width'>"
429
498
  | "<'scroll-behavior'>"
430
499
  | "<'scroll-margin'>"
431
500
  | "<'scroll-margin-block'>"
432
- | "<'scroll-margin-block-start'>"
433
501
  | "<'scroll-margin-block-end'>"
502
+ | "<'scroll-margin-block-start'>"
434
503
  | "<'scroll-margin-bottom'>"
435
504
  | "<'scroll-margin-inline'>"
436
- | "<'scroll-margin-inline-start'>"
437
505
  | "<'scroll-margin-inline-end'>"
506
+ | "<'scroll-margin-inline-start'>"
438
507
  | "<'scroll-margin-left'>"
439
508
  | "<'scroll-margin-right'>"
440
509
  | "<'scroll-margin-top'>"
441
510
  | "<'scroll-padding'>"
442
511
  | "<'scroll-padding-block'>"
443
- | "<'scroll-padding-block-start'>"
444
512
  | "<'scroll-padding-block-end'>"
513
+ | "<'scroll-padding-block-start'>"
445
514
  | "<'scroll-padding-bottom'>"
446
515
  | "<'scroll-padding-inline'>"
447
- | "<'scroll-padding-inline-start'>"
448
516
  | "<'scroll-padding-inline-end'>"
517
+ | "<'scroll-padding-inline-start'>"
449
518
  | "<'scroll-padding-left'>"
450
519
  | "<'scroll-padding-right'>"
451
520
  | "<'scroll-padding-top'>"
@@ -458,13 +527,32 @@ export type CssSyntax =
458
527
  | "<'scroll-snap-type'>"
459
528
  | "<'scroll-snap-type-x'>"
460
529
  | "<'scroll-snap-type-y'>"
530
+ | "<'scroll-timeline'>"
531
+ | "<'scroll-timeline-axis'>"
532
+ | "<'scroll-timeline-name'>"
533
+ | "<'scrollbar-color'>"
534
+ | "<'scrollbar-gutter'>"
535
+ | "<'scrollbar-width'>"
461
536
  | "<'shape-image-threshold'>"
462
537
  | "<'shape-margin'>"
463
538
  | "<'shape-outside'>"
539
+ | "<'shape-rendering'>"
540
+ | "<'speak'>"
541
+ | "<'speak-as'>"
542
+ | "<'src'>"
543
+ | "<'stroke'>"
544
+ | "<'stroke-dasharray'>"
545
+ | "<'stroke-dashoffset'>"
546
+ | "<'stroke-linecap'>"
547
+ | "<'stroke-linejoin'>"
548
+ | "<'stroke-miterlimit'>"
549
+ | "<'stroke-opacity'>"
550
+ | "<'stroke-width'>"
464
551
  | "<'tab-size'>"
465
552
  | "<'table-layout'>"
466
553
  | "<'text-align'>"
467
554
  | "<'text-align-last'>"
555
+ | "<'text-anchor'>"
468
556
  | "<'text-combine-upright'>"
469
557
  | "<'text-decoration'>"
470
558
  | "<'text-decoration-color'>"
@@ -500,9 +588,18 @@ export type CssSyntax =
500
588
  | "<'transition-timing-function'>"
501
589
  | "<'translate'>"
502
590
  | "<'unicode-bidi'>"
591
+ | "<'unicode-range'>"
503
592
  | "<'user-select'>"
504
593
  | "<'vertical-align'>"
505
594
  | "<'visibility'>"
595
+ | "<'voice-balance'>"
596
+ | "<'voice-duration'>"
597
+ | "<'voice-family'>"
598
+ | "<'voice-pitch'>"
599
+ | "<'voice-range'>"
600
+ | "<'voice-rate'>"
601
+ | "<'voice-stress'>"
602
+ | "<'voice-volume'>"
506
603
  | "<'white-space'>"
507
604
  | "<'widows'>"
508
605
  | "<'width'>"
@@ -513,109 +610,85 @@ export type CssSyntax =
513
610
  | "<'writing-mode'>"
514
611
  | "<'z-index'>"
515
612
  | "<'zoom'>"
516
- | "<'-moz-background-clip'>"
517
- | "<'-moz-border-radius-bottomleft'>"
518
- | "<'-moz-border-radius-bottomright'>"
519
- | "<'-moz-border-radius-topleft'>"
520
- | "<'-moz-border-radius-topright'>"
521
- | "<'-moz-control-character-visibility'>"
522
- | "<'-moz-osx-font-smoothing'>"
523
- | "<'-moz-user-select'>"
524
- | "<'-ms-flex-align'>"
525
- | "<'-ms-flex-item-align'>"
526
- | "<'-ms-flex-line-pack'>"
527
- | "<'-ms-flex-negative'>"
528
- | "<'-ms-flex-pack'>"
529
- | "<'-ms-flex-order'>"
530
- | "<'-ms-flex-positive'>"
531
- | "<'-ms-flex-preferred-size'>"
532
- | "<'-ms-interpolation-mode'>"
533
- | "<'-ms-grid-column-align'>"
534
- | "<'-ms-grid-row-align'>"
535
- | "<'-ms-hyphenate-limit-last'>"
536
- | "<'-webkit-background-clip'>"
537
- | "<'-webkit-column-break-after'>"
538
- | "<'-webkit-column-break-before'>"
539
- | "<'-webkit-column-break-inside'>"
540
- | "<'-webkit-font-smoothing'>"
541
- | "<'-webkit-mask-box-image'>"
542
- | "<'-webkit-print-color-adjust'>"
543
- | "<'-webkit-text-security'>"
544
- | "<'-webkit-user-drag'>"
545
- | "<'-webkit-user-select'>"
546
- | "<'alignment-baseline'>"
547
- | "<'baseline-shift'>"
548
- | "<'behavior'>"
549
- | "<'clip-rule'>"
550
- | "<'cue'>"
551
- | "<'cue-after'>"
552
- | "<'cue-before'>"
553
- | "<'dominant-baseline'>"
554
- | "<'fill'>"
555
- | "<'fill-opacity'>"
556
- | "<'fill-rule'>"
557
- | "<'glyph-orientation-horizontal'>"
558
- | "<'glyph-orientation-vertical'>"
559
- | "<'kerning'>"
560
- | "<'marker'>"
561
- | "<'marker-end'>"
562
- | "<'marker-mid'>"
563
- | "<'marker-start'>"
564
- | "<'pause'>"
565
- | "<'pause-after'>"
566
- | "<'pause-before'>"
567
- | "<'rest'>"
568
- | "<'rest-after'>"
569
- | "<'rest-before'>"
570
- | "<'shape-rendering'>"
571
- | "<'src'>"
572
- | "<'speak'>"
573
- | "<'speak-as'>"
574
- | "<'stroke'>"
575
- | "<'stroke-dasharray'>"
576
- | "<'stroke-dashoffset'>"
577
- | "<'stroke-linecap'>"
578
- | "<'stroke-linejoin'>"
579
- | "<'stroke-miterlimit'>"
580
- | "<'stroke-opacity'>"
581
- | "<'stroke-width'>"
582
- | "<'text-anchor'>"
583
- | "<'unicode-range'>"
584
- | "<'voice-balance'>"
585
- | "<'voice-duration'>"
586
- | "<'voice-family'>"
587
- | "<'voice-pitch'>"
588
- | "<'voice-range'>"
589
- | "<'voice-rate'>"
590
- | "<'voice-stress'>"
591
- | "<'voice-volume'>"
592
- | '<absolute-size>'
593
- | '<alpha-value>'
594
- | '<angle-percentage>'
595
- | '<angular-color-hint>'
596
- | '<angular-color-stop>'
597
- | '<angular-color-stop-list>'
598
- | '<animateable-feature>'
599
- | '<attachment>'
600
- | '<attr()>'
601
- | '<attr-matcher>'
602
- | '<attr-modifier>'
603
- | '<attribute-selector>'
604
- | '<auto-repeat>'
605
- | '<auto-track-list>'
613
+ | '<(-token>'
614
+ | '<)-token>'
615
+ | '<-legacy-gradient>'
616
+ | '<-legacy-linear-gradient-arguments>'
617
+ | '<-legacy-linear-gradient>'
618
+ | '<-legacy-radial-gradient-arguments>'
619
+ | '<-legacy-radial-gradient-shape>'
620
+ | '<-legacy-radial-gradient-size>'
621
+ | '<-legacy-radial-gradient>'
622
+ | '<-legacy-repeating-linear-gradient>'
623
+ | '<-legacy-repeating-radial-gradient>'
624
+ | '<-ms-filter-function-legacy>'
625
+ | '<-ms-filter-function-list>'
626
+ | '<-ms-filter-function-progid>'
627
+ | '<-ms-filter-function>'
628
+ | '<-ms-filter>'
629
+ | '<-non-standard-color>'
630
+ | '<-non-standard-display>'
631
+ | '<-non-standard-font>'
632
+ | '<-non-standard-image-rendering>'
633
+ | '<-non-standard-overflow>'
634
+ | '<-non-standard-width>'
635
+ | '<-webkit-gradient()>'
636
+ | '<-webkit-gradient-color-stop>'
637
+ | '<-webkit-gradient-point>'
638
+ | '<-webkit-gradient-radius>'
639
+ | '<-webkit-gradient-type>'
640
+ | '<-webkit-mask-box-repeat>'
641
+ | '<-webkit-mask-clip-style>'
642
+ | '<CDC-token>'
643
+ | '<CDO-token>'
644
+ | '<[-token>'
645
+ | '<]-token>'
646
+ | '<abs()>'
647
+ | '<absolute-size>'
648
+ | '<acos()>'
649
+ | '<age>'
650
+ | '<alpha-value>'
651
+ | '<an-plus-b>'
652
+ | '<angle-percentage>'
653
+ | '<angle>'
654
+ | '<angular-color-hint>'
655
+ | '<angular-color-stop-list>'
656
+ | '<angular-color-stop>'
657
+ | '<animateable-feature>'
658
+ | '<any-value>'
659
+ | '<asin()>'
660
+ | '<at-keyword-token>'
661
+ | '<atan()>'
662
+ | '<atan2()>'
663
+ | '<attachment>'
664
+ | '<attr()>'
665
+ | '<attr-fallback>'
666
+ | '<attr-matcher>'
667
+ | '<attr-modifier>'
668
+ | '<attr-name>'
669
+ | '<attribute-selector>'
670
+ | '<auto-repeat>'
671
+ | '<auto-track-list>'
672
+ | '<axis>'
673
+ | '<bad-string-token>'
674
+ | '<bad-url-token>'
606
675
  | '<baseline-position>'
607
676
  | '<basic-shape>'
677
+ | '<bcp-47>'
678
+ | '<bg-clip>'
608
679
  | '<bg-image>'
609
680
  | '<bg-layer>'
610
681
  | '<bg-position>'
611
682
  | '<bg-size>'
612
- | '<blur()>'
613
683
  | '<blend-mode>'
684
+ | '<blur()>'
685
+ | '<bottom>'
614
686
  | '<box>'
615
687
  | '<brightness()>'
616
688
  | '<calc()>'
617
- | '<calc-sum>'
689
+ | '<calc-constant>'
618
690
  | '<calc-product>'
691
+ | '<calc-sum>'
619
692
  | '<calc-value>'
620
693
  | '<cf-final-image>'
621
694
  | '<cf-mixing-image>'
@@ -623,34 +696,48 @@ export type CssSyntax =
623
696
  | '<clamp()>'
624
697
  | '<class-selector>'
625
698
  | '<clip-source>'
626
- | '<color>'
627
- | '<color-stop>'
699
+ | '<colon-token>'
628
700
  | '<color-stop-angle>'
629
701
  | '<color-stop-length>'
630
702
  | '<color-stop-list>'
703
+ | '<color-stop>'
704
+ | '<color>'
631
705
  | '<combinator>'
706
+ | '<comma-token>'
632
707
  | '<common-lig-values>'
633
708
  | '<compat-auto>'
709
+ | '<complex-selector-list>'
710
+ | '<complex-selector>'
634
711
  | '<composite-style>'
635
712
  | '<compositing-operator>'
636
- | '<compound-selector>'
637
713
  | '<compound-selector-list>'
638
- | '<complex-selector>'
639
- | '<complex-selector-list>'
714
+ | '<compound-selector>'
640
715
  | '<conic-gradient()>'
641
- | '<contextual-alt-values>'
642
716
  | '<content-distribution>'
643
717
  | '<content-list>'
644
718
  | '<content-position>'
645
719
  | '<content-replacement>'
720
+ | '<contextual-alt-values>'
646
721
  | '<contrast()>'
722
+ | '<cos()>'
647
723
  | '<counter()>'
648
- | '<counter-style>'
724
+ | '<counter-name>'
649
725
  | '<counter-style-name>'
726
+ | '<counter-style>'
727
+ | '<counter>'
650
728
  | '<counters()>'
651
729
  | '<cross-fade()>'
652
730
  | '<cubic-bezier-timing-function>'
731
+ | '<custom-ident>'
732
+ | '<custom-property-name>'
733
+ | '<decibel>'
734
+ | '<declaration-list>'
735
+ | '<declaration-value>'
736
+ | '<declaration>'
737
+ | '<delim-token>'
653
738
  | '<deprecated-system-color>'
739
+ | '<dimension-token>'
740
+ | '<dimension>'
654
741
  | '<discretionary-lig-values>'
655
742
  | '<display-box>'
656
743
  | '<display-inside>'
@@ -659,69 +746,90 @@ export type CssSyntax =
659
746
  | '<display-listitem>'
660
747
  | '<display-outside>'
661
748
  | '<drop-shadow()>'
749
+ | '<easing-function>'
662
750
  | '<east-asian-variant-values>'
663
751
  | '<east-asian-width-values>'
664
752
  | '<element()>'
665
753
  | '<ellipse()>'
666
754
  | '<ending-shape>'
667
755
  | '<env()>'
756
+ | '<exp()>'
668
757
  | '<explicit-track-list>'
669
758
  | '<family-name>'
670
759
  | '<feature-tag-value>'
671
760
  | '<feature-type>'
672
- | '<feature-value-block>'
673
761
  | '<feature-value-block-list>'
674
- | '<feature-value-declaration>'
762
+ | '<feature-value-block>'
675
763
  | '<feature-value-declaration-list>'
764
+ | '<feature-value-declaration>'
676
765
  | '<feature-value-name>'
677
766
  | '<fill-rule>'
678
- | '<filter-function>'
679
767
  | '<filter-function-list>'
768
+ | '<filter-function>'
680
769
  | '<final-bg-layer>'
681
- | '<fit-content()>'
682
770
  | '<fixed-breadth>'
683
771
  | '<fixed-repeat>'
684
772
  | '<fixed-size>'
773
+ | '<flex>'
685
774
  | '<font-stretch-absolute>'
686
775
  | '<font-variant-css21>'
687
776
  | '<font-weight-absolute>'
688
777
  | '<frequency-percentage>'
778
+ | '<frequency>'
779
+ | '<function-token>'
780
+ | '<gender>'
689
781
  | '<general-enclosed>'
690
782
  | '<generic-family>'
691
783
  | '<generic-name>'
784
+ | '<generic-voice>'
692
785
  | '<geometry-box>'
693
786
  | '<gradient>'
694
787
  | '<grayscale()>'
695
788
  | '<grid-line>'
789
+ | '<hash-token>'
790
+ | '<hex-color>'
696
791
  | '<historical-lig-values>'
697
792
  | '<hsl()>'
698
793
  | '<hsla()>'
699
- | '<hue>'
700
794
  | '<hue-rotate()>'
795
+ | '<hue>'
796
+ | '<hwb()>'
797
+ | '<hypot()>'
701
798
  | '<id-selector>'
702
- | '<image>'
799
+ | '<ident-token>'
800
+ | '<ident>'
703
801
  | '<image()>'
704
802
  | '<image-set()>'
705
803
  | '<image-set-option>'
706
804
  | '<image-src>'
707
805
  | '<image-tags>'
806
+ | '<image>'
708
807
  | '<inflexible-breadth>'
709
808
  | '<inset()>'
809
+ | '<integer>'
710
810
  | '<invert()>'
711
- | '<keyframes-name>'
712
- | '<keyframe-block>'
713
811
  | '<keyframe-block-list>'
812
+ | '<keyframe-block>'
714
813
  | '<keyframe-selector>'
814
+ | '<keyframes-name>'
815
+ | '<lab()>'
816
+ | '<layer()>'
817
+ | '<layer-name>'
818
+ | '<lch()>'
715
819
  | '<leader()>'
716
820
  | '<leader-type>'
821
+ | '<left>'
717
822
  | '<length-percentage>'
718
- | '<line-names>'
823
+ | '<length>'
719
824
  | '<line-name-list>'
825
+ | '<line-names>'
720
826
  | '<line-style>'
721
827
  | '<line-width>'
722
828
  | '<linear-color-hint>'
723
829
  | '<linear-color-stop>'
724
830
  | '<linear-gradient()>'
831
+ | '<log()>'
832
+ | '<mask-image>'
725
833
  | '<mask-layer>'
726
834
  | '<mask-position>'
727
835
  | '<mask-reference>'
@@ -731,14 +839,14 @@ export type CssSyntax =
731
839
  | '<matrix3d()>'
732
840
  | '<max()>'
733
841
  | '<media-and>'
734
- | '<media-condition>'
735
842
  | '<media-condition-without-or>'
843
+ | '<media-condition>'
736
844
  | '<media-feature>'
737
845
  | '<media-in-parens>'
738
846
  | '<media-not>'
739
847
  | '<media-or>'
740
- | '<media-query>'
741
848
  | '<media-query-list>'
849
+ | '<media-query>'
742
850
  | '<media-type>'
743
851
  | '<mf-boolean>'
744
852
  | '<mf-name>'
@@ -747,85 +855,121 @@ export type CssSyntax =
747
855
  | '<mf-value>'
748
856
  | '<min()>'
749
857
  | '<minmax()>'
858
+ | '<mod()>'
859
+ | '<name-repeat>'
750
860
  | '<named-color>'
751
861
  | '<namespace-prefix>'
752
862
  | '<ns-prefix>'
863
+ | '<nth>'
864
+ | '<number-one-or-greater>'
753
865
  | '<number-percentage>'
866
+ | '<number-token>'
867
+ | '<number-zero-one>'
868
+ | '<number>'
754
869
  | '<numeric-figure-values>'
755
870
  | '<numeric-fraction-values>'
756
871
  | '<numeric-spacing-values>'
757
- | '<nth>'
758
872
  | '<opacity()>'
759
- | '<overflow-position>'
760
873
  | '<outline-radius>'
874
+ | '<overflow-position>'
761
875
  | '<page-body>'
762
- | '<page-margin-box>'
763
876
  | '<page-margin-box-type>'
877
+ | '<page-margin-box>'
764
878
  | '<page-selector-list>'
765
879
  | '<page-selector>'
766
- | '<path()>'
880
+ | '<page-size>'
767
881
  | '<paint()>'
882
+ | '<paint>'
883
+ | '<path()>'
884
+ | '<percentage-token>'
885
+ | '<percentage>'
768
886
  | '<perspective()>'
769
887
  | '<polygon()>'
770
888
  | '<position>'
889
+ | '<pow()>'
771
890
  | '<pseudo-class-selector>'
772
891
  | '<pseudo-element-selector>'
773
892
  | '<pseudo-page>'
774
893
  | '<quote>'
775
894
  | '<radial-gradient()>'
776
- | '<relative-selector>'
895
+ | '<ratio>'
777
896
  | '<relative-selector-list>'
897
+ | '<relative-selector>'
778
898
  | '<relative-size>'
899
+ | '<rem()>'
779
900
  | '<repeat-style>'
901
+ | '<repeating-conic-gradient()>'
780
902
  | '<repeating-linear-gradient()>'
781
903
  | '<repeating-radial-gradient()>'
904
+ | '<resolution>'
905
+ | '<reversed-counter-name>'
782
906
  | '<rgb()>'
783
907
  | '<rgba()>'
908
+ | '<right>'
784
909
  | '<rotate()>'
785
910
  | '<rotate3d()>'
786
911
  | '<rotateX()>'
787
912
  | '<rotateY()>'
788
913
  | '<rotateZ()>'
914
+ | '<round()>'
915
+ | '<rounding-strategy>'
789
916
  | '<saturate()>'
790
917
  | '<scale()>'
791
918
  | '<scale3d()>'
792
919
  | '<scaleX()>'
793
920
  | '<scaleY()>'
794
921
  | '<scaleZ()>'
922
+ | '<scroll-timeline-axis>'
923
+ | '<scroll-timeline-name>'
924
+ | '<scroller>'
795
925
  | '<self-position>'
796
- | '<shape-radius>'
797
- | '<skew()>'
798
- | '<skewX()>'
799
- | '<skewY()>'
926
+ | '<semicolon-token>'
927
+ | '<semitones>'
800
928
  | '<sepia()>'
801
- | '<shadow>'
802
929
  | '<shadow-t>'
803
- | '<shape>'
930
+ | '<shadow>'
804
931
  | '<shape-box>'
932
+ | '<shape-radius>'
933
+ | '<shape>'
805
934
  | '<side-or-corner>'
806
- | '<single-animation>'
935
+ | '<sign()>'
936
+ | '<sin()>'
937
+ | '<single-animation-composition>'
807
938
  | '<single-animation-direction>'
808
939
  | '<single-animation-fill-mode>'
809
940
  | '<single-animation-iteration-count>'
810
941
  | '<single-animation-play-state>'
811
- | '<single-transition>'
942
+ | '<single-animation-timeline>'
943
+ | '<single-animation>'
812
944
  | '<single-transition-property>'
945
+ | '<single-transition>'
813
946
  | '<size>'
947
+ | '<skew()>'
948
+ | '<skewX()>'
949
+ | '<skewY()>'
950
+ | '<sqrt()>'
814
951
  | '<step-position>'
815
952
  | '<step-timing-function>'
953
+ | '<string-token>'
954
+ | '<string>'
816
955
  | '<subclass-selector>'
817
956
  | '<supports-condition>'
818
- | '<supports-in-parens>'
819
- | '<supports-feature>'
820
957
  | '<supports-decl>'
958
+ | '<supports-feature>'
959
+ | '<supports-in-parens>'
821
960
  | '<supports-selector-fn>'
961
+ | '<svg-length>'
962
+ | '<svg-writing-mode>'
822
963
  | '<symbol>'
823
- | '<target>'
964
+ | '<tan()>'
824
965
  | '<target-counter()>'
825
966
  | '<target-counters()>'
826
967
  | '<target-text()>'
968
+ | '<target>'
827
969
  | '<time-percentage>'
828
- | '<timing-function>'
970
+ | '<time>'
971
+ | '<timeline-name>'
972
+ | '<top>'
829
973
  | '<track-breadth>'
830
974
  | '<track-list>'
831
975
  | '<track-repeat>'
@@ -839,174 +983,81 @@ export type CssSyntax =
839
983
  | '<translateZ()>'
840
984
  | '<type-or-unit>'
841
985
  | '<type-selector>'
986
+ | '<urange>'
987
+ | '<url-modifier>'
988
+ | '<url-token>'
989
+ | '<url>'
842
990
  | '<var()>'
843
991
  | '<viewport-length>'
992
+ | '<visual-box>'
993
+ | '<whitespace-token>'
844
994
  | '<wq-name>'
845
- | '<-legacy-gradient>'
846
- | '<-legacy-linear-gradient>'
847
- | '<-legacy-repeating-linear-gradient>'
848
- | '<-legacy-linear-gradient-arguments>'
849
- | '<-legacy-radial-gradient>'
850
- | '<-legacy-repeating-radial-gradient>'
851
- | '<-legacy-radial-gradient-arguments>'
852
- | '<-legacy-radial-gradient-size>'
853
- | '<-legacy-radial-gradient-shape>'
854
- | '<-non-standard-font>'
855
- | '<-non-standard-color>'
856
- | '<-non-standard-image-rendering>'
857
- | '<-non-standard-overflow>'
858
- | '<-non-standard-width>'
859
- | '<-webkit-gradient()>'
860
- | '<-webkit-gradient-color-stop>'
861
- | '<-webkit-gradient-point>'
862
- | '<-webkit-gradient-radius>'
863
- | '<-webkit-gradient-type>'
864
- | '<-webkit-mask-box-repeat>'
865
- | '<-webkit-mask-clip-style>'
866
- | '<-ms-filter-function-list>'
867
- | '<-ms-filter-function>'
868
- | '<-ms-filter-function-progid>'
869
- | '<-ms-filter-function-legacy>'
870
- | '<-ms-filter>'
871
- | '<age>'
872
- | '<attr-name>'
873
- | '<attr-fallback>'
874
- | '<border-radius>'
875
- | '<bottom>'
876
- | '<generic-voice>'
877
- | '<gender>'
878
- | '<left>'
879
- | '<mask-image>'
880
- | '<name-repeat>'
881
- | '<paint>'
882
- | '<page-size>'
883
- | '<ratio>'
884
- | '<right>'
885
- | '<svg-length>'
886
- | '<svg-writing-mode>'
887
- | '<top>'
888
- | '<track-group>'
889
- | '<track-list-v0>'
890
- | '<track-minmax>'
891
995
  | '<x>'
892
996
  | '<y>'
893
- | '<declaration>'
894
- | '<declaration-list>'
895
- | '<url>'
896
- | '<url-modifier>'
897
- | '<number-zero-one>'
898
- | '<number-one-or-greater>'
899
- | '<positive-integer>'
900
- | '<-non-standard-display>'
901
- | '<ident-token>'
902
- | '<function-token>'
903
- | '<at-keyword-token>'
904
- | '<hash-token>'
905
- | '<string-token>'
906
- | '<bad-string-token>'
907
- | '<url-token>'
908
- | '<bad-url-token>'
909
- | '<delim-token>'
910
- | '<number-token>'
911
- | '<percentage-token>'
912
- | '<dimension-token>'
913
- | '<whitespace-token>'
914
- | '<CDO-token>'
915
- | '<CDC-token>'
916
- | '<colon-token>'
917
- | '<semicolon-token>'
918
- | '<comma-token>'
919
- | '<[-token>'
920
- | '<]-token>'
921
- | '<(-token>'
922
- | '<)-token>'
923
- | '<{-token>'
924
- | '<}-token>'
925
- | '<string>'
926
- | '<ident>'
927
- | '<custom-ident>'
928
- | '<custom-property-name>'
929
- | '<hex-color>'
930
- | '<an-plus-b>'
931
- | '<urange>'
932
- | '<declaration-value>'
933
- | '<any-value>'
934
- | '<dimension>'
935
- | '<angle>'
936
- | '<decibel>'
937
- | '<frequency>'
938
- | '<flex>'
939
- | '<length>'
940
- | '<resolution>'
941
- | '<semitones>'
942
- | '<time>'
943
- | '<percentage>'
944
997
  | '<zero>'
945
- | '<number>'
946
- | '<integer>'
947
- | '<-ms-legacy-expression>'
948
- | '<bcp-47>';
998
+ | '<{-token>'
999
+ | '<}-token>';
949
1000
  export type ExtendedType =
950
- | 'Any'
951
- | 'NoEmptyAny'
952
- | 'OneLineAny'
953
- | 'Zero'
954
- | 'Number'
955
- | 'Int'
956
- | 'Uint'
957
- | 'XMLName'
958
- | 'DOMID'
959
- | 'FunctionBody'
960
- | 'Pattern'
961
- | 'DateTime'
962
- | 'TabIndex'
963
- | 'BCP47'
964
- | 'URL'
965
- | 'AbsoluteURL'
966
- | 'HashName'
967
- | 'OneCodePointChar'
968
- | 'CustomElementName'
969
- | 'BrowsingContextName'
970
- | 'BrowsingContextNameOrKeyword'
971
- | 'HTTPSchemaURL'
972
- | 'MIMEType'
973
- | 'ItemProp'
974
- | 'Srcset'
975
- | 'SourceSizeList'
976
- | 'IconSize'
977
- | 'AutoComplete'
978
- | 'Accept'
979
- | 'SerializedPermissionsPolicy'
980
- | '<css-declaration-list>'
981
- | '<class-list>'
982
- | '<svg-font-size>'
983
- | '<svg-font-size-adjust>'
984
1001
  | "<'color-profile'>"
985
1002
  | "<'color-rendering'>"
986
1003
  | "<'enable-background'>"
987
- | '<list-of-svg-feature-string>'
988
1004
  | '<animatable-value>'
989
1005
  | '<begin-value-list>'
990
- | '<end-value-list>'
991
- | '<list-of-value>'
1006
+ | '<class-list>'
992
1007
  | '<clock-value>'
993
1008
  | '<color-matrix>'
1009
+ | '<css-declaration-list>'
994
1010
  | '<dasharray>'
1011
+ | '<end-value-list>'
995
1012
  | '<key-points>'
996
1013
  | '<key-splines>'
997
1014
  | '<key-times>'
998
- | '<system-language>'
1015
+ | '<list-of-lengths>'
1016
+ | '<list-of-numbers>'
1017
+ | '<list-of-percentages>'
1018
+ | '<list-of-svg-feature-string>'
1019
+ | '<list-of-value>'
1020
+ | '<number-optional-number>'
999
1021
  | '<origin>'
1000
- | '<svg-path>'
1001
1022
  | '<points>'
1002
1023
  | '<preserve-aspect-ratio>'
1003
- | '<view-box>'
1004
1024
  | '<rotate>'
1025
+ | '<svg-font-size-adjust>'
1026
+ | '<svg-font-size>'
1027
+ | '<svg-path>'
1028
+ | '<system-language>'
1005
1029
  | '<text-coordinate>'
1006
- | '<list-of-lengths>'
1007
- | '<list-of-numbers>'
1008
- | '<list-of-percentages>'
1009
- | '<number-optional-number>';
1030
+ | '<view-box>'
1031
+ | 'AbsoluteURL'
1032
+ | 'Accept'
1033
+ | 'Any'
1034
+ | 'AutoComplete'
1035
+ | 'BCP47'
1036
+ | 'BrowsingContextName'
1037
+ | 'BrowsingContextNameOrKeyword'
1038
+ | 'CustomElementName'
1039
+ | 'DOMID'
1040
+ | 'DateTime'
1041
+ | 'FunctionBody'
1042
+ | 'HTTPSchemaURL'
1043
+ | 'HashName'
1044
+ | 'IconSize'
1045
+ | 'Int'
1046
+ | 'ItemProp'
1047
+ | 'MIMEType'
1048
+ | 'NoEmptyAny'
1049
+ | 'Number'
1050
+ | 'OneCodePointChar'
1051
+ | 'OneLineAny'
1052
+ | 'Pattern'
1053
+ | 'SerializedPermissionsPolicy'
1054
+ | 'SourceSizeList'
1055
+ | 'Srcset'
1056
+ | 'TabIndex'
1057
+ | 'URL'
1058
+ | 'Uint'
1059
+ | 'XMLName'
1060
+ | 'Zero';
1010
1061
  export type HtmlAttrRequirement = 'Boolean';
1011
1062
  export interface TypesSchema {
1012
1063
  type?: Type;