@cabloy/vue-runtime-core 3.5.26 → 3.5.28
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
|
@@ -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
|
|
|
@@ -7755,6 +7756,7 @@ function invokeVNodeHook(hook, instance, vnode, prevVNode = null) {
|
|
|
7755
7756
|
const emptyAppContext = createAppContext();
|
|
7756
7757
|
let uid = 0;
|
|
7757
7758
|
function createComponentInstance(vnode, parent, suspense) {
|
|
7759
|
+
var _a;
|
|
7758
7760
|
const type = vnode.type;
|
|
7759
7761
|
const appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext;
|
|
7760
7762
|
const instance = {
|
|
@@ -7836,8 +7838,9 @@ function createComponentInstance(vnode, parent, suspense) {
|
|
|
7836
7838
|
{
|
|
7837
7839
|
instance.ctx = createDevRenderContext(instance);
|
|
7838
7840
|
}
|
|
7839
|
-
|
|
7840
|
-
|
|
7841
|
+
const zovaHostProviders = (_a = vnode.zovaHostProviders) != null ? _a : parent && parent.zovaHostProviders;
|
|
7842
|
+
if (zovaHostProviders) {
|
|
7843
|
+
instance.zovaHostProviders = zovaHostProviders;
|
|
7841
7844
|
}
|
|
7842
7845
|
instance.root = parent ? parent.root : instance;
|
|
7843
7846
|
instance.emit = emit.bind(null, instance);
|
|
@@ -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
|
|
|
@@ -6233,6 +6234,7 @@ function invokeVNodeHook(hook, instance, vnode, prevVNode = null) {
|
|
|
6233
6234
|
const emptyAppContext = createAppContext();
|
|
6234
6235
|
let uid = 0;
|
|
6235
6236
|
function createComponentInstance(vnode, parent, suspense) {
|
|
6237
|
+
var _a;
|
|
6236
6238
|
const type = vnode.type;
|
|
6237
6239
|
const appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext;
|
|
6238
6240
|
const instance = {
|
|
@@ -6314,8 +6316,9 @@ function createComponentInstance(vnode, parent, suspense) {
|
|
|
6314
6316
|
{
|
|
6315
6317
|
instance.ctx = { _: instance };
|
|
6316
6318
|
}
|
|
6317
|
-
|
|
6318
|
-
|
|
6319
|
+
const zovaHostProviders = (_a = vnode.zovaHostProviders) != null ? _a : parent && parent.zovaHostProviders;
|
|
6320
|
+
if (zovaHostProviders) {
|
|
6321
|
+
instance.zovaHostProviders = zovaHostProviders;
|
|
6319
6322
|
}
|
|
6320
6323
|
instance.root = parent ? parent.root : instance;
|
|
6321
6324
|
instance.emit = emit.bind(null, instance);
|
|
@@ -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
|
|
|
@@ -7812,6 +7813,7 @@ function invokeVNodeHook(hook, instance, vnode, prevVNode = null) {
|
|
|
7812
7813
|
const emptyAppContext = createAppContext();
|
|
7813
7814
|
let uid = 0;
|
|
7814
7815
|
function createComponentInstance(vnode, parent, suspense) {
|
|
7816
|
+
var _a;
|
|
7815
7817
|
const type = vnode.type;
|
|
7816
7818
|
const appContext = (parent ? parent.appContext : vnode.appContext) || emptyAppContext;
|
|
7817
7819
|
const instance = {
|
|
@@ -7895,8 +7897,9 @@ function createComponentInstance(vnode, parent, suspense) {
|
|
|
7895
7897
|
} else {
|
|
7896
7898
|
instance.ctx = { _: instance };
|
|
7897
7899
|
}
|
|
7898
|
-
|
|
7899
|
-
|
|
7900
|
+
const zovaHostProviders = (_a = vnode.zovaHostProviders) != null ? _a : parent && parent.zovaHostProviders;
|
|
7901
|
+
if (zovaHostProviders) {
|
|
7902
|
+
instance.zovaHostProviders = zovaHostProviders;
|
|
7900
7903
|
}
|
|
7901
7904
|
instance.root = parent ? parent.root : instance;
|
|
7902
7905
|
instance.emit = emit.bind(null, instance);
|