@tanstack/router-core 1.120.4-alpha.13 → 1.120.4-alpha.15

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.
@@ -48,6 +48,7 @@ class RouterCore {
48
48
  this.isScrollRestoring = false;
49
49
  this.isScrollRestorationSetup = false;
50
50
  this.startTransition = (fn) => fn();
51
+ this.isShell = false;
51
52
  this.update = (newOptions) => {
52
53
  var _a;
53
54
  if (newOptions.notFoundRoute) {
@@ -102,6 +103,9 @@ class RouterCore {
102
103
  "selector(:active-view-transition-type(a)"
103
104
  );
104
105
  }
106
+ if (this.latestLocation.search.__TSS_SHELL) {
107
+ this.isShell = true;
108
+ }
105
109
  };
106
110
  this.buildRouteTree = () => {
107
111
  const { routesById, routesByPath, flatRoutes } = processRouteTree({