@@ -188,17 +188,7 @@ export interface AriaAttributes {
188
188
* Indicates what notifications the user agent will trigger when the accessibility tree within a live region is modified.
189
189
* @see aria-atomic.
190
190
*/
191
- 'aria-relevant' ?:
192
- | 'additions'
193
- | 'additions removals'
194
- | 'additions text'
195
- | 'all'
196
- | 'removals'
197
- | 'removals additions'
198
- | 'removals text'
199
- | 'text'
200
- | 'text additions'
201
- | 'text removals'
191
+ 'aria-relevant' ?: 'additions' | 'additions removals' | 'additions text' | 'all' | 'removals' | 'removals additions' | 'removals text' | 'text' | 'text additions' | 'text removals'
202
192
/** Indicates that user input is required on the element before a form may be submitted. */
203
193
'aria-required' ?: Booleanish
204
194
/** Defines a human-readable, author-localized description for the role of an element. */
@@ -309,15 +299,7 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
309
299
* Hints at the type of data that might be entered by the user while editing the element or its contents
310
300
* @see https://html.spec.whatwg.org/multipage/interaction.html#input-modalities:-the-inputmode-attribute
311
301
*/
312
- inputmode ?:
313
- | 'none'
314
- | 'text'
315
- | 'tel'
316
- | 'url'
317
- | 'email'
318
- | 'numeric'
319
- | 'decimal'
320
- | 'search'
302
+ inputmode ?: 'none' | 'text' | 'tel' | 'url' | 'email' | 'numeric' | 'decimal' | 'search'
321
303
/**
322
304
* Specify that a standard HTML element should behave like a defined custom built-in element
323
305
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
@@ -524,14 +506,7 @@ export interface InputHTMLAttributes extends HTMLAttributes {
524
506
checked ?: Booleanish | any [ ] | Set < any > // for IDE v-model multi-checkbox support
525
507
crossorigin ?: string
526
508
disabled ?: Booleanish
527
- enterKeyHint ?:
528
- | 'enter'
529
- | 'done'
530
- | 'go'
531
- | 'next'
532
- | 'previous'
533
- | 'search'
534
- | 'send'
509
+ enterKeyHint ?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send'
535
510
form ?: string
536
511
formaction ?: string
537
512
formenctype ?: string
@@ -840,20 +815,7 @@ export interface SVGAttributes extends AriaAttributes, EventHandlers<Events> {
840
815
'accent-height' ?: Numberish
841
816
accumulate ?: 'none' | 'sum'
842
817
additive ?: 'replace' | 'sum'
843
- 'alignment-baseline' ?:
844
- | 'auto'
845
- | 'baseline'
846
- | 'before-edge'
847
- | 'text-before-edge'
848
- | 'middle'
849
- | 'central'
850
- | 'after-edge'
851
- | 'text-after-edge'
852
- | 'ideographic'
853
- | 'alphabetic'
854
- | 'hanging'
855
- | 'mathematical'
856
- | 'inherit'
818
+ 'alignment-baseline' ?: 'auto' | 'baseline' | 'before-edge' | 'text-before-edge' | 'middle' | 'central' | 'after-edge' | 'text-after-edge' | 'ideographic' | 'alphabetic' | 'hanging' | 'mathematical' | 'inherit'
857
819
allowReorder ?: 'no' | 'yes'
858
820
alphabetic ?: Numberish
859
821
amplitude ?: Numberish
0 commit comments