@cabloy/vue-runtime-core 3.4.37 → 3.4.39
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
|
@@ -4103,6 +4103,16 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
|
|
|
4103
4103
|
let mismatchKey;
|
|
4104
4104
|
let actual;
|
|
4105
4105
|
let expected;
|
|
4106
|
+
const zova = instance && instance.ctx._.zova;
|
|
4107
|
+
if (zova) {
|
|
4108
|
+
clientValue = zova.meta.ssr._hydratePropHasMismatch(
|
|
4109
|
+
el,
|
|
4110
|
+
key,
|
|
4111
|
+
clientValue,
|
|
4112
|
+
vnode,
|
|
4113
|
+
instance
|
|
4114
|
+
);
|
|
4115
|
+
}
|
|
4106
4116
|
if (key === "class") {
|
|
4107
4117
|
actual = el.getAttribute("class");
|
|
4108
4118
|
expected = shared.normalizeClass(clientValue);
|
|
@@ -4940,10 +4950,10 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4940
4950
|
} else {
|
|
4941
4951
|
const zova = instance.ctx._.zova;
|
|
4942
4952
|
if (zova) {
|
|
4943
|
-
zova.meta.ssr.
|
|
4953
|
+
zova.meta.ssr._hydratingInc();
|
|
4944
4954
|
zova.meta.state.inited.wait().then(() => {
|
|
4945
4955
|
!instance.isUnmounted && hydrateSubTree();
|
|
4946
|
-
zova.meta.ssr.
|
|
4956
|
+
zova.meta.ssr._hydratingDec();
|
|
4947
4957
|
});
|
|
4948
4958
|
} else {
|
|
4949
4959
|
hydrateSubTree();
|
|
@@ -3732,10 +3732,10 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
3732
3732
|
} else {
|
|
3733
3733
|
const zova = instance.ctx._.zova;
|
|
3734
3734
|
if (zova) {
|
|
3735
|
-
zova.meta.ssr.
|
|
3735
|
+
zova.meta.ssr._hydratingInc();
|
|
3736
3736
|
zova.meta.state.inited.wait().then(() => {
|
|
3737
3737
|
!instance.isUnmounted && hydrateSubTree();
|
|
3738
|
-
zova.meta.ssr.
|
|
3738
|
+
zova.meta.ssr._hydratingDec();
|
|
3739
3739
|
});
|
|
3740
3740
|
} else {
|
|
3741
3741
|
hydrateSubTree();
|
|
@@ -4120,6 +4120,16 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
|
|
|
4120
4120
|
let mismatchKey;
|
|
4121
4121
|
let actual;
|
|
4122
4122
|
let expected;
|
|
4123
|
+
const zova = instance && instance.ctx._.zova;
|
|
4124
|
+
if (zova) {
|
|
4125
|
+
clientValue = zova.meta.ssr._hydratePropHasMismatch(
|
|
4126
|
+
el,
|
|
4127
|
+
key,
|
|
4128
|
+
clientValue,
|
|
4129
|
+
vnode,
|
|
4130
|
+
instance
|
|
4131
|
+
);
|
|
4132
|
+
}
|
|
4123
4133
|
if (key === "class") {
|
|
4124
4134
|
actual = el.getAttribute("class");
|
|
4125
4135
|
expected = normalizeClass(clientValue);
|
|
@@ -4995,10 +5005,10 @@ function baseCreateRenderer(options, createHydrationFns) {
|
|
|
4995
5005
|
} else {
|
|
4996
5006
|
const zova = instance.ctx._.zova;
|
|
4997
5007
|
if (zova) {
|
|
4998
|
-
zova.meta.ssr.
|
|
5008
|
+
zova.meta.ssr._hydratingInc();
|
|
4999
5009
|
zova.meta.state.inited.wait().then(() => {
|
|
5000
5010
|
!instance.isUnmounted && hydrateSubTree();
|
|
5001
|
-
zova.meta.ssr.
|
|
5011
|
+
zova.meta.ssr._hydratingDec();
|
|
5002
5012
|
});
|
|
5003
5013
|
} else {
|
|
5004
5014
|
hydrateSubTree();
|
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.39",
|
|
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.39"
|
|
51
51
|
}
|
|
52
52
|
}
|