@vue/runtime-dom 3.5.24 → 3.5.25

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.5.24
2
+ * @vue/runtime-dom v3.5.25
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1860,6 +1860,8 @@ exports.defineCustomElement = defineCustomElement;
1860
1860
  exports.defineSSRCustomElement = defineSSRCustomElement;
1861
1861
  exports.hydrate = hydrate;
1862
1862
  exports.initDirectivesForSSR = initDirectivesForSSR;
1863
+ exports.nodeOps = nodeOps;
1864
+ exports.patchProp = patchProp;
1863
1865
  exports.render = render;
1864
1866
  exports.useCssModule = useCssModule;
1865
1867
  exports.useCssVars = useCssVars;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-dom v3.5.24
2
+ * @vue/runtime-dom v3.5.25
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1712,6 +1712,8 @@ exports.defineCustomElement = defineCustomElement;
1712
1712
  exports.defineSSRCustomElement = defineSSRCustomElement;
1713
1713
  exports.hydrate = hydrate;
1714
1714
  exports.initDirectivesForSSR = initDirectivesForSSR;
1715
+ exports.nodeOps = nodeOps;
1716
+ exports.patchProp = patchProp;
1715
1717
  exports.render = render;
1716
1718
  exports.useCssModule = useCssModule;
1717
1719
  exports.useCssVars = useCssVars;
@@ -1,7 +1,12 @@
1
- import { BaseTransitionProps, FunctionalComponent, ObjectDirective, Directive, SetupContext, RenderFunction, ComponentOptions, App, ComponentCustomElementInterface, ConcreteComponent, CreateAppFunction, ComponentObjectPropsOptions, EmitsOptions, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentInjectOptions, SlotsType, Component, ComponentProvideOptions, ExtractPropTypes, EmitsToProps, ComponentOptionsBase, CreateComponentPublicInstanceWithMixins, ComponentPublicInstance, DefineComponent, VNodeRef, RootRenderFunction, RootHydrateFunction } from '@vue/runtime-core';
1
+ import { RendererOptions, BaseTransitionProps, FunctionalComponent, ObjectDirective, Directive, SetupContext, RenderFunction, ComponentOptions, App, ComponentCustomElementInterface, ConcreteComponent, CreateAppFunction, ComponentObjectPropsOptions, EmitsOptions, ComputedOptions, MethodOptions, ComponentOptionsMixin, ComponentInjectOptions, SlotsType, Component, ComponentProvideOptions, ExtractPropTypes, EmitsToProps, ComponentOptionsBase, CreateComponentPublicInstanceWithMixins, ComponentPublicInstance, DefineComponent, VNodeRef, RootRenderFunction, RootHydrateFunction } from '@vue/runtime-core';
2
2
  export * from '@vue/runtime-core';
3
3
  import * as CSS from 'csstype';
4
4
 
5
+ export declare const nodeOps: Omit<RendererOptions<Node, Element>, 'patchProp'>;
6
+
7
+ type DOMRendererOptions = RendererOptions<Node, Element>;
8
+ export declare const patchProp: DOMRendererOptions['patchProp'];
9
+
5
10
  declare const TRANSITION = "transition";
6
11
  declare const ANIMATION = "animation";
7
12
  type AnimationTypes = typeof TRANSITION | typeof ANIMATION;
@@ -395,6 +400,11 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
395
400
  contextmenu?: string | undefined;
396
401
  dir?: string | undefined;
397
402
  draggable?: Booleanish | undefined;
403
+ enterkeyhint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
404
+ /**
405
+ * @deprecated Use `enterkeyhint` instead.
406
+ */
407
+ enterKeyHint?: HTMLAttributes['enterkeyhint'];
398
408
  hidden?: Booleanish | '' | 'hidden' | 'until-found' | undefined;
399
409
  id?: string | undefined;
400
410
  inert?: Booleanish | undefined;
@@ -436,6 +446,14 @@ export interface HTMLAttributes extends AriaAttributes, EventHandlers<Events> {
436
446
  * @see https://html.spec.whatwg.org/multipage/custom-elements.html#attr-is
437
447
  */
438
448
  is?: string | undefined;
449
+ /**
450
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/exportparts
451
+ */
452
+ exportparts?: string;
453
+ /**
454
+ * @see https://developer.mozilla.org/en-US/docs/Web/HTML/Global_attributes/part
455
+ */
456
+ part?: string;
439
457
  }
440
458
  type HTMLAttributeReferrerPolicy = '' | 'no-referrer' | 'no-referrer-when-downgrade' | 'origin' | 'origin-when-cross-origin' | 'same-origin' | 'strict-origin' | 'strict-origin-when-cross-origin' | 'unsafe-url';
441
459
  export interface AnchorHTMLAttributes extends HTMLAttributes {
@@ -560,6 +578,7 @@ export interface ImgHTMLAttributes extends HTMLAttributes {
560
578
  alt?: string | undefined;
561
579
  crossorigin?: 'anonymous' | 'use-credentials' | '' | undefined;
562
580
  decoding?: 'async' | 'auto' | 'sync' | undefined;
581
+ fetchpriority?: 'high' | 'low' | 'auto' | undefined;
563
582
  height?: Numberish | undefined;
564
583
  loading?: 'eager' | 'lazy' | undefined;
565
584
  referrerpolicy?: HTMLAttributeReferrerPolicy | undefined;
@@ -583,7 +602,6 @@ export interface InputHTMLAttributes extends HTMLAttributes {
583
602
  checked?: Booleanish | any[] | Set<any> | undefined;
584
603
  crossorigin?: string | undefined;
585
604
  disabled?: Booleanish | undefined;
586
- enterKeyHint?: 'enter' | 'done' | 'go' | 'next' | 'previous' | 'search' | 'send' | undefined;
587
605
  form?: string | undefined;
588
606
  formaction?: string | undefined;
589
607
  formenctype?: string | undefined;
@@ -1257,6 +1275,7 @@ export interface IntrinsicElementAttributes {
1257
1275
  polyline: SVGAttributes;
1258
1276
  radialGradient: SVGAttributes;
1259
1277
  rect: SVGAttributes;
1278
+ set: SVGAttributes;
1260
1279
  stop: SVGAttributes;
1261
1280
  switch: SVGAttributes;
1262
1281
  symbol: SVGAttributes;