vue 3.4.35 → 3.4.36

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 v3.4.35
2
+ * vue v3.4.36
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -1,5 +1,5 @@
1
1
  /**
2
- * vue v3.4.35
2
+ * vue v3.4.36
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -5487,6 +5487,7 @@ Server rendered element contains more child nodes than client vdom.`
5487
5487
  }
5488
5488
  if (props) {
5489
5489
  {
5490
+ const isCustomElement = el.tagName.includes("-");
5490
5491
  for (const key in props) {
5491
5492
  if (// #11189 skip if this node has directives that have created hooks
5492
5493
  // as it could have mutated the DOM in any possible way
@@ -5494,7 +5495,7 @@ Server rendered element contains more child nodes than client vdom.`
5494
5495
  logMismatchError();
5495
5496
  }
5496
5497
  if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers
5497
- key[0] === ".") {
5498
+ key[0] === "." || isCustomElement) {
5498
5499
  patchProp(el, key, null, props[key], void 0, parentComponent);
5499
5500
  }
5500
5501
  }
@@ -9675,7 +9676,7 @@ Component that was made reactive: `,
9675
9676
  return true;
9676
9677
  }
9677
9678
 
9678
- const version = "3.4.35";
9679
+ const version = "3.4.36";
9679
9680
  const warn = warn$1 ;
9680
9681
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
9681
9682
  const devtools = devtools$1 ;