@cabloy/vue-runtime-core 3.5.33 → 3.5.35
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,7 +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
|
-
current.component
|
|
1643
|
+
if (current.component) {
|
|
1644
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1645
|
+
}
|
|
1644
1646
|
return rawVNode;
|
|
1645
1647
|
}
|
|
1646
1648
|
const key = vnode.key == null ? comp : vnode.key;
|
|
@@ -1669,7 +1671,9 @@ const KeepAliveImpl = {
|
|
|
1669
1671
|
}
|
|
1670
1672
|
vnode.shapeFlag |= 256;
|
|
1671
1673
|
current = vnode;
|
|
1672
|
-
current.component
|
|
1674
|
+
if (current.component) {
|
|
1675
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1676
|
+
}
|
|
1673
1677
|
return isSuspense(rawVNode.type) ? rawVNode : vnode;
|
|
1674
1678
|
};
|
|
1675
1679
|
}
|
|
@@ -5220,6 +5224,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5220
5224
|
};
|
|
5221
5225
|
const updateComponent = (n1, n2, optimized) => {
|
|
5222
5226
|
const instance = n2.component = n1.component;
|
|
5227
|
+
if (instance) {
|
|
5228
|
+
instance.zovaHostProviders = n2.zovaHostProviders;
|
|
5229
|
+
}
|
|
5223
5230
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
5224
5231
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
5225
5232
|
{
|
|
@@ -1200,7 +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
|
-
current.component
|
|
1203
|
+
if (current.component) {
|
|
1204
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1205
|
+
}
|
|
1204
1206
|
return rawVNode;
|
|
1205
1207
|
}
|
|
1206
1208
|
const key = vnode.key == null ? comp : vnode.key;
|
|
@@ -1229,7 +1231,9 @@ const KeepAliveImpl = {
|
|
|
1229
1231
|
}
|
|
1230
1232
|
vnode.shapeFlag |= 256;
|
|
1231
1233
|
current = vnode;
|
|
1232
|
-
current.component
|
|
1234
|
+
if (current.component) {
|
|
1235
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1236
|
+
}
|
|
1233
1237
|
return isSuspense(rawVNode.type) ? rawVNode : vnode;
|
|
1234
1238
|
};
|
|
1235
1239
|
}
|
|
@@ -4004,6 +4008,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4004
4008
|
};
|
|
4005
4009
|
const updateComponent = (n1, n2, optimized) => {
|
|
4006
4010
|
const instance = n2.component = n1.component;
|
|
4011
|
+
if (instance) {
|
|
4012
|
+
instance.zovaHostProviders = n2.zovaHostProviders;
|
|
4013
|
+
}
|
|
4007
4014
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
4008
4015
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
4009
4016
|
updateComponentPreRender(instance, n2, optimized);
|
|
@@ -1644,7 +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
|
-
current.component
|
|
1647
|
+
if (current.component) {
|
|
1648
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1649
|
+
}
|
|
1648
1650
|
return rawVNode;
|
|
1649
1651
|
}
|
|
1650
1652
|
const key = vnode.key == null ? comp : vnode.key;
|
|
@@ -1673,7 +1675,9 @@ const KeepAliveImpl = {
|
|
|
1673
1675
|
}
|
|
1674
1676
|
vnode.shapeFlag |= 256;
|
|
1675
1677
|
current = vnode;
|
|
1676
|
-
current.component
|
|
1678
|
+
if (current.component) {
|
|
1679
|
+
current.component.zovaHostProviders = current.zovaHostProviders;
|
|
1680
|
+
}
|
|
1677
1681
|
return isSuspense(rawVNode.type) ? rawVNode : vnode;
|
|
1678
1682
|
};
|
|
1679
1683
|
}
|
|
@@ -5277,6 +5281,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5277
5281
|
};
|
|
5278
5282
|
const updateComponent = (n1, n2, optimized) => {
|
|
5279
5283
|
const instance = n2.component = n1.component;
|
|
5284
|
+
if (instance) {
|
|
5285
|
+
instance.zovaHostProviders = n2.zovaHostProviders;
|
|
5286
|
+
}
|
|
5280
5287
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
5281
5288
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
5282
5289
|
if (!!(process.env.NODE_ENV !== "production")) {
|