@cabloy/vue-runtime-core 3.5.34 → 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
|
@@ -5224,6 +5224,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5224
5224
|
};
|
|
5225
5225
|
const updateComponent = (n1, n2, optimized) => {
|
|
5226
5226
|
const instance = n2.component = n1.component;
|
|
5227
|
+
if (instance) {
|
|
5228
|
+
instance.zovaHostProviders = n2.zovaHostProviders;
|
|
5229
|
+
}
|
|
5227
5230
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
5228
5231
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
5229
5232
|
{
|
|
@@ -4008,6 +4008,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4008
4008
|
};
|
|
4009
4009
|
const updateComponent = (n1, n2, optimized) => {
|
|
4010
4010
|
const instance = n2.component = n1.component;
|
|
4011
|
+
if (instance) {
|
|
4012
|
+
instance.zovaHostProviders = n2.zovaHostProviders;
|
|
4013
|
+
}
|
|
4011
4014
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
4012
4015
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
4013
4016
|
updateComponentPreRender(instance, n2, optimized);
|
|
@@ -5281,6 +5281,9 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5281
5281
|
};
|
|
5282
5282
|
const updateComponent = (n1, n2, optimized) => {
|
|
5283
5283
|
const instance = n2.component = n1.component;
|
|
5284
|
+
if (instance) {
|
|
5285
|
+
instance.zovaHostProviders = n2.zovaHostProviders;
|
|
5286
|
+
}
|
|
5284
5287
|
if (shouldUpdateComponent(n1, n2, optimized)) {
|
|
5285
5288
|
if (instance.asyncDep && !instance.asyncResolved) {
|
|
5286
5289
|
if (!!(process.env.NODE_ENV !== "production")) {
|