@markuplint/types 3.3.0 → 3.4.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.
@@ -5,1106 +5,53 @@
5
5
  */
6
6
  export type Type = KeywordDefinedType | List | Enum | Number;
7
7
  export type KeywordDefinedType = CssSyntax | ExtendedType | HtmlAttrRequirement;
8
- export type CssSyntax =
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'>"
41
- | "<'-ms-accelerator'>"
42
- | "<'-ms-block-progression'>"
43
- | "<'-ms-content-zoom-chaining'>"
44
- | "<'-ms-content-zoom-limit'>"
45
- | "<'-ms-content-zoom-limit-max'>"
46
- | "<'-ms-content-zoom-limit-min'>"
47
- | "<'-ms-content-zoom-snap'>"
48
- | "<'-ms-content-zoom-snap-points'>"
49
- | "<'-ms-content-zoom-snap-type'>"
50
- | "<'-ms-content-zooming'>"
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'>"
60
- | "<'-ms-flow-from'>"
61
- | "<'-ms-flow-into'>"
62
- | "<'-ms-grid-column-align'>"
63
- | "<'-ms-grid-columns'>"
64
- | "<'-ms-grid-row-align'>"
65
- | "<'-ms-grid-rows'>"
66
- | "<'-ms-high-contrast-adjust'>"
67
- | "<'-ms-hyphenate-limit-chars'>"
68
- | "<'-ms-hyphenate-limit-last'>"
69
- | "<'-ms-hyphenate-limit-lines'>"
70
- | "<'-ms-hyphenate-limit-zone'>"
71
- | "<'-ms-ime-align'>"
72
- | "<'-ms-interpolation-mode'>"
73
- | "<'-ms-overflow-style'>"
74
- | "<'-ms-scroll-chaining'>"
75
- | "<'-ms-scroll-limit'>"
76
- | "<'-ms-scroll-limit-x-max'>"
77
- | "<'-ms-scroll-limit-x-min'>"
78
- | "<'-ms-scroll-limit-y-max'>"
79
- | "<'-ms-scroll-limit-y-min'>"
80
- | "<'-ms-scroll-rails'>"
81
- | "<'-ms-scroll-snap-points-x'>"
82
- | "<'-ms-scroll-snap-points-y'>"
83
- | "<'-ms-scroll-snap-type'>"
84
- | "<'-ms-scroll-snap-x'>"
85
- | "<'-ms-scroll-snap-y'>"
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'>"
95
- | "<'-ms-text-autospace'>"
96
- | "<'-ms-touch-select'>"
97
- | "<'-ms-user-select'>"
98
- | "<'-ms-wrap-flow'>"
99
- | "<'-ms-wrap-margin'>"
100
- | "<'-ms-wrap-through'>"
101
- | "<'-webkit-appearance'>"
102
- | "<'-webkit-background-clip'>"
103
- | "<'-webkit-border-before'>"
104
- | "<'-webkit-border-before-color'>"
105
- | "<'-webkit-border-before-style'>"
106
- | "<'-webkit-border-before-width'>"
107
- | "<'-webkit-box-reflect'>"
108
- | "<'-webkit-column-break-after'>"
109
- | "<'-webkit-column-break-before'>"
110
- | "<'-webkit-column-break-inside'>"
111
- | "<'-webkit-font-smoothing'>"
112
- | "<'-webkit-line-clamp'>"
113
- | "<'-webkit-mask'>"
114
- | "<'-webkit-mask-attachment'>"
115
- | "<'-webkit-mask-box-image'>"
116
- | "<'-webkit-mask-clip'>"
117
- | "<'-webkit-mask-composite'>"
118
- | "<'-webkit-mask-image'>"
119
- | "<'-webkit-mask-origin'>"
120
- | "<'-webkit-mask-position'>"
121
- | "<'-webkit-mask-position-x'>"
122
- | "<'-webkit-mask-position-y'>"
123
- | "<'-webkit-mask-repeat'>"
124
- | "<'-webkit-mask-repeat-x'>"
125
- | "<'-webkit-mask-repeat-y'>"
126
- | "<'-webkit-mask-size'>"
127
- | "<'-webkit-overflow-scrolling'>"
128
- | "<'-webkit-print-color-adjust'>"
129
- | "<'-webkit-tap-highlight-color'>"
130
- | "<'-webkit-text-fill-color'>"
131
- | "<'-webkit-text-security'>"
132
- | "<'-webkit-text-stroke'>"
133
- | "<'-webkit-text-stroke-color'>"
134
- | "<'-webkit-text-stroke-width'>"
135
- | "<'-webkit-touch-callout'>"
136
- | "<'-webkit-user-drag'>"
137
- | "<'-webkit-user-modify'>"
138
- | "<'-webkit-user-select'>"
139
- | "<'accent-color'>"
140
- | "<'align-content'>"
141
- | "<'align-items'>"
142
- | "<'align-self'>"
143
- | "<'align-tracks'>"
144
- | "<'alignment-baseline'>"
145
- | "<'all'>"
146
- | "<'animation'>"
147
- | "<'animation-composition'>"
148
- | "<'animation-delay'>"
149
- | "<'animation-direction'>"
150
- | "<'animation-duration'>"
151
- | "<'animation-fill-mode'>"
152
- | "<'animation-iteration-count'>"
153
- | "<'animation-name'>"
154
- | "<'animation-play-state'>"
155
- | "<'animation-timeline'>"
156
- | "<'animation-timing-function'>"
157
- | "<'appearance'>"
158
- | "<'aspect-ratio'>"
159
- | "<'azimuth'>"
160
- | "<'backdrop-filter'>"
161
- | "<'backface-visibility'>"
162
- | "<'background'>"
163
- | "<'background-attachment'>"
164
- | "<'background-blend-mode'>"
165
- | "<'background-clip'>"
166
- | "<'background-color'>"
167
- | "<'background-image'>"
168
- | "<'background-origin'>"
169
- | "<'background-position'>"
170
- | "<'background-position-x'>"
171
- | "<'background-position-y'>"
172
- | "<'background-repeat'>"
173
- | "<'background-size'>"
174
- | "<'baseline-shift'>"
175
- | "<'behavior'>"
176
- | "<'block-overflow'>"
177
- | "<'block-size'>"
178
- | "<'border'>"
179
- | "<'border-block'>"
180
- | "<'border-block-color'>"
181
- | "<'border-block-end'>"
182
- | "<'border-block-end-color'>"
183
- | "<'border-block-end-style'>"
184
- | "<'border-block-end-width'>"
185
- | "<'border-block-start'>"
186
- | "<'border-block-start-color'>"
187
- | "<'border-block-start-style'>"
188
- | "<'border-block-start-width'>"
189
- | "<'border-block-style'>"
190
- | "<'border-block-width'>"
191
- | "<'border-bottom'>"
192
- | "<'border-bottom-color'>"
193
- | "<'border-bottom-left-radius'>"
194
- | "<'border-bottom-right-radius'>"
195
- | "<'border-bottom-style'>"
196
- | "<'border-bottom-width'>"
197
- | "<'border-collapse'>"
198
- | "<'border-color'>"
199
- | "<'border-end-end-radius'>"
200
- | "<'border-end-start-radius'>"
201
- | "<'border-image'>"
202
- | "<'border-image-outset'>"
203
- | "<'border-image-repeat'>"
204
- | "<'border-image-slice'>"
205
- | "<'border-image-source'>"
206
- | "<'border-image-width'>"
207
- | "<'border-inline'>"
208
- | "<'border-inline-color'>"
209
- | "<'border-inline-end'>"
210
- | "<'border-inline-end-color'>"
211
- | "<'border-inline-end-style'>"
212
- | "<'border-inline-end-width'>"
213
- | "<'border-inline-start'>"
214
- | "<'border-inline-start-color'>"
215
- | "<'border-inline-start-style'>"
216
- | "<'border-inline-start-width'>"
217
- | "<'border-inline-style'>"
218
- | "<'border-inline-width'>"
219
- | "<'border-left'>"
220
- | "<'border-left-color'>"
221
- | "<'border-left-style'>"
222
- | "<'border-left-width'>"
223
- | "<'border-radius'>"
224
- | "<'border-right'>"
225
- | "<'border-right-color'>"
226
- | "<'border-right-style'>"
227
- | "<'border-right-width'>"
228
- | "<'border-spacing'>"
229
- | "<'border-start-end-radius'>"
230
- | "<'border-start-start-radius'>"
231
- | "<'border-style'>"
232
- | "<'border-top'>"
233
- | "<'border-top-color'>"
234
- | "<'border-top-left-radius'>"
235
- | "<'border-top-right-radius'>"
236
- | "<'border-top-style'>"
237
- | "<'border-top-width'>"
238
- | "<'border-width'>"
239
- | "<'bottom'>"
240
- | "<'box-align'>"
241
- | "<'box-decoration-break'>"
242
- | "<'box-direction'>"
243
- | "<'box-flex'>"
244
- | "<'box-flex-group'>"
245
- | "<'box-lines'>"
246
- | "<'box-ordinal-group'>"
247
- | "<'box-orient'>"
248
- | "<'box-pack'>"
249
- | "<'box-shadow'>"
250
- | "<'box-sizing'>"
251
- | "<'break-after'>"
252
- | "<'break-before'>"
253
- | "<'break-inside'>"
254
- | "<'caption-side'>"
255
- | "<'caret'>"
256
- | "<'caret-color'>"
257
- | "<'caret-shape'>"
258
- | "<'clear'>"
259
- | "<'clip'>"
260
- | "<'clip-path'>"
261
- | "<'clip-rule'>"
262
- | "<'color'>"
263
- | "<'color-scheme'>"
264
- | "<'column-count'>"
265
- | "<'column-fill'>"
266
- | "<'column-gap'>"
267
- | "<'column-rule'>"
268
- | "<'column-rule-color'>"
269
- | "<'column-rule-style'>"
270
- | "<'column-rule-width'>"
271
- | "<'column-span'>"
272
- | "<'column-width'>"
273
- | "<'columns'>"
274
- | "<'contain'>"
275
- | "<'contain-intrinsic-block-size'>"
276
- | "<'contain-intrinsic-height'>"
277
- | "<'contain-intrinsic-inline-size'>"
278
- | "<'contain-intrinsic-size'>"
279
- | "<'contain-intrinsic-width'>"
280
- | "<'content'>"
281
- | "<'content-visibility'>"
282
- | "<'counter-increment'>"
283
- | "<'counter-reset'>"
284
- | "<'counter-set'>"
285
- | "<'cue'>"
286
- | "<'cue-after'>"
287
- | "<'cue-before'>"
288
- | "<'cursor'>"
289
- | "<'direction'>"
290
- | "<'display'>"
291
- | "<'dominant-baseline'>"
292
- | "<'empty-cells'>"
293
- | "<'fill'>"
294
- | "<'fill-opacity'>"
295
- | "<'fill-rule'>"
296
- | "<'filter'>"
297
- | "<'flex'>"
298
- | "<'flex-basis'>"
299
- | "<'flex-direction'>"
300
- | "<'flex-flow'>"
301
- | "<'flex-grow'>"
302
- | "<'flex-shrink'>"
303
- | "<'flex-wrap'>"
304
- | "<'float'>"
305
- | "<'font'>"
306
- | "<'font-family'>"
307
- | "<'font-feature-settings'>"
308
- | "<'font-kerning'>"
309
- | "<'font-language-override'>"
310
- | "<'font-optical-sizing'>"
311
- | "<'font-size'>"
312
- | "<'font-size-adjust'>"
313
- | "<'font-smooth'>"
314
- | "<'font-stretch'>"
315
- | "<'font-style'>"
316
- | "<'font-synthesis'>"
317
- | "<'font-variant'>"
318
- | "<'font-variant-alternates'>"
319
- | "<'font-variant-caps'>"
320
- | "<'font-variant-east-asian'>"
321
- | "<'font-variant-ligatures'>"
322
- | "<'font-variant-numeric'>"
323
- | "<'font-variant-position'>"
324
- | "<'font-variation-settings'>"
325
- | "<'font-weight'>"
326
- | "<'forced-color-adjust'>"
327
- | "<'gap'>"
328
- | "<'glyph-orientation-horizontal'>"
329
- | "<'glyph-orientation-vertical'>"
330
- | "<'grid'>"
331
- | "<'grid-area'>"
332
- | "<'grid-auto-columns'>"
333
- | "<'grid-auto-flow'>"
334
- | "<'grid-auto-rows'>"
335
- | "<'grid-column'>"
336
- | "<'grid-column-end'>"
337
- | "<'grid-column-gap'>"
338
- | "<'grid-column-start'>"
339
- | "<'grid-gap'>"
340
- | "<'grid-row'>"
341
- | "<'grid-row-end'>"
342
- | "<'grid-row-gap'>"
343
- | "<'grid-row-start'>"
344
- | "<'grid-template'>"
345
- | "<'grid-template-areas'>"
346
- | "<'grid-template-columns'>"
347
- | "<'grid-template-rows'>"
348
- | "<'hanging-punctuation'>"
349
- | "<'height'>"
350
- | "<'hyphenate-character'>"
351
- | "<'hyphens'>"
352
- | "<'image-orientation'>"
353
- | "<'image-rendering'>"
354
- | "<'image-resolution'>"
355
- | "<'ime-mode'>"
356
- | "<'initial-letter'>"
357
- | "<'initial-letter-align'>"
358
- | "<'inline-size'>"
359
- | "<'input-security'>"
360
- | "<'inset'>"
361
- | "<'inset-block'>"
362
- | "<'inset-block-end'>"
363
- | "<'inset-block-start'>"
364
- | "<'inset-inline'>"
365
- | "<'inset-inline-end'>"
366
- | "<'inset-inline-start'>"
367
- | "<'isolation'>"
368
- | "<'justify-content'>"
369
- | "<'justify-items'>"
370
- | "<'justify-self'>"
371
- | "<'justify-tracks'>"
372
- | "<'kerning'>"
373
- | "<'left'>"
374
- | "<'letter-spacing'>"
375
- | "<'line-break'>"
376
- | "<'line-clamp'>"
377
- | "<'line-height'>"
378
- | "<'line-height-step'>"
379
- | "<'list-style'>"
380
- | "<'list-style-image'>"
381
- | "<'list-style-position'>"
382
- | "<'list-style-type'>"
383
- | "<'margin'>"
384
- | "<'margin-block'>"
385
- | "<'margin-block-end'>"
386
- | "<'margin-block-start'>"
387
- | "<'margin-bottom'>"
388
- | "<'margin-inline'>"
389
- | "<'margin-inline-end'>"
390
- | "<'margin-inline-start'>"
391
- | "<'margin-left'>"
392
- | "<'margin-right'>"
393
- | "<'margin-top'>"
394
- | "<'margin-trim'>"
395
- | "<'marker'>"
396
- | "<'marker-end'>"
397
- | "<'marker-mid'>"
398
- | "<'marker-start'>"
399
- | "<'mask'>"
400
- | "<'mask-border'>"
401
- | "<'mask-border-mode'>"
402
- | "<'mask-border-outset'>"
403
- | "<'mask-border-repeat'>"
404
- | "<'mask-border-slice'>"
405
- | "<'mask-border-source'>"
406
- | "<'mask-border-width'>"
407
- | "<'mask-clip'>"
408
- | "<'mask-composite'>"
409
- | "<'mask-image'>"
410
- | "<'mask-mode'>"
411
- | "<'mask-origin'>"
412
- | "<'mask-position'>"
413
- | "<'mask-repeat'>"
414
- | "<'mask-size'>"
415
- | "<'mask-type'>"
416
- | "<'masonry-auto-flow'>"
417
- | "<'math-depth'>"
418
- | "<'math-shift'>"
419
- | "<'math-style'>"
420
- | "<'max-block-size'>"
421
- | "<'max-height'>"
422
- | "<'max-inline-size'>"
423
- | "<'max-lines'>"
424
- | "<'max-width'>"
425
- | "<'min-block-size'>"
426
- | "<'min-height'>"
427
- | "<'min-inline-size'>"
428
- | "<'min-width'>"
429
- | "<'mix-blend-mode'>"
430
- | "<'object-fit'>"
431
- | "<'object-position'>"
432
- | "<'offset'>"
433
- | "<'offset-anchor'>"
434
- | "<'offset-distance'>"
435
- | "<'offset-path'>"
436
- | "<'offset-position'>"
437
- | "<'offset-rotate'>"
438
- | "<'opacity'>"
439
- | "<'order'>"
440
- | "<'orphans'>"
441
- | "<'outline'>"
442
- | "<'outline-color'>"
443
- | "<'outline-offset'>"
444
- | "<'outline-style'>"
445
- | "<'outline-width'>"
446
- | "<'overflow'>"
447
- | "<'overflow-anchor'>"
448
- | "<'overflow-block'>"
449
- | "<'overflow-clip-box'>"
450
- | "<'overflow-clip-margin'>"
451
- | "<'overflow-inline'>"
452
- | "<'overflow-wrap'>"
453
- | "<'overflow-x'>"
454
- | "<'overflow-y'>"
455
- | "<'overscroll-behavior'>"
456
- | "<'overscroll-behavior-block'>"
457
- | "<'overscroll-behavior-inline'>"
458
- | "<'overscroll-behavior-x'>"
459
- | "<'overscroll-behavior-y'>"
460
- | "<'padding'>"
461
- | "<'padding-block'>"
462
- | "<'padding-block-end'>"
463
- | "<'padding-block-start'>"
464
- | "<'padding-bottom'>"
465
- | "<'padding-inline'>"
466
- | "<'padding-inline-end'>"
467
- | "<'padding-inline-start'>"
468
- | "<'padding-left'>"
469
- | "<'padding-right'>"
470
- | "<'padding-top'>"
471
- | "<'page-break-after'>"
472
- | "<'page-break-before'>"
473
- | "<'page-break-inside'>"
474
- | "<'paint-order'>"
475
- | "<'pause'>"
476
- | "<'pause-after'>"
477
- | "<'pause-before'>"
478
- | "<'perspective'>"
479
- | "<'perspective-origin'>"
480
- | "<'place-content'>"
481
- | "<'place-items'>"
482
- | "<'place-self'>"
483
- | "<'pointer-events'>"
484
- | "<'position'>"
485
- | "<'print-color-adjust'>"
486
- | "<'quotes'>"
487
- | "<'resize'>"
488
- | "<'rest'>"
489
- | "<'rest-after'>"
490
- | "<'rest-before'>"
491
- | "<'right'>"
492
- | "<'rotate'>"
493
- | "<'row-gap'>"
494
- | "<'ruby-align'>"
495
- | "<'ruby-merge'>"
496
- | "<'ruby-position'>"
497
- | "<'scale'>"
498
- | "<'scroll-behavior'>"
499
- | "<'scroll-margin'>"
500
- | "<'scroll-margin-block'>"
501
- | "<'scroll-margin-block-end'>"
502
- | "<'scroll-margin-block-start'>"
503
- | "<'scroll-margin-bottom'>"
504
- | "<'scroll-margin-inline'>"
505
- | "<'scroll-margin-inline-end'>"
506
- | "<'scroll-margin-inline-start'>"
507
- | "<'scroll-margin-left'>"
508
- | "<'scroll-margin-right'>"
509
- | "<'scroll-margin-top'>"
510
- | "<'scroll-padding'>"
511
- | "<'scroll-padding-block'>"
512
- | "<'scroll-padding-block-end'>"
513
- | "<'scroll-padding-block-start'>"
514
- | "<'scroll-padding-bottom'>"
515
- | "<'scroll-padding-inline'>"
516
- | "<'scroll-padding-inline-end'>"
517
- | "<'scroll-padding-inline-start'>"
518
- | "<'scroll-padding-left'>"
519
- | "<'scroll-padding-right'>"
520
- | "<'scroll-padding-top'>"
521
- | "<'scroll-snap-align'>"
522
- | "<'scroll-snap-coordinate'>"
523
- | "<'scroll-snap-destination'>"
524
- | "<'scroll-snap-points-x'>"
525
- | "<'scroll-snap-points-y'>"
526
- | "<'scroll-snap-stop'>"
527
- | "<'scroll-snap-type'>"
528
- | "<'scroll-snap-type-x'>"
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'>"
536
- | "<'shape-image-threshold'>"
537
- | "<'shape-margin'>"
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'>"
551
- | "<'tab-size'>"
552
- | "<'table-layout'>"
553
- | "<'text-align'>"
554
- | "<'text-align-last'>"
555
- | "<'text-anchor'>"
556
- | "<'text-combine-upright'>"
557
- | "<'text-decoration'>"
558
- | "<'text-decoration-color'>"
559
- | "<'text-decoration-line'>"
560
- | "<'text-decoration-skip'>"
561
- | "<'text-decoration-skip-ink'>"
562
- | "<'text-decoration-style'>"
563
- | "<'text-decoration-thickness'>"
564
- | "<'text-emphasis'>"
565
- | "<'text-emphasis-color'>"
566
- | "<'text-emphasis-position'>"
567
- | "<'text-emphasis-style'>"
568
- | "<'text-indent'>"
569
- | "<'text-justify'>"
570
- | "<'text-orientation'>"
571
- | "<'text-overflow'>"
572
- | "<'text-rendering'>"
573
- | "<'text-shadow'>"
574
- | "<'text-size-adjust'>"
575
- | "<'text-transform'>"
576
- | "<'text-underline-offset'>"
577
- | "<'text-underline-position'>"
578
- | "<'top'>"
579
- | "<'touch-action'>"
580
- | "<'transform'>"
581
- | "<'transform-box'>"
582
- | "<'transform-origin'>"
583
- | "<'transform-style'>"
584
- | "<'transition'>"
585
- | "<'transition-delay'>"
586
- | "<'transition-duration'>"
587
- | "<'transition-property'>"
588
- | "<'transition-timing-function'>"
589
- | "<'translate'>"
590
- | "<'unicode-bidi'>"
591
- | "<'unicode-range'>"
592
- | "<'user-select'>"
593
- | "<'vertical-align'>"
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'>"
603
- | "<'white-space'>"
604
- | "<'widows'>"
605
- | "<'width'>"
606
- | "<'will-change'>"
607
- | "<'word-break'>"
608
- | "<'word-spacing'>"
609
- | "<'word-wrap'>"
610
- | "<'writing-mode'>"
611
- | "<'z-index'>"
612
- | "<'zoom'>"
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>'
675
- | '<baseline-position>'
676
- | '<basic-shape>'
677
- | '<bcp-47>'
678
- | '<bg-clip>'
679
- | '<bg-image>'
680
- | '<bg-layer>'
681
- | '<bg-position>'
682
- | '<bg-size>'
683
- | '<blend-mode>'
684
- | '<blur()>'
685
- | '<bottom>'
686
- | '<box>'
687
- | '<brightness()>'
688
- | '<calc()>'
689
- | '<calc-constant>'
690
- | '<calc-product>'
691
- | '<calc-sum>'
692
- | '<calc-value>'
693
- | '<cf-final-image>'
694
- | '<cf-mixing-image>'
695
- | '<circle()>'
696
- | '<clamp()>'
697
- | '<class-selector>'
698
- | '<clip-source>'
699
- | '<colon-token>'
700
- | '<color-stop-angle>'
701
- | '<color-stop-length>'
702
- | '<color-stop-list>'
703
- | '<color-stop>'
704
- | '<color>'
705
- | '<combinator>'
706
- | '<comma-token>'
707
- | '<common-lig-values>'
708
- | '<compat-auto>'
709
- | '<complex-selector-list>'
710
- | '<complex-selector>'
711
- | '<composite-style>'
712
- | '<compositing-operator>'
713
- | '<compound-selector-list>'
714
- | '<compound-selector>'
715
- | '<conic-gradient()>'
716
- | '<content-distribution>'
717
- | '<content-list>'
718
- | '<content-position>'
719
- | '<content-replacement>'
720
- | '<contextual-alt-values>'
721
- | '<contrast()>'
722
- | '<cos()>'
723
- | '<counter()>'
724
- | '<counter-name>'
725
- | '<counter-style-name>'
726
- | '<counter-style>'
727
- | '<counter>'
728
- | '<counters()>'
729
- | '<cross-fade()>'
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>'
738
- | '<deprecated-system-color>'
739
- | '<dimension-token>'
740
- | '<dimension>'
741
- | '<discretionary-lig-values>'
742
- | '<display-box>'
743
- | '<display-inside>'
744
- | '<display-internal>'
745
- | '<display-legacy>'
746
- | '<display-listitem>'
747
- | '<display-outside>'
748
- | '<drop-shadow()>'
749
- | '<easing-function>'
750
- | '<east-asian-variant-values>'
751
- | '<east-asian-width-values>'
752
- | '<element()>'
753
- | '<ellipse()>'
754
- | '<ending-shape>'
755
- | '<env()>'
756
- | '<exp()>'
757
- | '<explicit-track-list>'
758
- | '<family-name>'
759
- | '<feature-tag-value>'
760
- | '<feature-type>'
761
- | '<feature-value-block-list>'
762
- | '<feature-value-block>'
763
- | '<feature-value-declaration-list>'
764
- | '<feature-value-declaration>'
765
- | '<feature-value-name>'
766
- | '<fill-rule>'
767
- | '<filter-function-list>'
768
- | '<filter-function>'
769
- | '<final-bg-layer>'
770
- | '<fixed-breadth>'
771
- | '<fixed-repeat>'
772
- | '<fixed-size>'
773
- | '<flex>'
774
- | '<font-stretch-absolute>'
775
- | '<font-variant-css21>'
776
- | '<font-weight-absolute>'
777
- | '<frequency-percentage>'
778
- | '<frequency>'
779
- | '<function-token>'
780
- | '<gender>'
781
- | '<general-enclosed>'
782
- | '<generic-family>'
783
- | '<generic-name>'
784
- | '<generic-voice>'
785
- | '<geometry-box>'
786
- | '<gradient>'
787
- | '<grayscale()>'
788
- | '<grid-line>'
789
- | '<hash-token>'
790
- | '<hex-color>'
791
- | '<historical-lig-values>'
792
- | '<hsl()>'
793
- | '<hsla()>'
794
- | '<hue-rotate()>'
795
- | '<hue>'
796
- | '<hwb()>'
797
- | '<hypot()>'
798
- | '<id-selector>'
799
- | '<ident-token>'
800
- | '<ident>'
801
- | '<image()>'
802
- | '<image-set()>'
803
- | '<image-set-option>'
804
- | '<image-src>'
805
- | '<image-tags>'
806
- | '<image>'
807
- | '<inflexible-breadth>'
808
- | '<inset()>'
809
- | '<integer>'
810
- | '<invert()>'
811
- | '<keyframe-block-list>'
812
- | '<keyframe-block>'
813
- | '<keyframe-selector>'
814
- | '<keyframes-name>'
815
- | '<lab()>'
816
- | '<layer()>'
817
- | '<layer-name>'
818
- | '<lch()>'
819
- | '<leader()>'
820
- | '<leader-type>'
821
- | '<left>'
822
- | '<length-percentage>'
823
- | '<length>'
824
- | '<line-name-list>'
825
- | '<line-names>'
826
- | '<line-style>'
827
- | '<line-width>'
828
- | '<linear-color-hint>'
829
- | '<linear-color-stop>'
830
- | '<linear-gradient()>'
831
- | '<log()>'
832
- | '<mask-image>'
833
- | '<mask-layer>'
834
- | '<mask-position>'
835
- | '<mask-reference>'
836
- | '<mask-source>'
837
- | '<masking-mode>'
838
- | '<matrix()>'
839
- | '<matrix3d()>'
840
- | '<max()>'
841
- | '<media-and>'
842
- | '<media-condition-without-or>'
843
- | '<media-condition>'
844
- | '<media-feature>'
845
- | '<media-in-parens>'
846
- | '<media-not>'
847
- | '<media-or>'
848
- | '<media-query-list>'
849
- | '<media-query>'
850
- | '<media-type>'
851
- | '<mf-boolean>'
852
- | '<mf-name>'
853
- | '<mf-plain>'
854
- | '<mf-range>'
855
- | '<mf-value>'
856
- | '<min()>'
857
- | '<minmax()>'
858
- | '<mod()>'
859
- | '<name-repeat>'
860
- | '<named-color>'
861
- | '<namespace-prefix>'
862
- | '<ns-prefix>'
863
- | '<nth>'
864
- | '<number-one-or-greater>'
865
- | '<number-percentage>'
866
- | '<number-token>'
867
- | '<number-zero-one>'
868
- | '<number>'
869
- | '<numeric-figure-values>'
870
- | '<numeric-fraction-values>'
871
- | '<numeric-spacing-values>'
872
- | '<opacity()>'
873
- | '<outline-radius>'
874
- | '<overflow-position>'
875
- | '<page-body>'
876
- | '<page-margin-box-type>'
877
- | '<page-margin-box>'
878
- | '<page-selector-list>'
879
- | '<page-selector>'
880
- | '<page-size>'
881
- | '<paint()>'
882
- | '<paint>'
883
- | '<path()>'
884
- | '<percentage-token>'
885
- | '<percentage>'
886
- | '<perspective()>'
887
- | '<polygon()>'
888
- | '<position>'
889
- | '<pow()>'
890
- | '<pseudo-class-selector>'
891
- | '<pseudo-element-selector>'
892
- | '<pseudo-page>'
893
- | '<quote>'
894
- | '<radial-gradient()>'
895
- | '<ratio>'
896
- | '<relative-selector-list>'
897
- | '<relative-selector>'
898
- | '<relative-size>'
899
- | '<rem()>'
900
- | '<repeat-style>'
901
- | '<repeating-conic-gradient()>'
902
- | '<repeating-linear-gradient()>'
903
- | '<repeating-radial-gradient()>'
904
- | '<resolution>'
905
- | '<reversed-counter-name>'
906
- | '<rgb()>'
907
- | '<rgba()>'
908
- | '<right>'
909
- | '<rotate()>'
910
- | '<rotate3d()>'
911
- | '<rotateX()>'
912
- | '<rotateY()>'
913
- | '<rotateZ()>'
914
- | '<round()>'
915
- | '<rounding-strategy>'
916
- | '<saturate()>'
917
- | '<scale()>'
918
- | '<scale3d()>'
919
- | '<scaleX()>'
920
- | '<scaleY()>'
921
- | '<scaleZ()>'
922
- | '<scroll-timeline-axis>'
923
- | '<scroll-timeline-name>'
924
- | '<scroller>'
925
- | '<self-position>'
926
- | '<semicolon-token>'
927
- | '<semitones>'
928
- | '<sepia()>'
929
- | '<shadow-t>'
930
- | '<shadow>'
931
- | '<shape-box>'
932
- | '<shape-radius>'
933
- | '<shape>'
934
- | '<side-or-corner>'
935
- | '<sign()>'
936
- | '<sin()>'
937
- | '<single-animation-composition>'
938
- | '<single-animation-direction>'
939
- | '<single-animation-fill-mode>'
940
- | '<single-animation-iteration-count>'
941
- | '<single-animation-play-state>'
942
- | '<single-animation-timeline>'
943
- | '<single-animation>'
944
- | '<single-transition-property>'
945
- | '<single-transition>'
946
- | '<size>'
947
- | '<skew()>'
948
- | '<skewX()>'
949
- | '<skewY()>'
950
- | '<sqrt()>'
951
- | '<step-position>'
952
- | '<step-timing-function>'
953
- | '<string-token>'
954
- | '<string>'
955
- | '<subclass-selector>'
956
- | '<supports-condition>'
957
- | '<supports-decl>'
958
- | '<supports-feature>'
959
- | '<supports-in-parens>'
960
- | '<supports-selector-fn>'
961
- | '<svg-length>'
962
- | '<svg-writing-mode>'
963
- | '<symbol>'
964
- | '<tan()>'
965
- | '<target-counter()>'
966
- | '<target-counters()>'
967
- | '<target-text()>'
968
- | '<target>'
969
- | '<time-percentage>'
970
- | '<time>'
971
- | '<timeline-name>'
972
- | '<top>'
973
- | '<track-breadth>'
974
- | '<track-list>'
975
- | '<track-repeat>'
976
- | '<track-size>'
977
- | '<transform-function>'
978
- | '<transform-list>'
979
- | '<translate()>'
980
- | '<translate3d()>'
981
- | '<translateX()>'
982
- | '<translateY()>'
983
- | '<translateZ()>'
984
- | '<type-or-unit>'
985
- | '<type-selector>'
986
- | '<urange>'
987
- | '<url-modifier>'
988
- | '<url-token>'
989
- | '<url>'
990
- | '<var()>'
991
- | '<viewport-length>'
992
- | '<visual-box>'
993
- | '<whitespace-token>'
994
- | '<wq-name>'
995
- | '<x>'
996
- | '<y>'
997
- | '<zero>'
998
- | '<{-token>'
999
- | '<}-token>';
1000
- export type ExtendedType =
1001
- | "<'color-profile'>"
1002
- | "<'color-rendering'>"
1003
- | "<'enable-background'>"
1004
- | '<animatable-value>'
1005
- | '<begin-value-list>'
1006
- | '<class-list>'
1007
- | '<clock-value>'
1008
- | '<color-matrix>'
1009
- | '<css-declaration-list>'
1010
- | '<dasharray>'
1011
- | '<end-value-list>'
1012
- | '<key-points>'
1013
- | '<key-splines>'
1014
- | '<key-times>'
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>'
1021
- | '<origin>'
1022
- | '<points>'
1023
- | '<preserve-aspect-ratio>'
1024
- | '<rotate>'
1025
- | '<svg-font-size-adjust>'
1026
- | '<svg-font-size>'
1027
- | '<svg-path>'
1028
- | '<system-language>'
1029
- | '<text-coordinate>'
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';
8
+ export type CssSyntax = "<'--*'>" | "<'-moz-appearance'>" | "<'-moz-background-clip'>" | "<'-moz-binding'>" | "<'-moz-border-bottom-colors'>" | "<'-moz-border-left-colors'>" | "<'-moz-border-radius-bottomleft'>" | "<'-moz-border-radius-bottomright'>" | "<'-moz-border-radius-topleft'>" | "<'-moz-border-radius-topright'>" | "<'-moz-border-right-colors'>" | "<'-moz-border-top-colors'>" | "<'-moz-context-properties'>" | "<'-moz-control-character-visibility'>" | "<'-moz-float-edge'>" | "<'-moz-force-broken-image-icon'>" | "<'-moz-image-region'>" | "<'-moz-orient'>" | "<'-moz-osx-font-smoothing'>" | "<'-moz-outline-radius'>" | "<'-moz-outline-radius-bottomleft'>" | "<'-moz-outline-radius-bottomright'>" | "<'-moz-outline-radius-topleft'>" | "<'-moz-outline-radius-topright'>" | "<'-moz-stack-sizing'>" | "<'-moz-text-blink'>" | "<'-moz-user-focus'>" | "<'-moz-user-input'>" | "<'-moz-user-modify'>" | "<'-moz-user-select'>" | "<'-moz-window-dragging'>" | "<'-moz-window-shadow'>" | "<'-ms-accelerator'>" | "<'-ms-block-progression'>" | "<'-ms-content-zoom-chaining'>" | "<'-ms-content-zoom-limit'>" | "<'-ms-content-zoom-limit-max'>" | "<'-ms-content-zoom-limit-min'>" | "<'-ms-content-zoom-snap'>" | "<'-ms-content-zoom-snap-points'>" | "<'-ms-content-zoom-snap-type'>" | "<'-ms-content-zooming'>" | "<'-ms-filter'>" | "<'-ms-flex-align'>" | "<'-ms-flex-item-align'>" | "<'-ms-flex-line-pack'>" | "<'-ms-flex-negative'>" | "<'-ms-flex-order'>" | "<'-ms-flex-pack'>" | "<'-ms-flex-positive'>" | "<'-ms-flex-preferred-size'>" | "<'-ms-flow-from'>" | "<'-ms-flow-into'>" | "<'-ms-grid-column-align'>" | "<'-ms-grid-columns'>" | "<'-ms-grid-row-align'>" | "<'-ms-grid-rows'>" | "<'-ms-high-contrast-adjust'>" | "<'-ms-hyphenate-limit-chars'>" | "<'-ms-hyphenate-limit-last'>" | "<'-ms-hyphenate-limit-lines'>" | "<'-ms-hyphenate-limit-zone'>" | "<'-ms-ime-align'>" | "<'-ms-interpolation-mode'>" | "<'-ms-overflow-style'>" | "<'-ms-scroll-chaining'>" | "<'-ms-scroll-limit'>" | "<'-ms-scroll-limit-x-max'>" | "<'-ms-scroll-limit-x-min'>" | "<'-ms-scroll-limit-y-max'>" | "<'-ms-scroll-limit-y-min'>" | "<'-ms-scroll-rails'>" | "<'-ms-scroll-snap-points-x'>" | "<'-ms-scroll-snap-points-y'>" | "<'-ms-scroll-snap-type'>" | "<'-ms-scroll-snap-x'>" | "<'-ms-scroll-snap-y'>" | "<'-ms-scroll-translation'>" | "<'-ms-scrollbar-3dlight-color'>" | "<'-ms-scrollbar-arrow-color'>" | "<'-ms-scrollbar-base-color'>" | "<'-ms-scrollbar-darkshadow-color'>" | "<'-ms-scrollbar-face-color'>" | "<'-ms-scrollbar-highlight-color'>" | "<'-ms-scrollbar-shadow-color'>" | "<'-ms-scrollbar-track-color'>" | "<'-ms-text-autospace'>" | "<'-ms-touch-select'>" | "<'-ms-user-select'>" | "<'-ms-wrap-flow'>" | "<'-ms-wrap-margin'>" | "<'-ms-wrap-through'>" | "<'-webkit-appearance'>" | "<'-webkit-background-clip'>" | "<'-webkit-border-before'>" | "<'-webkit-border-before-color'>" | "<'-webkit-border-before-style'>" | "<'-webkit-border-before-width'>" | "<'-webkit-box-reflect'>" | "<'-webkit-column-break-after'>" | "<'-webkit-column-break-before'>" | "<'-webkit-column-break-inside'>" | "<'-webkit-font-smoothing'>" | "<'-webkit-line-clamp'>" | "<'-webkit-mask'>" | "<'-webkit-mask-attachment'>" | "<'-webkit-mask-box-image'>" | "<'-webkit-mask-clip'>" | "<'-webkit-mask-composite'>" | "<'-webkit-mask-image'>" | "<'-webkit-mask-origin'>" | "<'-webkit-mask-position'>" | "<'-webkit-mask-position-x'>" | "<'-webkit-mask-position-y'>" | "<'-webkit-mask-repeat'>" | "<'-webkit-mask-repeat-x'>" | "<'-webkit-mask-repeat-y'>" | "<'-webkit-mask-size'>" | "<'-webkit-overflow-scrolling'>" | "<'-webkit-print-color-adjust'>" | "<'-webkit-tap-highlight-color'>" | "<'-webkit-text-fill-color'>" | "<'-webkit-text-security'>" | "<'-webkit-text-stroke'>" | "<'-webkit-text-stroke-color'>" | "<'-webkit-text-stroke-width'>" | "<'-webkit-touch-callout'>" | "<'-webkit-user-drag'>" | "<'-webkit-user-modify'>" | "<'-webkit-user-select'>" | "<'accent-color'>" | "<'align-content'>" | "<'align-items'>" | "<'align-self'>" | "<'align-tracks'>" | "<'alignment-baseline'>" | "<'all'>" | "<'animation'>" | "<'animation-composition'>" | "<'animation-delay'>" | "<'animation-direction'>" | "<'animation-duration'>" | "<'animation-fill-mode'>" | "<'animation-iteration-count'>" | "<'animation-name'>" | "<'animation-play-state'>" | "<'animation-timeline'>" | "<'animation-timing-function'>" | "<'appearance'>" | "<'aspect-ratio'>" | "<'azimuth'>" | "<'backdrop-filter'>" | "<'backface-visibility'>" | "<'background'>" | "<'background-attachment'>" | "<'background-blend-mode'>" | "<'background-clip'>" | "<'background-color'>" | "<'background-image'>" | "<'background-origin'>" | "<'background-position'>" | "<'background-position-x'>" | "<'background-position-y'>" | "<'background-repeat'>" | "<'background-size'>" | "<'baseline-shift'>" | "<'behavior'>" | "<'block-overflow'>" | "<'block-size'>" | "<'border'>" | "<'border-block'>" | "<'border-block-color'>" | "<'border-block-end'>" | "<'border-block-end-color'>" | "<'border-block-end-style'>" | "<'border-block-end-width'>" | "<'border-block-start'>" | "<'border-block-start-color'>" | "<'border-block-start-style'>" | "<'border-block-start-width'>" | "<'border-block-style'>" | "<'border-block-width'>" | "<'border-bottom'>" | "<'border-bottom-color'>" | "<'border-bottom-left-radius'>" | "<'border-bottom-right-radius'>" | "<'border-bottom-style'>" | "<'border-bottom-width'>" | "<'border-collapse'>" | "<'border-color'>" | "<'border-end-end-radius'>" | "<'border-end-start-radius'>" | "<'border-image'>" | "<'border-image-outset'>" | "<'border-image-repeat'>" | "<'border-image-slice'>" | "<'border-image-source'>" | "<'border-image-width'>" | "<'border-inline'>" | "<'border-inline-color'>" | "<'border-inline-end'>" | "<'border-inline-end-color'>" | "<'border-inline-end-style'>" | "<'border-inline-end-width'>" | "<'border-inline-start'>" | "<'border-inline-start-color'>" | "<'border-inline-start-style'>" | "<'border-inline-start-width'>" | "<'border-inline-style'>" | "<'border-inline-width'>" | "<'border-left'>" | "<'border-left-color'>" | "<'border-left-style'>" | "<'border-left-width'>" | "<'border-radius'>" | "<'border-right'>" | "<'border-right-color'>" | "<'border-right-style'>" | "<'border-right-width'>" | "<'border-spacing'>" | "<'border-start-end-radius'>" | "<'border-start-start-radius'>" | "<'border-style'>" | "<'border-top'>" | "<'border-top-color'>" | "<'border-top-left-radius'>" | "<'border-top-right-radius'>" | "<'border-top-style'>" | "<'border-top-width'>" | "<'border-width'>" | "<'bottom'>" | "<'box-align'>" | "<'box-decoration-break'>" | "<'box-direction'>" | "<'box-flex'>" | "<'box-flex-group'>" | "<'box-lines'>" | "<'box-ordinal-group'>" | "<'box-orient'>" | "<'box-pack'>" | "<'box-shadow'>" | "<'box-sizing'>" | "<'break-after'>" | "<'break-before'>" | "<'break-inside'>" | "<'caption-side'>" | "<'caret'>" | "<'caret-color'>" | "<'caret-shape'>" | "<'clear'>" | "<'clip'>" | "<'clip-path'>" | "<'clip-rule'>" | "<'color'>" | "<'color-scheme'>" | "<'column-count'>" | "<'column-fill'>" | "<'column-gap'>" | "<'column-rule'>" | "<'column-rule-color'>" | "<'column-rule-style'>" | "<'column-rule-width'>" | "<'column-span'>" | "<'column-width'>" | "<'columns'>" | "<'contain'>" | "<'contain-intrinsic-block-size'>" | "<'contain-intrinsic-height'>" | "<'contain-intrinsic-inline-size'>" | "<'contain-intrinsic-size'>" | "<'contain-intrinsic-width'>" | "<'content'>" | "<'content-visibility'>" | "<'counter-increment'>" | "<'counter-reset'>" | "<'counter-set'>" | "<'cue'>" | "<'cue-after'>" | "<'cue-before'>" | "<'cursor'>" | "<'direction'>" | "<'display'>" | "<'dominant-baseline'>" | "<'empty-cells'>" | "<'fill'>" | "<'fill-opacity'>" | "<'fill-rule'>" | "<'filter'>" | "<'flex'>" | "<'flex-basis'>" | "<'flex-direction'>" | "<'flex-flow'>" | "<'flex-grow'>" | "<'flex-shrink'>" | "<'flex-wrap'>" | "<'float'>" | "<'font'>" | "<'font-family'>" | "<'font-feature-settings'>" | "<'font-kerning'>" | "<'font-language-override'>" | "<'font-optical-sizing'>" | "<'font-size'>" | "<'font-size-adjust'>" | "<'font-smooth'>" | "<'font-stretch'>" | "<'font-style'>" | "<'font-synthesis'>" | "<'font-variant'>" | "<'font-variant-alternates'>" | "<'font-variant-caps'>" | "<'font-variant-east-asian'>" | "<'font-variant-ligatures'>" | "<'font-variant-numeric'>" | "<'font-variant-position'>" | "<'font-variation-settings'>" | "<'font-weight'>" | "<'forced-color-adjust'>" | "<'gap'>" | "<'glyph-orientation-horizontal'>" | "<'glyph-orientation-vertical'>" | "<'grid'>" | "<'grid-area'>" | "<'grid-auto-columns'>" | "<'grid-auto-flow'>" | "<'grid-auto-rows'>" | "<'grid-column'>" | "<'grid-column-end'>" | "<'grid-column-gap'>" | "<'grid-column-start'>" | "<'grid-gap'>" | "<'grid-row'>" | "<'grid-row-end'>" | "<'grid-row-gap'>" | "<'grid-row-start'>" | "<'grid-template'>" | "<'grid-template-areas'>" | "<'grid-template-columns'>" | "<'grid-template-rows'>" | "<'hanging-punctuation'>" | "<'height'>" | "<'hyphenate-character'>" | "<'hyphens'>" | "<'image-orientation'>" | "<'image-rendering'>" | "<'image-resolution'>" | "<'ime-mode'>" | "<'initial-letter'>" | "<'initial-letter-align'>" | "<'inline-size'>" | "<'input-security'>" | "<'inset'>" | "<'inset-block'>" | "<'inset-block-end'>" | "<'inset-block-start'>" | "<'inset-inline'>" | "<'inset-inline-end'>" | "<'inset-inline-start'>" | "<'isolation'>" | "<'justify-content'>" | "<'justify-items'>" | "<'justify-self'>" | "<'justify-tracks'>" | "<'kerning'>" | "<'left'>" | "<'letter-spacing'>" | "<'line-break'>" | "<'line-clamp'>" | "<'line-height'>" | "<'line-height-step'>" | "<'list-style'>" | "<'list-style-image'>" | "<'list-style-position'>" | "<'list-style-type'>" | "<'margin'>" | "<'margin-block'>" | "<'margin-block-end'>" | "<'margin-block-start'>" | "<'margin-bottom'>" | "<'margin-inline'>" | "<'margin-inline-end'>" | "<'margin-inline-start'>" | "<'margin-left'>" | "<'margin-right'>" | "<'margin-top'>" | "<'margin-trim'>" | "<'marker'>" | "<'marker-end'>" | "<'marker-mid'>" | "<'marker-start'>" | "<'mask'>" | "<'mask-border'>" | "<'mask-border-mode'>" | "<'mask-border-outset'>" | "<'mask-border-repeat'>" | "<'mask-border-slice'>" | "<'mask-border-source'>" | "<'mask-border-width'>" | "<'mask-clip'>" | "<'mask-composite'>" | "<'mask-image'>" | "<'mask-mode'>" | "<'mask-origin'>" | "<'mask-position'>" | "<'mask-repeat'>" | "<'mask-size'>" | "<'mask-type'>" | "<'masonry-auto-flow'>" | "<'math-depth'>" | "<'math-shift'>" | "<'math-style'>" | "<'max-block-size'>" | "<'max-height'>" | "<'max-inline-size'>" | "<'max-lines'>" | "<'max-width'>" | "<'min-block-size'>" | "<'min-height'>" | "<'min-inline-size'>" | "<'min-width'>" | "<'mix-blend-mode'>" | "<'object-fit'>" | "<'object-position'>" | "<'offset'>" | "<'offset-anchor'>" | "<'offset-distance'>" | "<'offset-path'>" | "<'offset-position'>" | "<'offset-rotate'>" | "<'opacity'>" | "<'order'>" | "<'orphans'>" | "<'outline'>" | "<'outline-color'>" | "<'outline-offset'>" | "<'outline-style'>" | "<'outline-width'>" | "<'overflow'>" | "<'overflow-anchor'>" | "<'overflow-block'>" | "<'overflow-clip-box'>" | "<'overflow-clip-margin'>" | "<'overflow-inline'>" | "<'overflow-wrap'>" | "<'overflow-x'>" | "<'overflow-y'>" | "<'overscroll-behavior'>" | "<'overscroll-behavior-block'>" | "<'overscroll-behavior-inline'>" | "<'overscroll-behavior-x'>" | "<'overscroll-behavior-y'>" | "<'padding'>" | "<'padding-block'>" | "<'padding-block-end'>" | "<'padding-block-start'>" | "<'padding-bottom'>" | "<'padding-inline'>" | "<'padding-inline-end'>" | "<'padding-inline-start'>" | "<'padding-left'>" | "<'padding-right'>" | "<'padding-top'>" | "<'page-break-after'>" | "<'page-break-before'>" | "<'page-break-inside'>" | "<'paint-order'>" | "<'pause'>" | "<'pause-after'>" | "<'pause-before'>" | "<'perspective'>" | "<'perspective-origin'>" | "<'place-content'>" | "<'place-items'>" | "<'place-self'>" | "<'pointer-events'>" | "<'position'>" | "<'print-color-adjust'>" | "<'quotes'>" | "<'resize'>" | "<'rest'>" | "<'rest-after'>" | "<'rest-before'>" | "<'right'>" | "<'rotate'>" | "<'row-gap'>" | "<'ruby-align'>" | "<'ruby-merge'>" | "<'ruby-position'>" | "<'scale'>" | "<'scroll-behavior'>" | "<'scroll-margin'>" | "<'scroll-margin-block'>" | "<'scroll-margin-block-end'>" | "<'scroll-margin-block-start'>" | "<'scroll-margin-bottom'>" | "<'scroll-margin-inline'>" | "<'scroll-margin-inline-end'>" | "<'scroll-margin-inline-start'>" | "<'scroll-margin-left'>" | "<'scroll-margin-right'>" | "<'scroll-margin-top'>" | "<'scroll-padding'>" | "<'scroll-padding-block'>" | "<'scroll-padding-block-end'>" | "<'scroll-padding-block-start'>" | "<'scroll-padding-bottom'>" | "<'scroll-padding-inline'>" | "<'scroll-padding-inline-end'>" | "<'scroll-padding-inline-start'>" | "<'scroll-padding-left'>" | "<'scroll-padding-right'>" | "<'scroll-padding-top'>" | "<'scroll-snap-align'>" | "<'scroll-snap-coordinate'>" | "<'scroll-snap-destination'>" | "<'scroll-snap-points-x'>" | "<'scroll-snap-points-y'>" | "<'scroll-snap-stop'>" | "<'scroll-snap-type'>" | "<'scroll-snap-type-x'>" | "<'scroll-snap-type-y'>" | "<'scroll-timeline'>" | "<'scroll-timeline-axis'>" | "<'scroll-timeline-name'>" | "<'scrollbar-color'>" | "<'scrollbar-gutter'>" | "<'scrollbar-width'>" | "<'shape-image-threshold'>" | "<'shape-margin'>" | "<'shape-outside'>" | "<'shape-rendering'>" | "<'speak'>" | "<'speak-as'>" | "<'src'>" | "<'stroke'>" | "<'stroke-dasharray'>" | "<'stroke-dashoffset'>" | "<'stroke-linecap'>" | "<'stroke-linejoin'>" | "<'stroke-miterlimit'>" | "<'stroke-opacity'>" | "<'stroke-width'>" | "<'tab-size'>" | "<'table-layout'>" | "<'text-align'>" | "<'text-align-last'>" | "<'text-anchor'>" | "<'text-combine-upright'>" | "<'text-decoration'>" | "<'text-decoration-color'>" | "<'text-decoration-line'>" | "<'text-decoration-skip'>" | "<'text-decoration-skip-ink'>" | "<'text-decoration-style'>" | "<'text-decoration-thickness'>" | "<'text-emphasis'>" | "<'text-emphasis-color'>" | "<'text-emphasis-position'>" | "<'text-emphasis-style'>" | "<'text-indent'>" | "<'text-justify'>" | "<'text-orientation'>" | "<'text-overflow'>" | "<'text-rendering'>" | "<'text-shadow'>" | "<'text-size-adjust'>" | "<'text-transform'>" | "<'text-underline-offset'>" | "<'text-underline-position'>" | "<'top'>" | "<'touch-action'>" | "<'transform'>" | "<'transform-box'>" | "<'transform-origin'>" | "<'transform-style'>" | "<'transition'>" | "<'transition-delay'>" | "<'transition-duration'>" | "<'transition-property'>" | "<'transition-timing-function'>" | "<'translate'>" | "<'unicode-bidi'>" | "<'unicode-range'>" | "<'user-select'>" | "<'vertical-align'>" | "<'visibility'>" | "<'voice-balance'>" | "<'voice-duration'>" | "<'voice-family'>" | "<'voice-pitch'>" | "<'voice-range'>" | "<'voice-rate'>" | "<'voice-stress'>" | "<'voice-volume'>" | "<'white-space'>" | "<'widows'>" | "<'width'>" | "<'will-change'>" | "<'word-break'>" | "<'word-spacing'>" | "<'word-wrap'>" | "<'writing-mode'>" | "<'z-index'>" | "<'zoom'>" | '<(-token>' | '<)-token>' | '<-legacy-gradient>' | '<-legacy-linear-gradient-arguments>' | '<-legacy-linear-gradient>' | '<-legacy-radial-gradient-arguments>' | '<-legacy-radial-gradient-shape>' | '<-legacy-radial-gradient-size>' | '<-legacy-radial-gradient>' | '<-legacy-repeating-linear-gradient>' | '<-legacy-repeating-radial-gradient>' | '<-ms-filter-function-legacy>' | '<-ms-filter-function-list>' | '<-ms-filter-function-progid>' | '<-ms-filter-function>' | '<-ms-filter>' | '<-non-standard-color>' | '<-non-standard-display>' | '<-non-standard-font>' | '<-non-standard-image-rendering>' | '<-non-standard-overflow>' | '<-non-standard-width>' | '<-webkit-gradient()>' | '<-webkit-gradient-color-stop>' | '<-webkit-gradient-point>' | '<-webkit-gradient-radius>' | '<-webkit-gradient-type>' | '<-webkit-mask-box-repeat>' | '<-webkit-mask-clip-style>' | '<CDC-token>' | '<CDO-token>' | '<[-token>' | '<]-token>' | '<abs()>' | '<absolute-size>' | '<acos()>' | '<age>' | '<alpha-value>' | '<an-plus-b>' | '<angle-percentage>' | '<angle>' | '<angular-color-hint>' | '<angular-color-stop-list>' | '<angular-color-stop>' | '<animateable-feature>' | '<any-value>' | '<asin()>' | '<at-keyword-token>' | '<atan()>' | '<atan2()>' | '<attachment>' | '<attr()>' | '<attr-fallback>' | '<attr-matcher>' | '<attr-modifier>' | '<attr-name>' | '<attribute-selector>' | '<auto-repeat>' | '<auto-track-list>' | '<axis>' | '<bad-string-token>' | '<bad-url-token>' | '<baseline-position>' | '<basic-shape>' | '<bcp-47>' | '<bg-clip>' | '<bg-image>' | '<bg-layer>' | '<bg-position>' | '<bg-size>' | '<blend-mode>' | '<blur()>' | '<bottom>' | '<box>' | '<brightness()>' | '<calc()>' | '<calc-constant>' | '<calc-product>' | '<calc-sum>' | '<calc-value>' | '<cf-final-image>' | '<cf-mixing-image>' | '<circle()>' | '<clamp()>' | '<class-selector>' | '<clip-source>' | '<colon-token>' | '<color-stop-angle>' | '<color-stop-length>' | '<color-stop-list>' | '<color-stop>' | '<color>' | '<combinator>' | '<comma-token>' | '<common-lig-values>' | '<compat-auto>' | '<complex-selector-list>' | '<complex-selector>' | '<composite-style>' | '<compositing-operator>' | '<compound-selector-list>' | '<compound-selector>' | '<conic-gradient()>' | '<content-distribution>' | '<content-list>' | '<content-position>' | '<content-replacement>' | '<contextual-alt-values>' | '<contrast()>' | '<cos()>' | '<counter()>' | '<counter-name>' | '<counter-style-name>' | '<counter-style>' | '<counter>' | '<counters()>' | '<cross-fade()>' | '<cubic-bezier-timing-function>' | '<custom-ident>' | '<custom-property-name>' | '<decibel>' | '<declaration-list>' | '<declaration-value>' | '<declaration>' | '<delim-token>' | '<deprecated-system-color>' | '<dimension-token>' | '<dimension>' | '<discretionary-lig-values>' | '<display-box>' | '<display-inside>' | '<display-internal>' | '<display-legacy>' | '<display-listitem>' | '<display-outside>' | '<drop-shadow()>' | '<easing-function>' | '<east-asian-variant-values>' | '<east-asian-width-values>' | '<element()>' | '<ellipse()>' | '<ending-shape>' | '<env()>' | '<exp()>' | '<explicit-track-list>' | '<family-name>' | '<feature-tag-value>' | '<feature-type>' | '<feature-value-block-list>' | '<feature-value-block>' | '<feature-value-declaration-list>' | '<feature-value-declaration>' | '<feature-value-name>' | '<fill-rule>' | '<filter-function-list>' | '<filter-function>' | '<final-bg-layer>' | '<fixed-breadth>' | '<fixed-repeat>' | '<fixed-size>' | '<flex>' | '<font-stretch-absolute>' | '<font-variant-css21>' | '<font-weight-absolute>' | '<frequency-percentage>' | '<frequency>' | '<function-token>' | '<gender>' | '<general-enclosed>' | '<generic-family>' | '<generic-name>' | '<generic-voice>' | '<geometry-box>' | '<gradient>' | '<grayscale()>' | '<grid-line>' | '<hash-token>' | '<hex-color>' | '<historical-lig-values>' | '<hsl()>' | '<hsla()>' | '<hue-rotate()>' | '<hue>' | '<hwb()>' | '<hypot()>' | '<id-selector>' | '<ident-token>' | '<ident>' | '<image()>' | '<image-set()>' | '<image-set-option>' | '<image-src>' | '<image-tags>' | '<image>' | '<inflexible-breadth>' | '<inset()>' | '<integer>' | '<invert()>' | '<keyframe-block-list>' | '<keyframe-block>' | '<keyframe-selector>' | '<keyframes-name>' | '<lab()>' | '<layer()>' | '<layer-name>' | '<lch()>' | '<leader()>' | '<leader-type>' | '<left>' | '<length-percentage>' | '<length>' | '<line-name-list>' | '<line-names>' | '<line-style>' | '<line-width>' | '<linear-color-hint>' | '<linear-color-stop>' | '<linear-gradient()>' | '<log()>' | '<mask-image>' | '<mask-layer>' | '<mask-position>' | '<mask-reference>' | '<mask-source>' | '<masking-mode>' | '<matrix()>' | '<matrix3d()>' | '<max()>' | '<media-and>' | '<media-condition-without-or>' | '<media-condition>' | '<media-feature>' | '<media-in-parens>' | '<media-not>' | '<media-or>' | '<media-query-list>' | '<media-query>' | '<media-type>' | '<mf-boolean>' | '<mf-name>' | '<mf-plain>' | '<mf-range>' | '<mf-value>' | '<min()>' | '<minmax()>' | '<mod()>' | '<name-repeat>' | '<named-color>' | '<namespace-prefix>' | '<ns-prefix>' | '<nth>' | '<number-one-or-greater>' | '<number-percentage>' | '<number-token>' | '<number-zero-one>' | '<number>' | '<numeric-figure-values>' | '<numeric-fraction-values>' | '<numeric-spacing-values>' | '<opacity()>' | '<outline-radius>' | '<overflow-position>' | '<page-body>' | '<page-margin-box-type>' | '<page-margin-box>' | '<page-selector-list>' | '<page-selector>' | '<page-size>' | '<paint()>' | '<paint>' | '<path()>' | '<percentage-token>' | '<percentage>' | '<perspective()>' | '<polygon()>' | '<position>' | '<pow()>' | '<pseudo-class-selector>' | '<pseudo-element-selector>' | '<pseudo-page>' | '<quote>' | '<radial-gradient()>' | '<ratio>' | '<relative-selector-list>' | '<relative-selector>' | '<relative-size>' | '<rem()>' | '<repeat-style>' | '<repeating-conic-gradient()>' | '<repeating-linear-gradient()>' | '<repeating-radial-gradient()>' | '<resolution>' | '<reversed-counter-name>' | '<rgb()>' | '<rgba()>' | '<right>' | '<rotate()>' | '<rotate3d()>' | '<rotateX()>' | '<rotateY()>' | '<rotateZ()>' | '<round()>' | '<rounding-strategy>' | '<saturate()>' | '<scale()>' | '<scale3d()>' | '<scaleX()>' | '<scaleY()>' | '<scaleZ()>' | '<scroll-timeline-axis>' | '<scroll-timeline-name>' | '<scroller>' | '<self-position>' | '<semicolon-token>' | '<semitones>' | '<sepia()>' | '<shadow-t>' | '<shadow>' | '<shape-box>' | '<shape-radius>' | '<shape>' | '<side-or-corner>' | '<sign()>' | '<sin()>' | '<single-animation-composition>' | '<single-animation-direction>' | '<single-animation-fill-mode>' | '<single-animation-iteration-count>' | '<single-animation-play-state>' | '<single-animation-timeline>' | '<single-animation>' | '<single-transition-property>' | '<single-transition>' | '<size>' | '<skew()>' | '<skewX()>' | '<skewY()>' | '<sqrt()>' | '<step-position>' | '<step-timing-function>' | '<string-token>' | '<string>' | '<subclass-selector>' | '<supports-condition>' | '<supports-decl>' | '<supports-feature>' | '<supports-in-parens>' | '<supports-selector-fn>' | '<svg-length>' | '<svg-writing-mode>' | '<symbol>' | '<tan()>' | '<target-counter()>' | '<target-counters()>' | '<target-text()>' | '<target>' | '<time-percentage>' | '<time>' | '<timeline-name>' | '<top>' | '<track-breadth>' | '<track-list>' | '<track-repeat>' | '<track-size>' | '<transform-function>' | '<transform-list>' | '<translate()>' | '<translate3d()>' | '<translateX()>' | '<translateY()>' | '<translateZ()>' | '<type-or-unit>' | '<type-selector>' | '<urange>' | '<url-modifier>' | '<url-token>' | '<url>' | '<var()>' | '<viewport-length>' | '<visual-box>' | '<whitespace-token>' | '<wq-name>' | '<x>' | '<y>' | '<zero>' | '<{-token>' | '<}-token>';
9
+ export type ExtendedType = "<'color-profile'>" | "<'color-rendering'>" | "<'enable-background'>" | '<animatable-value>' | '<begin-value-list>' | '<class-list>' | '<clock-value>' | '<color-matrix>' | '<css-declaration-list>' | '<dasharray>' | '<end-value-list>' | '<key-points>' | '<key-splines>' | '<key-times>' | '<list-of-lengths>' | '<list-of-numbers>' | '<list-of-percentages>' | '<list-of-svg-feature-string>' | '<list-of-value>' | '<number-optional-number>' | '<origin>' | '<points>' | '<preserve-aspect-ratio>' | '<rotate>' | '<svg-font-size-adjust>' | '<svg-font-size>' | '<svg-path>' | '<system-language>' | '<text-coordinate>' | '<view-box>' | 'AbsoluteURL' | 'Accept' | 'Any' | 'AutoComplete' | 'BCP47' | 'BrowsingContextName' | 'BrowsingContextNameOrKeyword' | 'CustomElementName' | 'DOMID' | 'DateTime' | 'FunctionBody' | 'HTTPSchemaURL' | 'HashName' | 'IconSize' | 'Int' | 'ItemProp' | 'MIMEType' | 'NoEmptyAny' | 'Number' | 'OneCodePointChar' | 'OneLineAny' | 'Pattern' | 'SerializedPermissionsPolicy' | 'SourceSizeList' | 'Srcset' | 'TabIndex' | 'URL' | 'Uint' | 'XMLName' | 'Zero';
1061
10
  export type HtmlAttrRequirement = 'Boolean';
1062
11
  export interface TypesSchema {
1063
- type?: Type;
12
+ type?: Type;
1064
13
  }
1065
14
  /**
1066
15
  * - [Space-separated tokens](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#space-separated-tokens)
1067
16
  * - [Comma-separated tokens](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#comma-separated-tokens)
1068
17
  */
1069
18
  export interface List {
1070
- token: ExtendedType | Enum;
1071
- disallowToSurroundBySpaces?: boolean;
1072
- allowEmpty?: boolean;
1073
- ordered?: boolean;
1074
- unique?: boolean;
1075
- caseInsensitive?: boolean;
1076
- number?:
1077
- | ('zeroOrMore' | 'oneOrMore')
1078
- | {
1079
- min: number;
1080
- max: number;
1081
- };
1082
- separator: 'space' | 'comma';
19
+ token: ExtendedType | Enum;
20
+ disallowToSurroundBySpaces?: boolean;
21
+ allowEmpty?: boolean;
22
+ ordered?: boolean;
23
+ unique?: boolean;
24
+ caseInsensitive?: boolean;
25
+ number?: ('zeroOrMore' | 'oneOrMore') | {
26
+ min: number;
27
+ max: number;
28
+ };
29
+ separator: 'space' | 'comma';
1083
30
  }
1084
31
  /**
1085
32
  * [Enumerated attributes](https://html.spec.whatwg.org/multipage/common-microsyntaxes.html#enumerated-attribute)
1086
33
  */
1087
34
  export interface Enum {
1088
- /**
1089
- * @minItems 1
1090
- */
1091
- enum: [string, ...string[]];
1092
- disallowToSurroundBySpaces?: boolean;
1093
- caseInsensitive?: boolean;
1094
- invalidValueDefault?: string;
1095
- missingValueDefault?: string;
1096
- sameStates?: {
1097
- [k: string]: unknown;
1098
- };
35
+ /**
36
+ * @minItems 1
37
+ */
38
+ enum: [string, ...string[]];
39
+ disallowToSurroundBySpaces?: boolean;
40
+ caseInsensitive?: boolean;
41
+ invalidValueDefault?: string;
42
+ missingValueDefault?: string;
43
+ sameStates?: {
44
+ [k: string]: unknown;
45
+ };
1099
46
  }
1100
47
  /**
1101
48
  * [Numbers](https://html.spec.whatwg.org/dev/common-microsyntaxes.html#numbers)
1102
49
  */
1103
50
  export interface Number {
1104
- type: 'float' | 'integer';
1105
- gt?: number;
1106
- gte?: number;
1107
- lt?: number;
1108
- lte?: number;
1109
- clampable?: boolean;
51
+ type: 'float' | 'integer';
52
+ gt?: number;
53
+ gte?: number;
54
+ lt?: number;
55
+ lte?: number;
56
+ clampable?: boolean;
1110
57
  }