@vue/runtime-dom 3.5.24 → 3.5.26
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 +11 -9
- package/dist/runtime-dom.cjs.prod.js +11 -9
- package/dist/runtime-dom.d.ts +21 -2
- package/dist/runtime-dom.esm-browser.js +2549 -2482
- package/dist/runtime-dom.esm-browser.prod.js +3 -3
- package/dist/runtime-dom.esm-bundler.js +10 -10
- package/dist/runtime-dom.global.js +2541 -2472
- package/dist/runtime-dom.global.prod.js +3 -3
- package/package.json +5 -5
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-dom v3.5.
|
|
2
|
+
* @vue/runtime-dom v3.5.26
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -90,7 +90,7 @@ const nodeOps = {
|
|
|
90
90
|
|
|
91
91
|
const TRANSITION = "transition";
|
|
92
92
|
const ANIMATION = "animation";
|
|
93
|
-
const vtcKey = Symbol("_vtc");
|
|
93
|
+
const vtcKey = /* @__PURE__ */ Symbol("_vtc");
|
|
94
94
|
const DOMTransitionPropsValidators = {
|
|
95
95
|
name: String,
|
|
96
96
|
type: String,
|
|
@@ -383,8 +383,8 @@ function patchClass(el, value, isSVG) {
|
|
|
383
383
|
}
|
|
384
384
|
}
|
|
385
385
|
|
|
386
|
-
const vShowOriginalDisplay = Symbol("_vod");
|
|
387
|
-
const vShowHidden = Symbol("_vsh");
|
|
386
|
+
const vShowOriginalDisplay = /* @__PURE__ */ Symbol("_vod");
|
|
387
|
+
const vShowHidden = /* @__PURE__ */ Symbol("_vsh");
|
|
388
388
|
const vShow = {
|
|
389
389
|
// used for prop mismatch check during hydration
|
|
390
390
|
name: "show",
|
|
@@ -433,7 +433,7 @@ function initVShowForSSR() {
|
|
|
433
433
|
};
|
|
434
434
|
}
|
|
435
435
|
|
|
436
|
-
const CSS_VAR_TEXT = Symbol(!!(process.env.NODE_ENV !== "production") ? "CSS_VAR_TEXT" : "");
|
|
436
|
+
const CSS_VAR_TEXT = /* @__PURE__ */ Symbol(!!(process.env.NODE_ENV !== "production") ? "CSS_VAR_TEXT" : "");
|
|
437
437
|
function useCssVars(getter) {
|
|
438
438
|
const instance = getCurrentInstance();
|
|
439
439
|
if (!instance) {
|
|
@@ -683,7 +683,7 @@ function addEventListener(el, event, handler, options) {
|
|
|
683
683
|
function removeEventListener(el, event, handler, options) {
|
|
684
684
|
el.removeEventListener(event, handler, options);
|
|
685
685
|
}
|
|
686
|
-
const veiKey = Symbol("_vei");
|
|
686
|
+
const veiKey = /* @__PURE__ */ Symbol("_vei");
|
|
687
687
|
function patchEvent(el, rawName, prevValue, nextValue, instance = null) {
|
|
688
688
|
const invokers = el[veiKey] || (el[veiKey] = {});
|
|
689
689
|
const existingInvoker = invokers[rawName];
|
|
@@ -1321,8 +1321,8 @@ function useCssModule(name = "$style") {
|
|
|
1321
1321
|
|
|
1322
1322
|
const positionMap = /* @__PURE__ */ new WeakMap();
|
|
1323
1323
|
const newPositionMap = /* @__PURE__ */ new WeakMap();
|
|
1324
|
-
const moveCbKey = Symbol("_moveCb");
|
|
1325
|
-
const enterCbKey = Symbol("_enterCb");
|
|
1324
|
+
const moveCbKey = /* @__PURE__ */ Symbol("_moveCb");
|
|
1325
|
+
const enterCbKey = /* @__PURE__ */ Symbol("_enterCb");
|
|
1326
1326
|
const decorate = (t) => {
|
|
1327
1327
|
delete t.props.mode;
|
|
1328
1328
|
return t;
|
|
@@ -1475,7 +1475,7 @@ function onCompositionEnd(e) {
|
|
|
1475
1475
|
target.dispatchEvent(new Event("input"));
|
|
1476
1476
|
}
|
|
1477
1477
|
}
|
|
1478
|
-
const assignKey = Symbol("_assign");
|
|
1478
|
+
const assignKey = /* @__PURE__ */ Symbol("_assign");
|
|
1479
1479
|
function castValue(value, trim, number) {
|
|
1480
1480
|
if (trim) value = value.trim();
|
|
1481
1481
|
if (number) value = looseToNumber(value);
|
|
@@ -1916,4 +1916,4 @@ const initDirectivesForSSR = () => {
|
|
|
1916
1916
|
}
|
|
1917
1917
|
} ;
|
|
1918
1918
|
|
|
1919
|
-
export { Transition, TransitionGroup, VueElement, createApp, createSSRApp, defineCustomElement, defineSSRCustomElement, hydrate, initDirectivesForSSR, render, useCssModule, useCssVars, useHost, useShadowRoot, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, withKeys, withModifiers };
|
|
1919
|
+
export { Transition, TransitionGroup, VueElement, createApp, createSSRApp, defineCustomElement, defineSSRCustomElement, hydrate, initDirectivesForSSR, nodeOps, patchProp, render, useCssModule, useCssVars, useHost, useShadowRoot, vModelCheckbox, vModelDynamic, vModelRadio, vModelSelect, vModelText, vShow, withKeys, withModifiers };
|