@vue/runtime-dom 3.5.9 → 3.5.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-dom v3.5.9
2
+ * @vue/runtime-dom v3.5.10
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -577,12 +577,17 @@ var VueRuntimeDOM = (function (exports) {
577
577
  let e = batchedSub;
578
578
  let next;
579
579
  while (e) {
580
- e.flags &= ~8;
580
+ if (!(e.flags & 1)) {
581
+ e.flags &= ~8;
582
+ }
581
583
  e = e.next;
582
584
  }
583
585
  e = batchedSub;
584
586
  batchedSub = void 0;
585
587
  while (e) {
588
+ next = e.next;
589
+ e.next = void 0;
590
+ e.flags &= ~8;
586
591
  if (e.flags & 1) {
587
592
  try {
588
593
  ;
@@ -591,8 +596,6 @@ var VueRuntimeDOM = (function (exports) {
591
596
  if (!error) error = err;
592
597
  }
593
598
  }
594
- next = e.next;
595
- e.next = void 0;
596
599
  e = next;
597
600
  }
598
601
  }
@@ -1926,6 +1929,10 @@ var VueRuntimeDOM = (function (exports) {
1926
1929
  * @internal
1927
1930
  */
1928
1931
  this.globalVersion = globalVersion - 1;
1932
+ /**
1933
+ * @internal
1934
+ */
1935
+ this.next = void 0;
1929
1936
  // for backwards compat
1930
1937
  this.effect = this;
1931
1938
  this["__v_isReadonly"] = !setter;
@@ -10402,7 +10409,7 @@ Component that was made reactive: `,
10402
10409
  return true;
10403
10410
  }
10404
10411
 
10405
- const version = "3.5.9";
10412
+ const version = "3.5.10";
10406
10413
  const warn = warn$1 ;
10407
10414
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
10408
10415
  const devtools = devtools$1 ;
@@ -11170,6 +11177,11 @@ Expected function or array of functions, received type ${typeof value}.`
11170
11177
  if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
11171
11178
  patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
11172
11179
  }
11180
+ } else if (
11181
+ // #11081 force set props for possible async custom element
11182
+ el._isVueCE && (/[A-Z]/.test(key) || !isString(nextValue))
11183
+ ) {
11184
+ patchDOMProp(el, camelize(key), nextValue);
11173
11185
  } else {
11174
11186
  if (key === "true-value") {
11175
11187
  el._trueValue = nextValue;
@@ -11210,13 +11222,7 @@ Expected function or array of functions, received type ${typeof value}.`
11210
11222
  if (isNativeOn(key) && isString(value)) {
11211
11223
  return false;
11212
11224
  }
11213
- if (key in el) {
11214
- return true;
11215
- }
11216
- if (el._isVueCE && (/[A-Z]/.test(key) || !isString(value))) {
11217
- return true;
11218
- }
11219
- return false;
11225
+ return key in el;
11220
11226
  }
11221
11227
 
11222
11228
  const REMOVAL = {};