@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.
- package/dist/runtime-dom.cjs.js +1 -1
- package/dist/runtime-dom.cjs.prod.js +1 -1
- package/dist/runtime-dom.d.ts +15 -1
- package/dist/runtime-dom.esm-browser.js +2743 -2687
- package/dist/runtime-dom.esm-browser.prod.js +3 -3
- package/dist/runtime-dom.esm-bundler.js +38 -26
- package/dist/runtime-dom.global.js +2691 -2635
- package/dist/runtime-dom.global.prod.js +3 -3
- package/package.json +4 -4
package/dist/runtime-dom.cjs.js
CHANGED
package/dist/runtime-dom.d.ts
CHANGED
|
@@ -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;
|