@vue/runtime-dom 3.6.0-alpha.4 → 3.6.0-alpha.5

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-dom v3.6.0-alpha.4
2
+ * @vue/runtime-dom v3.6.0-alpha.5
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-dom v3.6.0-alpha.4
2
+ * @vue/runtime-dom v3.6.0-alpha.5
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -420,6 +420,11 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
420
420
  contextmenu?: string | undefined;
421
421
  dir?: string | undefined;
422
422
  draggable?: Booleanish | undefined;
423
+ enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
424
+ /**
425
+ * @deprecated Use `enterkeyhint` instead.
426
+ */
427
+ enterKeyHint?: HTMLAttributes['enterkeyhint'];
423
428
  hidden?: Booleanish | '' | 'hidden' | 'until-found' | undefined;
424
429
  id?: string | undefined;
425
430
  inert?: Booleanish | undefined;
@@ -461,6 +466,14 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
461
466
  * @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
462
467
  */
463
468
  is?: string | undefined;
469
+ /**
470
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts
471
+ */
472
+ exportparts?: string;
473
+ /**
474
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part
475
+ */
476
+ part?: string;
464
477
  }
465
478
  type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
466
479
  export interface AnchorHTMLAttributes extends HTMLAttributes {
@@ -585,6 +598,7 @@ export interface ImgHTMLAttributes extends HTMLAttributes {
585
598
  alt?: string | undefined;
586
599
  crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined;
587
600
  decoding?: 'async' | 'auto' | 'sync' | undefined;
601
+ fetchpriority?: 'high' | 'low' | 'auto' | undefined;
588
602
  height?: Numberish | undefined;
589
603
  loading?: 'eager' | 'lazy' | undefined;
590
604
  referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
@@ -608,7 +622,6 @@ export interface InputHTMLAttributes extends HTMLAttributes {
608
622
  checked?: Booleanish | any[] | Set<any> | undefined;
609
623
  crossorigin?: string | undefined;
610
624
  disabled?: Booleanish | undefined;
611
- enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
612
625
  form?: string | undefined;
613
626
  formaction?: string | undefined;
614
627
  formenctype?: string | undefined;
@@ -1282,6 +1295,7 @@ export interface IntrinsicElementAttributes {
1282
1295
  polyline: SVGAttributes;
1283
1296
  radialGradient: SVGAttributes;
1284
1297
  rect: SVGAttributes;
1298
+ set: SVGAttributes;
1285
1299
  stop: SVGAttributes;
1286
1300
  switch: SVGAttributes;
1287
1301
  symbol: SVGAttributes;