@vue/compat 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/compat v3.4.35
2
+ * @vue/compat v3.4.36
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -5179,7 +5179,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
5179
5179
  return vm;
5180
5180
  }
5181
5181
  }
5182
- Vue.version = `2.6.14-compat:${"3.4.35"}`;
5182
+ Vue.version = `2.6.14-compat:${"3.4.36"}`;
5183
5183
  Vue.config = singletonApp.config;
5184
5184
  Vue.use = (plugin, ...options) => {
5185
5185
  if (plugin && isFunction(plugin.install)) {
@@ -7021,6 +7021,7 @@ Server rendered element contains more child nodes than client vdom.`
7021
7021
  }
7022
7022
  if (props) {
7023
7023
  {
7024
+ const isCustomElement = el.tagName.includes("-");
7024
7025
  for (const key in props) {
7025
7026
  if (// #11189 skip if this node has directives that have created hooks
7026
7027
  // as it could have mutated the DOM in any possible way
@@ -7028,7 +7029,7 @@ Server rendered element contains more child nodes than client vdom.`
7028
7029
  logMismatchError();
7029
7030
  }
7030
7031
  if (forcePatch && (key.endsWith("value") || key === "indeterminate") || isOn(key) && !isReservedProp(key) || // force hydrate v-bind with .prop modifiers
7031
- key[0] === ".") {
7032
+ key[0] === "." || isCustomElement) {
7032
7033
  patchProp(el, key, null, props[key], void 0, parentComponent);
7033
7034
  }
7034
7035
  }
@@ -11366,7 +11367,7 @@ function isMemoSame(cached, memo) {
11366
11367
  return true;
11367
11368
  }
11368
11369
 
11369
- const version = "3.4.35";
11370
+ const version = "3.4.36";
11370
11371
  const warn = warn$1 ;
11371
11372
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
11372
11373
  const devtools = devtools$1 ;