@tanstack/react-router 1.132.31 → 1.132.33

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.
@@ -166,10 +166,6 @@ Object.defineProperty(exports, "retainSearchParams", {
166
166
  enumerable: true,
167
167
  get: () => routerCore.retainSearchParams
168
168
  });
169
- Object.defineProperty(exports, "rewriteBasepath", {
170
- enumerable: true,
171
- get: () => routerCore.rewriteBasepath
172
- });
173
169
  Object.defineProperty(exports, "rootRouteId", {
174
170
  enumerable: true,
175
171
  get: () => routerCore.rootRouteId
@@ -1 +1 @@
1
- {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
1
+ {"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
@@ -50,5 +50,5 @@ export { Asset } from './Asset.cjs';
50
50
  export { HeadContent } from './HeadContent.cjs';
51
51
  export { Scripts } from './Scripts.cjs';
52
52
  export type * from './ssr/serializer.cjs';
53
- export { rewriteBasepath, composeRewrites } from '@tanstack/router-core';
53
+ export { composeRewrites } from '@tanstack/router-core';
54
54
  export type { LocationRewrite, LocationRewriteFunction, } from '@tanstack/router-core';
@@ -50,5 +50,5 @@ export { Asset } from './Asset.js';
50
50
  export { HeadContent } from './HeadContent.js';
51
51
  export { Scripts } from './Scripts.js';
52
52
  export type * from './ssr/serializer.js';
53
- export { rewriteBasepath, composeRewrites } from '@tanstack/router-core';
53
+ export { composeRewrites } from '@tanstack/router-core';
54
54
  export type { LocationRewrite, LocationRewriteFunction, } from '@tanstack/router-core';
package/dist/esm/index.js CHANGED
@@ -1,4 +1,4 @@
1
- import { PathParamError, SearchParamError, TSR_DEFERRED_PROMISE, cleanPath, componentTypes, composeRewrites, createControlledPromise, createRouterConfig, createSerializationAdapter, deepEqual, defaultParseSearch, defaultSerializeError, defaultStringifySearch, defer, functionalUpdate, getInitialRouterState, interpolatePath, isMatch, isNotFound, isPlainArray, isPlainObject, isRedirect, joinPaths, lazyFn, matchByPath, matchPathname, notFound, parsePathname, parseSearchWith, redirect, replaceEqualDeep, resolvePath, retainSearchParams, rewriteBasepath, rootRouteId, stringifySearchWith, stripSearchParams, trimPath, trimPathLeft, trimPathRight } from "@tanstack/router-core";
1
+ import { PathParamError, SearchParamError, TSR_DEFERRED_PROMISE, cleanPath, componentTypes, composeRewrites, createControlledPromise, createRouterConfig, createSerializationAdapter, deepEqual, defaultParseSearch, defaultSerializeError, defaultStringifySearch, defer, functionalUpdate, getInitialRouterState, interpolatePath, isMatch, isNotFound, isPlainArray, isPlainObject, isRedirect, joinPaths, lazyFn, matchByPath, matchPathname, notFound, parsePathname, parseSearchWith, redirect, replaceEqualDeep, resolvePath, retainSearchParams, rootRouteId, stringifySearchWith, stripSearchParams, trimPath, trimPathLeft, trimPathRight } from "@tanstack/router-core";
2
2
  import { createBrowserHistory, createHashHistory, createHistory, createMemoryHistory } from "@tanstack/history";
3
3
  import { Await, useAwaited } from "./awaited.js";
4
4
  import { CatchBoundary, ErrorComponent } from "./CatchBoundary.js";
@@ -112,7 +112,6 @@ export {
112
112
  replaceEqualDeep,
113
113
  resolvePath,
114
114
  retainSearchParams,
115
- rewriteBasepath,
116
115
  rootRouteId,
117
116
  rootRouteWithContext,
118
117
  stringifySearchWith,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-router",
3
- "version": "1.132.31",
3
+ "version": "1.132.33",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -80,7 +80,7 @@
80
80
  "tiny-invariant": "^1.3.3",
81
81
  "tiny-warning": "^1.0.3",
82
82
  "@tanstack/history": "1.132.31",
83
- "@tanstack/router-core": "1.132.31"
83
+ "@tanstack/router-core": "1.132.33"
84
84
  },
85
85
  "devDependencies": {
86
86
  "@testing-library/jest-dom": "^6.6.3",
package/src/index.tsx CHANGED
@@ -349,7 +349,7 @@ export { Asset } from './Asset'
349
349
  export { HeadContent } from './HeadContent'
350
350
  export { Scripts } from './Scripts'
351
351
  export type * from './ssr/serializer'
352
- export { rewriteBasepath, composeRewrites } from '@tanstack/router-core'
352
+ export { composeRewrites } from '@tanstack/router-core'
353
353
  export type {
354
354
  LocationRewrite,
355
355
  LocationRewriteFunction,