@cabloy/vue-runtime-core 3.4.40 → 3.4.41

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.
@@ -4111,13 +4111,15 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
4111
4111
  let expected;
4112
4112
  const zova = _getValidZova(instance);
4113
4113
  if (zova) {
4114
- clientValue = zova.meta.ssr._hydratePropHasMismatch(
4114
+ const res = zova.meta.ssr._hydratePropHasMismatch(
4115
4115
  el,
4116
4116
  key,
4117
4117
  clientValue,
4118
4118
  vnode,
4119
4119
  instance
4120
4120
  );
4121
+ if (res.ignore) return false;
4122
+ clientValue = res.clientValue;
4121
4123
  }
4122
4124
  if (key === "class") {
4123
4125
  actual = el.getAttribute("class");
@@ -4128,13 +4128,15 @@ function propHasMismatch(el, key, clientValue, vnode, instance) {
4128
4128
  let expected;
4129
4129
  const zova = _getValidZova(instance);
4130
4130
  if (zova) {
4131
- clientValue = zova.meta.ssr._hydratePropHasMismatch(
4131
+ const res = zova.meta.ssr._hydratePropHasMismatch(
4132
4132
  el,
4133
4133
  key,
4134
4134
  clientValue,
4135
4135
  vnode,
4136
4136
  instance
4137
4137
  );
4138
+ if (res.ignore) return false;
4139
+ clientValue = res.clientValue;
4138
4140
  }
4139
4141
  if (key === "class") {
4140
4142
  actual = el.getAttribute("class");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cabloy/vue-runtime-core",
3
- "version": "3.4.40",
3
+ "version": "3.4.41",
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.40"
50
+ "@vue/reactivity": "npm:@cabloy/vue-reactivity@3.4.41"
51
51
  }
52
52
  }