@cabloy/vue-runtime-core 3.4.36 → 3.4.38
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
|
@@ -4938,7 +4938,16 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4938
4938
|
() => !instance.isUnmounted && hydrateSubTree()
|
|
4939
4939
|
);
|
|
4940
4940
|
} else {
|
|
4941
|
-
|
|
4941
|
+
const zova = instance.ctx._.zova;
|
|
4942
|
+
if (zova) {
|
|
4943
|
+
zova.meta.ssr._hydratingInc();
|
|
4944
|
+
zova.meta.state.inited.wait().then(() => {
|
|
4945
|
+
!instance.isUnmounted && hydrateSubTree();
|
|
4946
|
+
zova.meta.ssr._hydratingDec();
|
|
4947
|
+
});
|
|
4948
|
+
} else {
|
|
4949
|
+
hydrateSubTree();
|
|
4950
|
+
}
|
|
4942
4951
|
}
|
|
4943
4952
|
} else {
|
|
4944
4953
|
{
|
|
@@ -4985,6 +4994,10 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4985
4994
|
initialVNode = container = anchor = null;
|
|
4986
4995
|
} else {
|
|
4987
4996
|
let { next, bu, u, parent, vnode } = instance;
|
|
4997
|
+
const zova = instance.ctx._.zova;
|
|
4998
|
+
if (zova && zova.meta.ssr.isRuntimeSsrPreHydration) {
|
|
4999
|
+
return;
|
|
5000
|
+
}
|
|
4988
5001
|
{
|
|
4989
5002
|
const nonHydratedAsyncRoot = locateNonHydratedAsyncRoot(instance);
|
|
4990
5003
|
if (nonHydratedAsyncRoot) {
|
|
@@ -3730,7 +3730,16 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
3730
3730
|
() => !instance.isUnmounted && hydrateSubTree()
|
|
3731
3731
|
);
|
|
3732
3732
|
} else {
|
|
3733
|
-
|
|
3733
|
+
const zova = instance.ctx._.zova;
|
|
3734
|
+
if (zova) {
|
|
3735
|
+
zova.meta.ssr._hydratingInc();
|
|
3736
|
+
zova.meta.state.inited.wait().then(() => {
|
|
3737
|
+
!instance.isUnmounted && hydrateSubTree();
|
|
3738
|
+
zova.meta.ssr._hydratingDec();
|
|
3739
|
+
});
|
|
3740
|
+
} else {
|
|
3741
|
+
hydrateSubTree();
|
|
3742
|
+
}
|
|
3734
3743
|
}
|
|
3735
3744
|
} else {
|
|
3736
3745
|
const subTree = instance.subTree = renderComponentRoot(instance);
|
|
@@ -3762,6 +3771,10 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
3762
3771
|
initialVNode = container = anchor = null;
|
|
3763
3772
|
} else {
|
|
3764
3773
|
let { next, bu, u, parent, vnode } = instance;
|
|
3774
|
+
const zova = instance.ctx._.zova;
|
|
3775
|
+
if (zova && zova.meta.ssr.isRuntimeSsrPreHydration) {
|
|
3776
|
+
return;
|
|
3777
|
+
}
|
|
3765
3778
|
{
|
|
3766
3779
|
const nonHydratedAsyncRoot = locateNonHydratedAsyncRoot(instance);
|
|
3767
3780
|
if (nonHydratedAsyncRoot) {
|
|
@@ -4993,7 +4993,16 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4993
4993
|
() => !instance.isUnmounted && hydrateSubTree()
|
|
4994
4994
|
);
|
|
4995
4995
|
} else {
|
|
4996
|
-
|
|
4996
|
+
const zova = instance.ctx._.zova;
|
|
4997
|
+
if (zova) {
|
|
4998
|
+
zova.meta.ssr._hydratingInc();
|
|
4999
|
+
zova.meta.state.inited.wait().then(() => {
|
|
5000
|
+
!instance.isUnmounted && hydrateSubTree();
|
|
5001
|
+
zova.meta.ssr._hydratingDec();
|
|
5002
|
+
});
|
|
5003
|
+
} else {
|
|
5004
|
+
hydrateSubTree();
|
|
5005
|
+
}
|
|
4997
5006
|
}
|
|
4998
5007
|
} else {
|
|
4999
5008
|
if (!!(process.env.NODE_ENV !== "production")) {
|
|
@@ -5040,6 +5049,10 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
5040
5049
|
initialVNode = container = anchor = null;
|
|
5041
5050
|
} else {
|
|
5042
5051
|
let { next, bu, u, parent, vnode } = instance;
|
|
5052
|
+
const zova = instance.ctx._.zova;
|
|
5053
|
+
if (zova && zova.meta.ssr.isRuntimeSsrPreHydration) {
|
|
5054
|
+
return;
|
|
5055
|
+
}
|
|
5043
5056
|
{
|
|
5044
5057
|
const nonHydratedAsyncRoot = locateNonHydratedAsyncRoot(instance);
|
|
5045
5058
|
if (nonHydratedAsyncRoot) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cabloy/vue-runtime-core",
|
|
3
|
-
"version": "3.4.
|
|
3
|
+
"version": "3.4.38",
|
|
4
4
|
"description": "@vue/runtime-core",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "dist/runtime-core.esm-bundler.js",
|
|
@@ -47,6 +47,6 @@
|
|
|
47
47
|
"homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@vue/shared": "3.4.37",
|
|
50
|
-
"@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.
|
|
50
|
+
"@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.38"
|
|
51
51
|
}
|
|
52
52
|
}
|