@vue/runtime-dom 3.6.0-alpha.1 → 3.6.0-alpha.2

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.6.0-alpha.1
2
+ * @vue/runtime-dom v3.6.0-alpha.2
3
3
  * (c) 2018-present Yuxi (Evan) You and Vue contributors
4
4
  * @license MIT
5
5
  **/
@@ -459,9 +459,6 @@ var VueRuntimeDOM = (function (exports) {
459
459
  }
460
460
  }
461
461
  const prevSub = dep.subsTail;
462
- if (prevSub !== void 0 && prevSub.sub === sub && (!recursedCheck || isValidLink(prevSub, sub))) {
463
- return;
464
- }
465
462
  const newLink = sub.depsTail = dep.subsTail = {
466
463
  dep,
467
464
  sub,
@@ -1935,14 +1932,12 @@ var VueRuntimeDOM = (function (exports) {
1935
1932
  }
1936
1933
  }
1937
1934
  run(fn) {
1938
- const prevSub = setActiveSub();
1939
1935
  const prevScope = activeEffectScope;
1940
1936
  try {
1941
1937
  activeEffectScope = this;
1942
1938
  return fn();
1943
1939
  } finally {
1944
1940
  activeEffectScope = prevScope;
1945
- setActiveSub(prevSub);
1946
1941
  }
1947
1942
  }
1948
1943
  stop() {
@@ -2838,7 +2833,7 @@ var VueRuntimeDOM = (function (exports) {
2838
2833
  newComp = normalizeClassComponent(newComp);
2839
2834
  updateComponentDef(record.initialDef, newComp);
2840
2835
  const instances = [...record.instances];
2841
- if (newComp.vapor) {
2836
+ if (newComp.__vapor) {
2842
2837
  for (const instance of instances) {
2843
2838
  instance.hmrReload(newComp);
2844
2839
  }
@@ -8603,7 +8598,7 @@ If you want to remount the same app, move your app creation logic into a factory
8603
8598
  }
8604
8599
  }
8605
8600
  function locateNonHydratedAsyncRoot(instance) {
8606
- const subComponent = instance.subTree.component;
8601
+ const subComponent = instance.vapor ? null : instance.subTree.component;
8607
8602
  if (subComponent) {
8608
8603
  if (subComponent.asyncDep && !subComponent.asyncResolved) {
8609
8604
  return subComponent;
@@ -10910,7 +10905,7 @@ Component that was made reactive: `,
10910
10905
  return true;
10911
10906
  }
10912
10907
 
10913
- const version = "3.6.0-alpha.1";
10908
+ const version = "3.6.0-alpha.2";
10914
10909
  const warn = warn$1 ;
10915
10910
  const ErrorTypeStrings = ErrorTypeStrings$1 ;
10916
10911
  const devtools = devtools$1 ;