@cabloy/vue-runtime-core 3.5.25 → 3.5.26

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.
@@ -7836,6 +7836,9 @@ function createComponentInstance(vnode, parent, suspense) {
7836
7836
  {
7837
7837
  instance.ctx = createDevRenderContext(instance);
7838
7838
  }
7839
+ if (vnode.zovaHostProviders) {
7840
+ instance.zovaHostProviders = vnode.zovaHostProviders;
7841
+ }
7839
7842
  instance.root = parent ? parent.root : instance;
7840
7843
  instance.emit = emit.bind(null, instance);
7841
7844
  if (vnode.ce) {
@@ -6314,6 +6314,9 @@ function createComponentInstance(vnode, parent, suspense) {
6314
6314
  {
6315
6315
  instance.ctx = { _: instance };
6316
6316
  }
6317
+ if (vnode.zovaHostProviders) {
6318
+ instance.zovaHostProviders = vnode.zovaHostProviders;
6319
+ }
6317
6320
  instance.root = parent ? parent.root : instance;
6318
6321
  instance.emit = emit.bind(null, instance);
6319
6322
  if (vnode.ce) {
@@ -7895,6 +7895,9 @@ function createComponentInstance(vnode, parent, suspense) {
7895
7895
  } else {
7896
7896
  instance.ctx = { _: instance };
7897
7897
  }
7898
+ if (vnode.zovaHostProviders) {
7899
+ instance.zovaHostProviders = vnode.zovaHostProviders;
7900
+ }
7898
7901
  instance.root = parent ? parent.root : instance;
7899
7902
  instance.emit = emit.bind(null, instance);
7900
7903
  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.26",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",