@cabloy/vue-runtime-core 3.5.32 → 3.5.34
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-core.cjs.js
CHANGED
|
@@ -1640,6 +1640,9 @@ const KeepAliveImpl = {
|
|
|
1640
1640
|
if (include && (!name || !matches(include, name)) || exclude && name && matches(exclude, name)) {
|
|
1641
1641
|
vnode.shapeFlag &= ~256;
|
|
1642
1642
|
current = vnode;
|
|
1643
|
+
if (current.component) {
|
|
1644
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1645
|
+
}
|
|
1643
1646
|
return rawVNode;
|
|
1644
1647
|
}
|
|
1645
1648
|
const key = vnode.key == null ? comp : vnode.key;
|
|
@@ -1654,7 +1657,6 @@ const KeepAliveImpl = {
|
|
|
1654
1657
|
if (cachedVNode) {
|
|
1655
1658
|
vnode.el = cachedVNode.el;
|
|
1656
1659
|
vnode.component = cachedVNode.component;
|
|
1657
|
-
vnode.component.zovaHostProviders = vnode.zovaHostProviders;
|
|
1658
1660
|
if (vnode.transition) {
|
|
1659
1661
|
setTransitionHooks(vnode, vnode.transition);
|
|
1660
1662
|
}
|
|
@@ -1669,6 +1671,9 @@ const KeepAliveImpl = {
|
|
|
1669
1671
|
}
|
|
1670
1672
|
vnode.shapeFlag |= 256;
|
|
1671
1673
|
current = vnode;
|
|
1674
|
+
if (current.component) {
|
|
1675
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1676
|
+
}
|
|
1672
1677
|
return isSuspense(rawVNode.type) ? rawVNode : vnode;
|
|
1673
1678
|
};
|
|
1674
1679
|
}
|
|
@@ -1200,6 +1200,9 @@ const KeepAliveImpl = {
|
|
|
1200
1200
|
if (include && (!name || !matches(include, name)) || exclude && name && matches(exclude, name)) {
|
|
1201
1201
|
vnode.shapeFlag &= ~256;
|
|
1202
1202
|
current = vnode;
|
|
1203
|
+
if (current.component) {
|
|
1204
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1205
|
+
}
|
|
1203
1206
|
return rawVNode;
|
|
1204
1207
|
}
|
|
1205
1208
|
const key = vnode.key == null ? comp : vnode.key;
|
|
@@ -1214,7 +1217,6 @@ const KeepAliveImpl = {
|
|
|
1214
1217
|
if (cachedVNode) {
|
|
1215
1218
|
vnode.el = cachedVNode.el;
|
|
1216
1219
|
vnode.component = cachedVNode.component;
|
|
1217
|
-
vnode.component.zovaHostProviders = vnode.zovaHostProviders;
|
|
1218
1220
|
if (vnode.transition) {
|
|
1219
1221
|
setTransitionHooks(vnode, vnode.transition);
|
|
1220
1222
|
}
|
|
@@ -1229,6 +1231,9 @@ const KeepAliveImpl = {
|
|
|
1229
1231
|
}
|
|
1230
1232
|
vnode.shapeFlag |= 256;
|
|
1231
1233
|
current = vnode;
|
|
1234
|
+
if (current.component) {
|
|
1235
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1236
|
+
}
|
|
1232
1237
|
return isSuspense(rawVNode.type) ? rawVNode : vnode;
|
|
1233
1238
|
};
|
|
1234
1239
|
}
|
|
@@ -1644,6 +1644,9 @@ const KeepAliveImpl = {
|
|
|
1644
1644
|
if (include && (!name || !matches(include, name)) || exclude && name && matches(exclude, name)) {
|
|
1645
1645
|
vnode.shapeFlag &= ~256;
|
|
1646
1646
|
current = vnode;
|
|
1647
|
+
if (current.component) {
|
|
1648
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1649
|
+
}
|
|
1647
1650
|
return rawVNode;
|
|
1648
1651
|
}
|
|
1649
1652
|
const key = vnode.key == null ? comp : vnode.key;
|
|
@@ -1658,7 +1661,6 @@ const KeepAliveImpl = {
|
|
|
1658
1661
|
if (cachedVNode) {
|
|
1659
1662
|
vnode.el = cachedVNode.el;
|
|
1660
1663
|
vnode.component = cachedVNode.component;
|
|
1661
|
-
vnode.component.zovaHostProviders = vnode.zovaHostProviders;
|
|
1662
1664
|
if (vnode.transition) {
|
|
1663
1665
|
setTransitionHooks(vnode, vnode.transition);
|
|
1664
1666
|
}
|
|
@@ -1673,6 +1675,9 @@ const KeepAliveImpl = {
|
|
|
1673
1675
|
}
|
|
1674
1676
|
vnode.shapeFlag |= 256;
|
|
1675
1677
|
current = vnode;
|
|
1678
|
+
if (current.component) {
|
|
1679
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1680
|
+
}
|
|
1676
1681
|
return isSuspense(rawVNode.type) ? rawVNode : vnode;
|
|
1677
1682
|
};
|
|
1678
1683
|
}
|