vue 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 v3.5.9
2
+ * vue v3.5.10
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.5.9
2
+ * vue v3.5.10
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -650,12 +650,17 @@ var Vue = (function (exports) {
650
650
  let e = batchedSub;
651
651
  let next;
652
652
  while (e) {
653
- e.flags &= ~8;
653
+ if (!(e.flags & 1)) {
654
+ e.flags &= ~8;
655
+ }
654
656
  e = e.next;
655
657
  }
656
658
  e = batchedSub;
657
659
  batchedSub = void 0;
658
660
  while (e) {
661
+ next = e.next;
662
+ e.next = void 0;
663
+ e.flags &= ~8;
659
664
  if (e.flags & 1) {
660
665
  try {
661
666
  ;
@@ -664,8 +669,6 @@ var Vue = (function (exports) {
664
669
  if (!error) error = err;
665
670
  }
666
671
  }
667
- next = e.next;
668
- e.next = void 0;
669
672
  e = next;
670
673
  }
671
674
  }
@@ -1999,6 +2002,10 @@ var Vue = (function (exports) {
1999
2002
  * @internal
2000
2003
  */
2001
2004
  this.globalVersion = globalVersion - 1;
2005
+ /**
2006
+ * @internal
2007
+ */
2008
+ this.next = void 0;
2002
2009
  // for backwards compat
2003
2010
  this.effect = this;
2004
2011
  this["__v_isReadonly"] = !setter;
@@ -10475,7 +10482,7 @@ Component that was made reactive: `,
10475
10482
  return true;
10476
10483
  }
10477
10484
 
10478
- const version = "3.5.9";
10485
+ const version = "3.5.10";
10479
10486
  const warn = warn$1 ;
10480
10487
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
10481
10488
  const devtools = devtools$1 ;
@@ -11243,6 +11250,11 @@ Expected function or array of functions, received type ${typeof value}.`
11243
11250
  if (!el.tagName.includes("-") && (key === "value" || key === "checked" || key === "selected")) {
11244
11251
  patchAttr(el, key, nextValue, isSVG, parentComponent, key !== "value");
11245
11252
  }
11253
+ } else if (
11254
+ // #11081 force set props for possible async custom element
11255
+ el._isVueCE && (/[A-Z]/.test(key) || !isString(nextValue))
11256
+ ) {
11257
+ patchDOMProp(el, camelize(key), nextValue);
11246
11258
  } else {
11247
11259
  if (key === "true-value") {
11248
11260
  el._trueValue = nextValue;
@@ -11283,13 +11295,7 @@ Expected function or array of functions, received type ${typeof value}.`
11283
11295
  if (isNativeOn(key) && isString(value)) {
11284
11296
  return false;
11285
11297
  }
11286
- if (key in el) {
11287
- return true;
11288
- }
11289
- if (el._isVueCE && (/[A-Z]/.test(key) || !isString(value))) {
11290
- return true;
11291
- }
11292
- return false;
11298
+ return key in el;
11293
11299
  }
11294
11300
 
11295
11301
  const REMOVAL = {};