@vue/compat 3.4.13 → 3.4.14

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.13
2
+ * @vue/compat v3.4.14
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -630,7 +630,7 @@ function triggerEffects(dep, dirtyLevel, debuggerEventExtraInfo) {
630
630
  if (dep.get(effect2) !== effect2._trackId) {
631
631
  continue;
632
632
  }
633
- if (effect2._dirtyLevel < dirtyLevel) {
633
+ if (effect2._dirtyLevel < dirtyLevel && !(effect2._runnings && !effect2.allowRecurse)) {
634
634
  const lastDirtyLevel = effect2._dirtyLevel;
635
635
  effect2._dirtyLevel = dirtyLevel;
636
636
  if (lastDirtyLevel === 0) {
@@ -6526,7 +6526,7 @@ function createCompatVue$1(createApp, createSingletonApp) {
6526
6526
  return vm;
6527
6527
  }
6528
6528
  }
6529
- Vue.version = `2.6.14-compat:${"3.4.13"}`;
6529
+ Vue.version = `2.6.14-compat:${"3.4.14"}`;
6530
6530
  Vue.config = singletonApp.config;
6531
6531
  Vue.use = (p, ...options) => {
6532
6532
  if (p && isFunction(p.install)) {
@@ -11425,7 +11425,7 @@ function isMemoSame(cached, memo) {
11425
11425
  return true;
11426
11426
  }
11427
11427
 
11428
- const version = "3.4.13";
11428
+ const version = "3.4.14";
11429
11429
  const warn = !!(process.env.NODE_ENV !== "production") ? warn$1 : NOOP;
11430
11430
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
11431
11431
  const devtools = !!(process.env.NODE_ENV !== "production") || true ? devtools$1 : void 0;
@@ -1,5 +1,5 @@
1
1
  /**
2
- * @vue/compat v3.4.13
2
+ * @vue/compat v3.4.14
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -633,7 +633,7 @@ var Vue = (function () {
633
633
  if (dep.get(effect2) !== effect2._trackId) {
634
634
  continue;
635
635
  }
636
- if (effect2._dirtyLevel < dirtyLevel) {
636
+ if (effect2._dirtyLevel < dirtyLevel && !(effect2._runnings && !effect2.allowRecurse)) {
637
637
  const lastDirtyLevel = effect2._dirtyLevel;
638
638
  effect2._dirtyLevel = dirtyLevel;
639
639
  if (lastDirtyLevel === 0) {
@@ -6485,7 +6485,7 @@ If this is a native custom element, make sure to exclude it from component resol
6485
6485
  return vm;
6486
6486
  }
6487
6487
  }
6488
- Vue.version = `2.6.14-compat:${"3.4.13"}`;
6488
+ Vue.version = `2.6.14-compat:${"3.4.14"}`;
6489
6489
  Vue.config = singletonApp.config;
6490
6490
  Vue.use = (p, ...options) => {
6491
6491
  if (p && isFunction(p.install)) {
@@ -11300,7 +11300,7 @@ Component that was made reactive: `,
11300
11300
  return true;
11301
11301
  }
11302
11302
 
11303
- const version = "3.4.13";
11303
+ const version = "3.4.14";
11304
11304
  const warn = warn$1 ;
11305
11305
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
11306
11306
  const devtools = devtools$1 ;