@vue/runtime-core 3.5.26 → 3.5.27

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.5.26
2
+ * @vue/runtime-core v3.5.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -2147,7 +2147,7 @@ Server rendered element contains more child nodes than client vdom.`
2147
2147
  logMismatchError();
2148
2148
  }
2149
2149
  if (forcePatch && (key.endsWith("value") || key === "indeterminate") || shared.isOn(key) && !shared.isReservedProp(key) || // force hydrate v-bind with .prop modifiers
2150
- key[0] === "." || isCustomElement) {
2150
+ key[0] === "." || isCustomElement && !shared.isReservedProp(key)) {
2151
2151
  patchProp(el, key, null, props[key], void 0, parentComponent);
2152
2152
  }
2153
2153
  }
@@ -8460,7 +8460,7 @@ function isMemoSame(cached, memo) {
8460
8460
  return true;
8461
8461
  }
8462
8462
 
8463
- const version = "3.5.26";
8463
+ const version = "3.5.27";
8464
8464
  const warn = warn$1 ;
8465
8465
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8466
8466
  const devtools = devtools$1 ;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.5.26
2
+ * @vue/runtime-core v3.5.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1606,7 +1606,7 @@ function createHydrationFunctions(rendererInternals) {
1606
1606
  const isCustomElement = el.tagName.includes("-");
1607
1607
  for (const key in props) {
1608
1608
  if (forcePatch && (key.endsWith("value") || key === "indeterminate") || shared.isOn(key) && !shared.isReservedProp(key) || // force hydrate v-bind with .prop modifiers
1609
- key[0] === "." || isCustomElement) {
1609
+ key[0] === "." || isCustomElement && !shared.isReservedProp(key)) {
1610
1610
  patchProp(el, key, null, props[key], void 0, parentComponent);
1611
1611
  }
1612
1612
  }
@@ -6600,7 +6600,7 @@ function isMemoSame(cached, memo) {
6600
6600
  return true;
6601
6601
  }
6602
6602
 
6603
- const version = "3.5.26";
6603
+ const version = "3.5.27";
6604
6604
  const warn$1 = shared.NOOP;
6605
6605
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
6606
6606
  const devtools = void 0;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/runtime-core v3.5.26
2
+ * @vue/runtime-core v3.5.27
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -2151,7 +2151,7 @@ Server rendered element contains more child nodes than client vdom.`
2151
2151
  logMismatchError();
2152
2152
  }
2153
2153
  if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers
2154
- key[0] === "." || isCustomElement) {
2154
+ key[0] === "." || isCustomElement && !isReservedProp(key)) {
2155
2155
  patchProp(el, key, null, props[key], void 0, parentComponent);
2156
2156
  }
2157
2157
  }
@@ -8534,7 +8534,7 @@ function isMemoSame(cached, memo) {
8534
8534
  return true;
8535
8535
  }
8536
8536
 
8537
- const version = "3.5.26";
8537
+ const version = "3.5.27";
8538
8538
  const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
8539
8539
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
8540
8540
  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.5.26",
3
+ "version": "3.5.27",
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.5.26",
50
- "@vue/reactivity": "3.5.26"
49
+ "@vue/shared": "3.5.27",
50
+ "@vue/reactivity": "3.5.27"
51
51
  }
52
52
  }