@vue/runtime-core 3.4.9 → 3.4.10

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.
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.9
2
+ * @vue/runtime-core v3.4.10
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -5084,15 +5084,11 @@ function propHasMismatch(el, key, clientValue, vnode) {
5084
5084
  } else {
5085
5085
  if (el.hasAttribute(key)) {
5086
5086
  actual = el.getAttribute(key);
5087
- } else if (key in el) {
5087
+ } else {
5088
5088
  const serverValue = el[key];
5089
- if (!shared.isObject(serverValue)) {
5090
- actual = serverValue == null ? "" : String(serverValue);
5091
- }
5092
- }
5093
- if (!shared.isObject(clientValue)) {
5094
- expected = clientValue == null ? "" : String(clientValue);
5089
+ actual = shared.isObject(serverValue) || serverValue == null ? "" : String(serverValue);
5095
5090
  }
5091
+ expected = shared.isObject(clientValue) || clientValue == null ? "" : String(clientValue);
5096
5092
  }
5097
5093
  if (actual !== expected) {
5098
5094
  mismatchType = `attribute`;
@@ -8061,7 +8057,7 @@ function isMemoSame(cached, memo) {
8061
8057
  return true;
8062
8058
  }
8063
8059
 
8064
- const version = "3.4.9";
8060
+ const version = "3.4.10";
8065
8061
  const warn = warn$1 ;
8066
8062
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8067
8063
  const devtools = devtools$1 ;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.9
2
+ * @vue/runtime-core v3.4.10
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -6278,7 +6278,7 @@ function isMemoSame(cached, memo) {
6278
6278
  return true;
6279
6279
  }
6280
6280
 
6281
- const version = "3.4.9";
6281
+ const version = "3.4.10";
6282
6282
  const warn$1 = shared.NOOP;
6283
6283
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
6284
6284
  const devtools = void 0;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.4.9
2
+ * @vue/runtime-core v3.4.10
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -5102,15 +5102,11 @@ function propHasMismatch(el, key, clientValue, vnode) {
5102
5102
  } else {
5103
5103
  if (el.hasAttribute(key)) {
5104
5104
  actual = el.getAttribute(key);
5105
- } else if (key in el) {
5105
+ } else {
5106
5106
  const serverValue = el[key];
5107
- if (!isObject(serverValue)) {
5108
- actual = serverValue == null ? "" : String(serverValue);
5109
- }
5110
- }
5111
- if (!isObject(clientValue)) {
5112
- expected = clientValue == null ? "" : String(clientValue);
5107
+ actual = isObject(serverValue) || serverValue == null ? "" : String(serverValue);
5113
5108
  }
5109
+ expected = isObject(clientValue) || clientValue == null ? "" : String(clientValue);
5114
5110
  }
5115
5111
  if (actual !== expected) {
5116
5112
  mismatchType = `attribute`;
@@ -8133,7 +8129,7 @@ function isMemoSame(cached, memo) {
8133
8129
  return true;
8134
8130
  }
8135
8131
 
8136
- const version = "3.4.9";
8132
+ const version = "3.4.10";
8137
8133
  const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
8138
8134
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8139
8135
  const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@vue/runtime-core",
3
- "version": "3.4.9",
3
+ "version": "3.4.10",
4
4
  "description": "@vue/runtime-core",
5
5
  "main": "index.js",
6
6
  "module": "dist/runtime-core.esm-bundler.js",
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "homepage": "https://github.com/vuejs/core/tree/main/packages/runtime-core#readme",
48
48
  "dependencies": {
49
- "@vue/shared": "3.4.9",
50
- "@vue/reactivity": "3.4.9"
49
+ "@vue/shared": "3.4.10",
50
+ "@vue/reactivity": "3.4.10"
51
51
  }
52
52
  }