@cabloy/vue-runtime-core 3.5.25 → 3.5.27

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.
@@ -2532,6 +2532,7 @@ function createInnerComp(comp, parent) {
2532
2532
  vnode.ref = ref2;
2533
2533
  vnode.ce = ce;
2534
2534
  delete parent.vnode.ce;
2535
+ vnode.zovaHostProviders = parent.vnode.zovaHostProviders;
2535
2536
  return vnode;
2536
2537
  }
2537
2538
 
@@ -7836,6 +7837,9 @@ function createComponentInstance(vnode, parent, suspense) {
7836
7837
  {
7837
7838
  instance.ctx = createDevRenderContext(instance);
7838
7839
  }
7840
+ if (vnode.zovaHostProviders) {
7841
+ instance.zovaHostProviders = vnode.zovaHostProviders;
7842
+ }
7839
7843
  instance.root = parent ? parent.root : instance;
7840
7844
  instance.emit = emit.bind(null, instance);
7841
7845
  if (vnode.ce) {
@@ -1897,6 +1897,7 @@ function createInnerComp(comp, parent) {
1897
1897
  vnode.ref = ref2;
1898
1898
  vnode.ce = ce;
1899
1899
  delete parent.vnode.ce;
1900
+ vnode.zovaHostProviders = parent.vnode.zovaHostProviders;
1900
1901
  return vnode;
1901
1902
  }
1902
1903
 
@@ -6314,6 +6315,9 @@ function createComponentInstance(vnode, parent, suspense) {
6314
6315
  {
6315
6316
  instance.ctx = { _: instance };
6316
6317
  }
6318
+ if (vnode.zovaHostProviders) {
6319
+ instance.zovaHostProviders = vnode.zovaHostProviders;
6320
+ }
6317
6321
  instance.root = parent ? parent.root : instance;
6318
6322
  instance.emit = emit.bind(null, instance);
6319
6323
  if (vnode.ce) {
@@ -2547,6 +2547,7 @@ function createInnerComp(comp, parent) {
2547
2547
  vnode.ref = ref2;
2548
2548
  vnode.ce = ce;
2549
2549
  delete parent.vnode.ce;
2550
+ vnode.zovaHostProviders = parent.vnode.zovaHostProviders;
2550
2551
  return vnode;
2551
2552
  }
2552
2553
 
@@ -7895,6 +7896,9 @@ function createComponentInstance(vnode, parent, suspense) {
7895
7896
  } else {
7896
7897
  instance.ctx = { _: instance };
7897
7898
  }
7899
+ if (vnode.zovaHostProviders) {
7900
+ instance.zovaHostProviders = vnode.zovaHostProviders;
7901
+ }
7898
7902
  instance.root = parent ? parent.root : instance;
7899
7903
  instance.emit = emit.bind(null, instance);
7900
7904
  if (vnode.ce) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.5.25",
3
+ "version": "3.5.27",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",