@vue/runtime-dom 3.5.18 → 3.5.19
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 +16 -16
- package/dist/runtime-dom.cjs.prod.js +16 -16
- package/dist/runtime-dom.esm-browser.js +63 -61
- package/dist/runtime-dom.esm-browser.prod.js +3 -3
- package/dist/runtime-dom.esm-bundler.js +17 -17
- package/dist/runtime-dom.global.js +63 -61
- package/dist/runtime-dom.global.prod.js +3 -3
- package/package.json +4 -4
package/dist/runtime-dom.cjs.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-dom v3.5.
|
|
2
|
+
* @vue/runtime-dom v3.5.19
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -777,10 +777,10 @@ function defineCustomElement(options, extraOptions, _createApp) {
|
|
|
777
777
|
VueCustomElement.def = Comp;
|
|
778
778
|
return VueCustomElement;
|
|
779
779
|
}
|
|
780
|
-
|
|
781
|
-
const defineSSRCustomElement = /* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
780
|
+
|
|
781
|
+
const defineSSRCustomElement = (/* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
782
782
|
return /* @__PURE__ */ defineCustomElement(options, extraOptions, createSSRApp);
|
|
783
|
-
};
|
|
783
|
+
});
|
|
784
784
|
const BaseClass = typeof HTMLElement !== "undefined" ? HTMLElement : class {
|
|
785
785
|
};
|
|
786
786
|
class VueElement extends BaseClass {
|
|
@@ -1641,13 +1641,13 @@ const modifierGuards = {
|
|
|
1641
1641
|
const withModifiers = (fn, modifiers) => {
|
|
1642
1642
|
const cache = fn._withMods || (fn._withMods = {});
|
|
1643
1643
|
const cacheKey = modifiers.join(".");
|
|
1644
|
-
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
|
|
1644
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
|
|
1645
1645
|
for (let i = 0; i < modifiers.length; i++) {
|
|
1646
1646
|
const guard = modifierGuards[modifiers[i]];
|
|
1647
1647
|
if (guard && guard(event, modifiers)) return;
|
|
1648
1648
|
}
|
|
1649
1649
|
return fn(event, ...args);
|
|
1650
|
-
});
|
|
1650
|
+
}));
|
|
1651
1651
|
};
|
|
1652
1652
|
const keyNames = {
|
|
1653
1653
|
esc: "escape",
|
|
@@ -1661,7 +1661,7 @@ const keyNames = {
|
|
|
1661
1661
|
const withKeys = (fn, modifiers) => {
|
|
1662
1662
|
const cache = fn._withKeys || (fn._withKeys = {});
|
|
1663
1663
|
const cacheKey = modifiers.join(".");
|
|
1664
|
-
return cache[cacheKey] || (cache[cacheKey] = (event) => {
|
|
1664
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event) => {
|
|
1665
1665
|
if (!("key" in event)) {
|
|
1666
1666
|
return;
|
|
1667
1667
|
}
|
|
@@ -1671,7 +1671,7 @@ const withKeys = (fn, modifiers) => {
|
|
|
1671
1671
|
)) {
|
|
1672
1672
|
return fn(event);
|
|
1673
1673
|
}
|
|
1674
|
-
});
|
|
1674
|
+
}));
|
|
1675
1675
|
};
|
|
1676
1676
|
|
|
1677
1677
|
const rendererOptions = /* @__PURE__ */ shared.extend({ patchProp }, nodeOps);
|
|
@@ -1685,13 +1685,13 @@ function ensureHydrationRenderer() {
|
|
|
1685
1685
|
enabledHydration = true;
|
|
1686
1686
|
return renderer;
|
|
1687
1687
|
}
|
|
1688
|
-
const render = (...args) => {
|
|
1688
|
+
const render = ((...args) => {
|
|
1689
1689
|
ensureRenderer().render(...args);
|
|
1690
|
-
};
|
|
1691
|
-
const hydrate = (...args) => {
|
|
1690
|
+
});
|
|
1691
|
+
const hydrate = ((...args) => {
|
|
1692
1692
|
ensureHydrationRenderer().hydrate(...args);
|
|
1693
|
-
};
|
|
1694
|
-
const createApp = (...args) => {
|
|
1693
|
+
});
|
|
1694
|
+
const createApp = ((...args) => {
|
|
1695
1695
|
const app = ensureRenderer().createApp(...args);
|
|
1696
1696
|
{
|
|
1697
1697
|
injectNativeTagCheck(app);
|
|
@@ -1716,8 +1716,8 @@ const createApp = (...args) => {
|
|
|
1716
1716
|
return proxy;
|
|
1717
1717
|
};
|
|
1718
1718
|
return app;
|
|
1719
|
-
};
|
|
1720
|
-
const createSSRApp = (...args) => {
|
|
1719
|
+
});
|
|
1720
|
+
const createSSRApp = ((...args) => {
|
|
1721
1721
|
const app = ensureHydrationRenderer().createApp(...args);
|
|
1722
1722
|
{
|
|
1723
1723
|
injectNativeTagCheck(app);
|
|
@@ -1731,7 +1731,7 @@ const createSSRApp = (...args) => {
|
|
|
1731
1731
|
}
|
|
1732
1732
|
};
|
|
1733
1733
|
return app;
|
|
1734
|
-
};
|
|
1734
|
+
});
|
|
1735
1735
|
function resolveRootNamespace(container) {
|
|
1736
1736
|
if (container instanceof SVGElement) {
|
|
1737
1737
|
return "svg";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-dom v3.5.
|
|
2
|
+
* @vue/runtime-dom v3.5.19
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -746,10 +746,10 @@ function defineCustomElement(options, extraOptions, _createApp) {
|
|
|
746
746
|
VueCustomElement.def = Comp;
|
|
747
747
|
return VueCustomElement;
|
|
748
748
|
}
|
|
749
|
-
|
|
750
|
-
const defineSSRCustomElement = /* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
749
|
+
|
|
750
|
+
const defineSSRCustomElement = (/* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
751
751
|
return /* @__PURE__ */ defineCustomElement(options, extraOptions, createSSRApp);
|
|
752
|
-
};
|
|
752
|
+
});
|
|
753
753
|
const BaseClass = typeof HTMLElement !== "undefined" ? HTMLElement : class {
|
|
754
754
|
};
|
|
755
755
|
class VueElement extends BaseClass {
|
|
@@ -1543,13 +1543,13 @@ const modifierGuards = {
|
|
|
1543
1543
|
const withModifiers = (fn, modifiers) => {
|
|
1544
1544
|
const cache = fn._withMods || (fn._withMods = {});
|
|
1545
1545
|
const cacheKey = modifiers.join(".");
|
|
1546
|
-
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
|
|
1546
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
|
|
1547
1547
|
for (let i = 0; i < modifiers.length; i++) {
|
|
1548
1548
|
const guard = modifierGuards[modifiers[i]];
|
|
1549
1549
|
if (guard && guard(event, modifiers)) return;
|
|
1550
1550
|
}
|
|
1551
1551
|
return fn(event, ...args);
|
|
1552
|
-
});
|
|
1552
|
+
}));
|
|
1553
1553
|
};
|
|
1554
1554
|
const keyNames = {
|
|
1555
1555
|
esc: "escape",
|
|
@@ -1563,7 +1563,7 @@ const keyNames = {
|
|
|
1563
1563
|
const withKeys = (fn, modifiers) => {
|
|
1564
1564
|
const cache = fn._withKeys || (fn._withKeys = {});
|
|
1565
1565
|
const cacheKey = modifiers.join(".");
|
|
1566
|
-
return cache[cacheKey] || (cache[cacheKey] = (event) => {
|
|
1566
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event) => {
|
|
1567
1567
|
if (!("key" in event)) {
|
|
1568
1568
|
return;
|
|
1569
1569
|
}
|
|
@@ -1573,7 +1573,7 @@ const withKeys = (fn, modifiers) => {
|
|
|
1573
1573
|
)) {
|
|
1574
1574
|
return fn(event);
|
|
1575
1575
|
}
|
|
1576
|
-
});
|
|
1576
|
+
}));
|
|
1577
1577
|
};
|
|
1578
1578
|
|
|
1579
1579
|
const rendererOptions = /* @__PURE__ */ shared.extend({ patchProp }, nodeOps);
|
|
@@ -1587,13 +1587,13 @@ function ensureHydrationRenderer() {
|
|
|
1587
1587
|
enabledHydration = true;
|
|
1588
1588
|
return renderer;
|
|
1589
1589
|
}
|
|
1590
|
-
const render = (...args) => {
|
|
1590
|
+
const render = ((...args) => {
|
|
1591
1591
|
ensureRenderer().render(...args);
|
|
1592
|
-
};
|
|
1593
|
-
const hydrate = (...args) => {
|
|
1592
|
+
});
|
|
1593
|
+
const hydrate = ((...args) => {
|
|
1594
1594
|
ensureHydrationRenderer().hydrate(...args);
|
|
1595
|
-
};
|
|
1596
|
-
const createApp = (...args) => {
|
|
1595
|
+
});
|
|
1596
|
+
const createApp = ((...args) => {
|
|
1597
1597
|
const app = ensureRenderer().createApp(...args);
|
|
1598
1598
|
const { mount } = app;
|
|
1599
1599
|
app.mount = (containerOrSelector) => {
|
|
@@ -1614,8 +1614,8 @@ const createApp = (...args) => {
|
|
|
1614
1614
|
return proxy;
|
|
1615
1615
|
};
|
|
1616
1616
|
return app;
|
|
1617
|
-
};
|
|
1618
|
-
const createSSRApp = (...args) => {
|
|
1617
|
+
});
|
|
1618
|
+
const createSSRApp = ((...args) => {
|
|
1619
1619
|
const app = ensureHydrationRenderer().createApp(...args);
|
|
1620
1620
|
const { mount } = app;
|
|
1621
1621
|
app.mount = (containerOrSelector) => {
|
|
@@ -1625,7 +1625,7 @@ const createSSRApp = (...args) => {
|
|
|
1625
1625
|
}
|
|
1626
1626
|
};
|
|
1627
1627
|
return app;
|
|
1628
|
-
};
|
|
1628
|
+
});
|
|
1629
1629
|
function resolveRootNamespace(container) {
|
|
1630
1630
|
if (container instanceof SVGElement) {
|
|
1631
1631
|
return "svg";
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* @vue/runtime-dom v3.5.
|
|
2
|
+
* @vue/runtime-dom v3.5.19
|
|
3
3
|
* (c) 2018-present Yuxi (Evan) You and Vue contributors
|
|
4
4
|
* @license MIT
|
|
5
5
|
**/
|
|
@@ -56,10 +56,10 @@ const isBuiltInDirective = /* @__PURE__ */ makeMap(
|
|
|
56
56
|
);
|
|
57
57
|
const cacheStringFunction = (fn) => {
|
|
58
58
|
const cache = /* @__PURE__ */ Object.create(null);
|
|
59
|
-
return (str) => {
|
|
59
|
+
return ((str) => {
|
|
60
60
|
const hit = cache[str];
|
|
61
61
|
return hit || (cache[str] = fn(str));
|
|
62
|
-
};
|
|
62
|
+
});
|
|
63
63
|
};
|
|
64
64
|
const camelizeRE = /-(\w)/g;
|
|
65
65
|
const camelize = cacheStringFunction(
|
|
@@ -1292,7 +1292,13 @@ class MutableReactiveHandler extends BaseReactiveHandler {
|
|
|
1292
1292
|
}
|
|
1293
1293
|
if (!isArray(target) && isRef(oldValue) && !isRef(value)) {
|
|
1294
1294
|
if (isOldValueReadonly) {
|
|
1295
|
-
|
|
1295
|
+
{
|
|
1296
|
+
warn$2(
|
|
1297
|
+
`Set operation on key "${String(key)}" failed: target is readonly.`,
|
|
1298
|
+
target[key]
|
|
1299
|
+
);
|
|
1300
|
+
}
|
|
1301
|
+
return true;
|
|
1296
1302
|
} else {
|
|
1297
1303
|
oldValue.value = value;
|
|
1298
1304
|
return true;
|
|
@@ -2659,7 +2665,9 @@ function rerender(id, newRender) {
|
|
|
2659
2665
|
}
|
|
2660
2666
|
instance.renderCache = [];
|
|
2661
2667
|
isHmrUpdating = true;
|
|
2662
|
-
instance.
|
|
2668
|
+
if (!(instance.job.flags & 8)) {
|
|
2669
|
+
instance.update();
|
|
2670
|
+
}
|
|
2663
2671
|
isHmrUpdating = false;
|
|
2664
2672
|
});
|
|
2665
2673
|
}
|
|
@@ -3720,7 +3728,7 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
3720
3728
|
const refs = owner.refs === EMPTY_OBJ ? owner.refs = {} : owner.refs;
|
|
3721
3729
|
const setupState = owner.setupState;
|
|
3722
3730
|
const rawSetupState = toRaw(setupState);
|
|
3723
|
-
const canSetSetupRef = setupState === EMPTY_OBJ ?
|
|
3731
|
+
const canSetSetupRef = setupState === EMPTY_OBJ ? NO : (key) => {
|
|
3724
3732
|
{
|
|
3725
3733
|
if (hasOwn(rawSetupState, key) && !isRef(rawSetupState[key])) {
|
|
3726
3734
|
warn$1(
|
|
@@ -3733,6 +3741,9 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
3733
3741
|
}
|
|
3734
3742
|
return hasOwn(rawSetupState, key);
|
|
3735
3743
|
};
|
|
3744
|
+
const canSetRef = (ref2) => {
|
|
3745
|
+
return !knownTemplateRefs.has(ref2);
|
|
3746
|
+
};
|
|
3736
3747
|
if (oldRef != null && oldRef !== ref) {
|
|
3737
3748
|
if (isString(oldRef)) {
|
|
3738
3749
|
refs[oldRef] = null;
|
|
@@ -3740,7 +3751,11 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
3740
3751
|
setupState[oldRef] = null;
|
|
3741
3752
|
}
|
|
3742
3753
|
} else if (isRef(oldRef)) {
|
|
3743
|
-
oldRef
|
|
3754
|
+
if (canSetRef(oldRef)) {
|
|
3755
|
+
oldRef.value = null;
|
|
3756
|
+
}
|
|
3757
|
+
const oldRawRefAtom = oldRawRef;
|
|
3758
|
+
if (oldRawRefAtom.k) refs[oldRawRefAtom.k] = null;
|
|
3744
3759
|
}
|
|
3745
3760
|
}
|
|
3746
3761
|
if (isFunction(ref)) {
|
|
@@ -3751,7 +3766,7 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
3751
3766
|
if (_isString || _isRef) {
|
|
3752
3767
|
const doSet = () => {
|
|
3753
3768
|
if (rawRef.f) {
|
|
3754
|
-
const existing = _isString ? canSetSetupRef(ref) ? setupState[ref] : refs[ref] : ref.value;
|
|
3769
|
+
const existing = _isString ? canSetSetupRef(ref) ? setupState[ref] : refs[ref] : canSetRef(ref) || !rawRef.k ? ref.value : refs[rawRef.k];
|
|
3755
3770
|
if (isUnmount) {
|
|
3756
3771
|
isArray(existing) && remove(existing, refValue);
|
|
3757
3772
|
} else {
|
|
@@ -3762,8 +3777,11 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
3762
3777
|
setupState[ref] = refs[ref];
|
|
3763
3778
|
}
|
|
3764
3779
|
} else {
|
|
3765
|
-
|
|
3766
|
-
if (
|
|
3780
|
+
const newVal = [refValue];
|
|
3781
|
+
if (canSetRef(ref)) {
|
|
3782
|
+
ref.value = newVal;
|
|
3783
|
+
}
|
|
3784
|
+
if (rawRef.k) refs[rawRef.k] = newVal;
|
|
3767
3785
|
}
|
|
3768
3786
|
} else if (!existing.includes(refValue)) {
|
|
3769
3787
|
existing.push(refValue);
|
|
@@ -3775,7 +3793,9 @@ function setRef(rawRef, oldRawRef, parentSuspense, vnode, isUnmount = false) {
|
|
|
3775
3793
|
setupState[ref] = value;
|
|
3776
3794
|
}
|
|
3777
3795
|
} else if (_isRef) {
|
|
3778
|
-
ref
|
|
3796
|
+
if (canSetRef(ref)) {
|
|
3797
|
+
ref.value = value;
|
|
3798
|
+
}
|
|
3779
3799
|
if (rawRef.k) refs[rawRef.k] = value;
|
|
3780
3800
|
} else {
|
|
3781
3801
|
warn$1("Invalid template ref type:", ref, `(${typeof ref})`);
|
|
@@ -5344,10 +5364,10 @@ const PublicInstanceProxyHandlers = {
|
|
|
5344
5364
|
return true;
|
|
5345
5365
|
},
|
|
5346
5366
|
has({
|
|
5347
|
-
_: { data, setupState, accessCache, ctx, appContext, propsOptions }
|
|
5367
|
+
_: { data, setupState, accessCache, ctx, appContext, propsOptions, type }
|
|
5348
5368
|
}, key) {
|
|
5349
|
-
let normalizedProps;
|
|
5350
|
-
return !!accessCache[key] || data !== EMPTY_OBJ && hasOwn(data, key) || hasSetupBinding(setupState, key) || (normalizedProps = propsOptions[0]) && hasOwn(normalizedProps, key) || hasOwn(ctx, key) || hasOwn(publicPropertiesMap, key) || hasOwn(appContext.config.globalProperties, key);
|
|
5369
|
+
let normalizedProps, cssModules;
|
|
5370
|
+
return !!(accessCache[key] || data !== EMPTY_OBJ && key[0] !== "$" && hasOwn(data, key) || hasSetupBinding(setupState, key) || (normalizedProps = propsOptions[0]) && hasOwn(normalizedProps, key) || hasOwn(ctx, key) || hasOwn(publicPropertiesMap, key) || hasOwn(appContext.config.globalProperties, key) || (cssModules = type.__cssModules) && cssModules[key]);
|
|
5351
5371
|
},
|
|
5352
5372
|
defineProperty(target, key, descriptor) {
|
|
5353
5373
|
if (descriptor.get != null) {
|
|
@@ -6624,7 +6644,7 @@ function isBoolean(...args) {
|
|
|
6624
6644
|
return args.some((elem) => elem.toLowerCase() === "boolean");
|
|
6625
6645
|
}
|
|
6626
6646
|
|
|
6627
|
-
const isInternalKey = (key) => key === "_" || key === "
|
|
6647
|
+
const isInternalKey = (key) => key === "_" || key === "_ctx" || key === "$stable";
|
|
6628
6648
|
const normalizeSlotValue = (value) => isArray(value) ? value.map(normalizeVNode) : [normalizeVNode(value)];
|
|
6629
6649
|
const normalizeSlot = (key, rawSlot, ctx) => {
|
|
6630
6650
|
if (rawSlot._n) {
|
|
@@ -6678,8 +6698,6 @@ const assignSlots = (slots, children, optimized) => {
|
|
|
6678
6698
|
const initSlots = (instance, children, optimized) => {
|
|
6679
6699
|
const slots = instance.slots = createInternalObject();
|
|
6680
6700
|
if (instance.vnode.shapeFlag & 32) {
|
|
6681
|
-
const cacheIndexes = children.__;
|
|
6682
|
-
if (cacheIndexes) def(slots, "__", cacheIndexes, true);
|
|
6683
6701
|
const type = children._;
|
|
6684
6702
|
if (type) {
|
|
6685
6703
|
assignSlots(slots, children, optimized);
|
|
@@ -6740,12 +6758,10 @@ function endMeasure(instance, type) {
|
|
|
6740
6758
|
if (instance.appContext.config.performance && isSupported()) {
|
|
6741
6759
|
const startTag = `vue-${type}-${instance.uid}`;
|
|
6742
6760
|
const endTag = startTag + `:end`;
|
|
6761
|
+
const measureName = `<${formatComponentName(instance, instance.type)}> ${type}`;
|
|
6743
6762
|
perf.mark(endTag);
|
|
6744
|
-
perf.measure(
|
|
6745
|
-
|
|
6746
|
-
startTag,
|
|
6747
|
-
endTag
|
|
6748
|
-
);
|
|
6763
|
+
perf.measure(measureName, startTag, endTag);
|
|
6764
|
+
perf.clearMeasures(measureName);
|
|
6749
6765
|
perf.clearMarks(startTag);
|
|
6750
6766
|
perf.clearMarks(endTag);
|
|
6751
6767
|
}
|
|
@@ -7937,6 +7953,12 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
7937
7953
|
}
|
|
7938
7954
|
};
|
|
7939
7955
|
const performLeave = () => {
|
|
7956
|
+
if (el._isLeaving) {
|
|
7957
|
+
el[leaveCbKey](
|
|
7958
|
+
true
|
|
7959
|
+
/* cancelled */
|
|
7960
|
+
);
|
|
7961
|
+
}
|
|
7940
7962
|
leave(el, () => {
|
|
7941
7963
|
remove2();
|
|
7942
7964
|
afterLeave && afterLeave();
|
|
@@ -8082,27 +8104,12 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
8082
8104
|
if (instance.type.__hmrId) {
|
|
8083
8105
|
unregisterHMR(instance);
|
|
8084
8106
|
}
|
|
8085
|
-
const {
|
|
8086
|
-
bum,
|
|
8087
|
-
scope,
|
|
8088
|
-
job,
|
|
8089
|
-
subTree,
|
|
8090
|
-
um,
|
|
8091
|
-
m,
|
|
8092
|
-
a,
|
|
8093
|
-
parent,
|
|
8094
|
-
slots: { __: slotCacheKeys }
|
|
8095
|
-
} = instance;
|
|
8107
|
+
const { bum, scope, job, subTree, um, m, a } = instance;
|
|
8096
8108
|
invalidateMount(m);
|
|
8097
8109
|
invalidateMount(a);
|
|
8098
8110
|
if (bum) {
|
|
8099
8111
|
invokeArrayFns(bum);
|
|
8100
8112
|
}
|
|
8101
|
-
if (parent && isArray(slotCacheKeys)) {
|
|
8102
|
-
slotCacheKeys.forEach((v) => {
|
|
8103
|
-
parent.renderCache[v] = void 0;
|
|
8104
|
-
});
|
|
8105
|
-
}
|
|
8106
8113
|
scope.stop();
|
|
8107
8114
|
if (job) {
|
|
8108
8115
|
job.flags |= 8;
|
|
@@ -8114,12 +8121,6 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
8114
8121
|
queuePostRenderEffect(() => {
|
|
8115
8122
|
instance.isUnmounted = true;
|
|
8116
8123
|
}, parentSuspense);
|
|
8117
|
-
if (parentSuspense && parentSuspense.pendingBranch && !parentSuspense.isUnmounted && instance.asyncDep && !instance.asyncResolved && instance.suspenseId === parentSuspense.pendingId) {
|
|
8118
|
-
parentSuspense.deps--;
|
|
8119
|
-
if (parentSuspense.deps === 0) {
|
|
8120
|
-
parentSuspense.resolve();
|
|
8121
|
-
}
|
|
8122
|
-
}
|
|
8123
8124
|
{
|
|
8124
8125
|
devtoolsComponentRemoved(instance);
|
|
8125
8126
|
}
|
|
@@ -8220,7 +8221,8 @@ function traverseStaticChildren(n1, n2, shallow = false) {
|
|
|
8220
8221
|
if (!shallow && c2.patchFlag !== -2)
|
|
8221
8222
|
traverseStaticChildren(c1, c2);
|
|
8222
8223
|
}
|
|
8223
|
-
if (c2.type === Text
|
|
8224
|
+
if (c2.type === Text && // avoid cached text nodes retaining detached dom nodes
|
|
8225
|
+
c2.patchFlag !== -1) {
|
|
8224
8226
|
c2.el = c1.el;
|
|
8225
8227
|
}
|
|
8226
8228
|
if (c2.type === Comment && !c2.el) {
|
|
@@ -10557,7 +10559,7 @@ function isMemoSame(cached, memo) {
|
|
|
10557
10559
|
return true;
|
|
10558
10560
|
}
|
|
10559
10561
|
|
|
10560
|
-
const version = "3.5.
|
|
10562
|
+
const version = "3.5.19";
|
|
10561
10563
|
const warn = warn$1 ;
|
|
10562
10564
|
const ErrorTypeStrings = ErrorTypeStrings$1 ;
|
|
10563
10565
|
const devtools = devtools$1 ;
|
|
@@ -11414,10 +11416,10 @@ function defineCustomElement(options, extraOptions, _createApp) {
|
|
|
11414
11416
|
VueCustomElement.def = Comp;
|
|
11415
11417
|
return VueCustomElement;
|
|
11416
11418
|
}
|
|
11417
|
-
|
|
11418
|
-
const defineSSRCustomElement = /* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
11419
|
+
|
|
11420
|
+
const defineSSRCustomElement = (/* @__NO_SIDE_EFFECTS__ */ (options, extraOptions) => {
|
|
11419
11421
|
return /* @__PURE__ */ defineCustomElement(options, extraOptions, createSSRApp);
|
|
11420
|
-
};
|
|
11422
|
+
});
|
|
11421
11423
|
const BaseClass = typeof HTMLElement !== "undefined" ? HTMLElement : class {
|
|
11422
11424
|
};
|
|
11423
11425
|
class VueElement extends BaseClass {
|
|
@@ -12278,13 +12280,13 @@ const modifierGuards = {
|
|
|
12278
12280
|
const withModifiers = (fn, modifiers) => {
|
|
12279
12281
|
const cache = fn._withMods || (fn._withMods = {});
|
|
12280
12282
|
const cacheKey = modifiers.join(".");
|
|
12281
|
-
return cache[cacheKey] || (cache[cacheKey] = (event, ...args) => {
|
|
12283
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event, ...args) => {
|
|
12282
12284
|
for (let i = 0; i < modifiers.length; i++) {
|
|
12283
12285
|
const guard = modifierGuards[modifiers[i]];
|
|
12284
12286
|
if (guard && guard(event, modifiers)) return;
|
|
12285
12287
|
}
|
|
12286
12288
|
return fn(event, ...args);
|
|
12287
|
-
});
|
|
12289
|
+
}));
|
|
12288
12290
|
};
|
|
12289
12291
|
const keyNames = {
|
|
12290
12292
|
esc: "escape",
|
|
@@ -12298,7 +12300,7 @@ const keyNames = {
|
|
|
12298
12300
|
const withKeys = (fn, modifiers) => {
|
|
12299
12301
|
const cache = fn._withKeys || (fn._withKeys = {});
|
|
12300
12302
|
const cacheKey = modifiers.join(".");
|
|
12301
|
-
return cache[cacheKey] || (cache[cacheKey] = (event) => {
|
|
12303
|
+
return cache[cacheKey] || (cache[cacheKey] = ((event) => {
|
|
12302
12304
|
if (!("key" in event)) {
|
|
12303
12305
|
return;
|
|
12304
12306
|
}
|
|
@@ -12308,7 +12310,7 @@ const withKeys = (fn, modifiers) => {
|
|
|
12308
12310
|
)) {
|
|
12309
12311
|
return fn(event);
|
|
12310
12312
|
}
|
|
12311
|
-
});
|
|
12313
|
+
}));
|
|
12312
12314
|
};
|
|
12313
12315
|
|
|
12314
12316
|
const rendererOptions = /* @__PURE__ */ extend({ patchProp }, nodeOps);
|
|
@@ -12322,13 +12324,13 @@ function ensureHydrationRenderer() {
|
|
|
12322
12324
|
enabledHydration = true;
|
|
12323
12325
|
return renderer;
|
|
12324
12326
|
}
|
|
12325
|
-
const render = (...args) => {
|
|
12327
|
+
const render = ((...args) => {
|
|
12326
12328
|
ensureRenderer().render(...args);
|
|
12327
|
-
};
|
|
12328
|
-
const hydrate = (...args) => {
|
|
12329
|
+
});
|
|
12330
|
+
const hydrate = ((...args) => {
|
|
12329
12331
|
ensureHydrationRenderer().hydrate(...args);
|
|
12330
|
-
};
|
|
12331
|
-
const createApp = (...args) => {
|
|
12332
|
+
});
|
|
12333
|
+
const createApp = ((...args) => {
|
|
12332
12334
|
const app = ensureRenderer().createApp(...args);
|
|
12333
12335
|
{
|
|
12334
12336
|
injectNativeTagCheck(app);
|
|
@@ -12353,8 +12355,8 @@ const createApp = (...args) => {
|
|
|
12353
12355
|
return proxy;
|
|
12354
12356
|
};
|
|
12355
12357
|
return app;
|
|
12356
|
-
};
|
|
12357
|
-
const createSSRApp = (...args) => {
|
|
12358
|
+
});
|
|
12359
|
+
const createSSRApp = ((...args) => {
|
|
12358
12360
|
const app = ensureHydrationRenderer().createApp(...args);
|
|
12359
12361
|
{
|
|
12360
12362
|
injectNativeTagCheck(app);
|
|
@@ -12368,7 +12370,7 @@ const createSSRApp = (...args) => {
|
|
|
12368
12370
|
}
|
|
12369
12371
|
};
|
|
12370
12372
|
return app;
|
|
12371
|
-
};
|
|
12373
|
+
});
|
|
12372
12374
|
function resolveRootNamespace(container) {
|
|
12373
12375
|
if (container instanceof SVGElement) {
|
|
12374
12376
|
return "svg";
|