@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.
package/dist/vue.cjs.js CHANGED
@@ -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
  **/
@@ -717,7 +717,7 @@ function prepareDeps(sub) {
717
717
  link.dep.activeLink = link;
718
718
  }
719
719
  }
720
- function cleanupDeps(sub) {
720
+ function cleanupDeps(sub, fromComputed = false) {
721
721
  let head;
722
722
  let tail = sub.depsTail;
723
723
  let link = tail;
@@ -725,7 +725,7 @@ function cleanupDeps(sub) {
725
725
  const prev = link.prevDep;
726
726
  if (link.version === -1) {
727
727
  if (link === tail) tail = prev;
728
- removeSub(link);
728
+ removeSub(link, fromComputed);
729
729
  removeDep(link);
730
730
  } else {
731
731
  head = link;
@@ -780,7 +780,7 @@ function refreshComputed(computed) {
780
780
  } finally {
781
781
  activeSub = prevSub;
782
782
  shouldTrack = prevShouldTrack;
783
- cleanupDeps(computed);
783
+ cleanupDeps(computed, true);
784
784
  computed.flags &= ~2;
785
785
  }
786
786
  }
@@ -7203,7 +7203,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
7203
7203
  return vm;
7204
7204
  }
7205
7205
  }
7206
- Vue.version = `2.6.14-compat:${"3.5.7"}`;
7206
+ Vue.version = `2.6.14-compat:${"3.5.8"}`;
7207
7207
  Vue.config = singletonApp.config;
7208
7208
  Vue.use = (plugin, ...options) => {
7209
7209
  if (plugin && isFunction(plugin.install)) {
@@ -12318,7 +12318,7 @@ function isMemoSame(cached, memo) {
12318
12318
  return true;
12319
12319
  }
12320
12320
 
12321
- const version = "3.5.7";
12321
+ const version = "3.5.8";
12322
12322
  const warn = warn$1 ;
12323
12323
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
12324
12324
  const devtools = devtools$1 ;
@@ -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
  **/
@@ -623,7 +623,7 @@ function prepareDeps(sub) {
623
623
  link.dep.activeLink = link;
624
624
  }
625
625
  }
626
- function cleanupDeps(sub) {
626
+ function cleanupDeps(sub, fromComputed = false) {
627
627
  let head;
628
628
  let tail = sub.depsTail;
629
629
  let link = tail;
@@ -631,7 +631,7 @@ function cleanupDeps(sub) {
631
631
  const prev = link.prevDep;
632
632
  if (link.version === -1) {
633
633
  if (link === tail) tail = prev;
634
- removeSub(link);
634
+ removeSub(link, fromComputed);
635
635
  removeDep(link);
636
636
  } else {
637
637
  head = link;
@@ -686,7 +686,7 @@ function refreshComputed(computed) {
686
686
  } finally {
687
687
  activeSub = prevSub;
688
688
  shouldTrack = prevShouldTrack;
689
- cleanupDeps(computed);
689
+ cleanupDeps(computed, true);
690
690
  computed.flags &= ~2;
691
691
  }
692
692
  }
@@ -5792,7 +5792,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
5792
5792
  return vm;
5793
5793
  }
5794
5794
  }
5795
- Vue.version = `2.6.14-compat:${"3.5.7"}`;
5795
+ Vue.version = `2.6.14-compat:${"3.5.8"}`;
5796
5796
  Vue.config = singletonApp.config;
5797
5797
  Vue.use = (plugin, ...options) => {
5798
5798
  if (plugin && isFunction(plugin.install)) {
@@ -9913,7 +9913,7 @@ function isMemoSame(cached, memo) {
9913
9913
  return true;
9914
9914
  }
9915
9915
 
9916
- const version = "3.5.7";
9916
+ const version = "3.5.8";
9917
9917
  const warn$1 = NOOP;
9918
9918
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
9919
9919
  const devtools = 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
  **/
@@ -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
  }
@@ -7150,7 +7150,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
7150
7150
  return vm;
7151
7151
  }
7152
7152
  }
7153
- Vue.version = `2.6.14-compat:${"3.5.7"}`;
7153
+ Vue.version = `2.6.14-compat:${"3.5.8"}`;
7154
7154
  Vue.config = singletonApp.config;
7155
7155
  Vue.use = (plugin, ...options) => {
7156
7156
  if (plugin && isFunction(plugin.install)) {
@@ -12265,7 +12265,7 @@ function isMemoSame(cached, memo) {
12265
12265
  return true;
12266
12266
  }
12267
12267
 
12268
- const version = "3.5.7";
12268
+ const version = "3.5.8";
12269
12269
  const warn = warn$1 ;
12270
12270
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
12271
12271
  const devtools = devtools$1 ;