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