File tree 1 file changed +18
-8
lines changed 1 file changed +18
-8
lines changed Original file line number Diff line number Diff line change @@ -264,6 +264,14 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
264
264
contextmenu ?: string
265
265
dir ?: string
266
266
draggable ?: Booleanish
267
+ enterKeyHint ?:
268
+ | 'enter'
269
+ | 'done'
270
+ | 'go'
271
+ | 'next'
272
+ | 'previous'
273
+ | 'search'
274
+ | 'send'
267
275
hidden ?: Booleanish | '' | 'hidden' | 'until-found'
268
276
id ?: string
269
277
inert ?: Booleanish
@@ -323,6 +331,14 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
323
331
* @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
324
332
*/
325
333
is ?: string
334
+ /**
335
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts
336
+ */
337
+ exportparts ?: string
338
+ /**
339
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part
340
+ */
341
+ part ?: string
326
342
}
327
343
328
344
type HTMLAttributeReferrerPolicy =
@@ -475,6 +491,7 @@ export interface ImgHTMLAttributes extends HTMLAttributes {
475
491
alt ?: string
476
492
crossorigin ?: 'anonymous' | 'use-credentials' | ''
477
493
decoding ?: 'async' | 'auto' | 'sync'
494
+ fetchpriority ?: 'high' | 'low' | 'auto'
478
495
height ?: Numberish
479
496
loading ?: 'eager' | 'lazy'
480
497
referrerpolicy ?: HTMLAttributeReferrerPolicy
@@ -524,14 +541,6 @@ export interface InputHTMLAttributes extends HTMLAttributes {
524
541
checked ?: Booleanish | any [ ] | Set < any > // for IDE v-model multi-checkbox support
525
542
crossorigin ?: string
526
543
disabled ?: Booleanish
527
- enterKeyHint ?:
528
- | 'enter'
529
- | 'done'
530
- | 'go'
531
- | 'next'
532
- | 'previous'
533
- | 'search'
534
- | 'send'
535
544
form ?: string
536
545
formaction ?: string
537
546
formenctype ?: string
@@ -1257,6 +1266,7 @@ export interface IntrinsicElementAttributes {
1257
1266
polyline : SVGAttributes
1258
1267
radialGradient : SVGAttributes
1259
1268
rect : SVGAttributes
1269
+ set : SVGAttributes
1260
1270
stop : SVGAttributes
1261
1271
switch : SVGAttributes
1262
1272
symbol : SVGAttributes
You can’t perform that action at this time.
0 commit comments