@vue/compat 3.5.7 → 3.5.8

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.5.7
2
+ * @vue/compat v3.5.8
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -664,7 +664,7 @@ function prepareDeps(sub) {
664
664
  link.dep.activeLink = link;
665
665
  }
666
666
  }
667
- function cleanupDeps(sub) {
667
+ function cleanupDeps(sub, fromComputed = false) {
668
668
  let head;
669
669
  let tail = sub.depsTail;
670
670
  let link = tail;
@@ -672,7 +672,7 @@ function cleanupDeps(sub) {
672
672
  const prev = link.prevDep;
673
673
  if (link.version === -1) {
674
674
  if (link === tail) tail = prev;
675
- removeSub(link);
675
+ removeSub(link, fromComputed);
676
676
  removeDep(link);
677
677
  } else {
678
678
  head = link;
@@ -727,7 +727,7 @@ function refreshComputed(computed) {
727
727
  } finally {
728
728
  activeSub = prevSub;
729
729
  shouldTrack = prevShouldTrack;
730
- cleanupDeps(computed);
730
+ cleanupDeps(computed, true);
731
731
  computed.flags &= ~2;
732
732
  }
733
733
  }
@@ -7182,7 +7182,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
7182
7182
  return vm;
7183
7183
  }
7184
7184
  }
7185
- Vue.version = `2.6.14-compat:${"3.5.7"}`;
7185
+ Vue.version = `2.6.14-compat:${"3.5.8"}`;
7186
7186
  Vue.config = singletonApp.config;
7187
7187
  Vue.use = (plugin, ...options) => {
7188
7188
  if (plugin && isFunction(plugin.install)) {
@@ -12351,7 +12351,7 @@ function isMemoSame(cached, memo) {
12351
12351
  return true;
12352
12352
  }
12353
12353
 
12354
- const version = "3.5.7";
12354
+ const version = "3.5.8";
12355
12355
  const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
12356
12356
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
12357
12357
  const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/compat v3.5.7
2
+ * @vue/compat v3.5.8
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -667,7 +667,7 @@ var Vue = (function () {
667
667
  link.dep.activeLink = link;
668
668
  }
669
669
  }
670
- function cleanupDeps(sub) {
670
+ function cleanupDeps(sub, fromComputed = false) {
671
671
  let head;
672
672
  let tail = sub.depsTail;
673
673
  let link = tail;
@@ -675,7 +675,7 @@ var Vue = (function () {
675
675
  const prev = link.prevDep;
676
676
  if (link.version === -1) {
677
677
  if (link === tail) tail = prev;
678
- removeSub(link);
678
+ removeSub(link, fromComputed);
679
679
  removeDep(link);
680
680
  } else {
681
681
  head = link;
@@ -730,7 +730,7 @@ var Vue = (function () {
730
730
  } finally {
731
731
  activeSub = prevSub;
732
732
  shouldTrack = prevShouldTrack;
733
- cleanupDeps(computed);
733
+ cleanupDeps(computed, true);
734
734
  computed.flags &= ~2;
735
735
  }
736
736
  }
@@ -7144,7 +7144,7 @@ If this is a native custom element, make sure to exclude it from component resol
7144
7144
  return vm;
7145
7145
  }
7146
7146
  }
7147
- Vue.version = `2.6.14-compat:${"3.5.7"}`;
7147
+ Vue.version = `2.6.14-compat:${"3.5.8"}`;
7148
7148
  Vue.config = singletonApp.config;
7149
7149
  Vue.use = (plugin, ...options) => {
7150
7150
  if (plugin && isFunction(plugin.install)) {
@@ -12222,7 +12222,7 @@ Component that was made reactive: `,
12222
12222
  return true;
12223
12223
  }
12224
12224
 
12225
- const version = "3.5.7";
12225
+ const version = "3.5.8";
12226
12226
  const warn = warn$1 ;
12227
12227
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
12228
12228
  const devtools = devtools$1 ;