@cabloy/vue-runtime-core 3.4.38 → 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);
|
|
@@ -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);
|
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
|
}
|