@tanstack/react-router 1.132.30 → 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.
- package/dist/cjs/index.cjs +0 -4
- package/dist/cjs/index.cjs.map +1 -1
- package/dist/cjs/index.d.cts +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -2
- package/package.json +3 -3
- package/src/index.tsx +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -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
|
package/dist/cjs/index.cjs.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"index.cjs","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;"}
|
package/dist/cjs/index.d.cts
CHANGED
|
@@ -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 {
|
|
53
|
+
export { composeRewrites } from '@tanstack/router-core';
|
|
54
54
|
export type { LocationRewrite, LocationRewriteFunction, } from '@tanstack/router-core';
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -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 {
|
|
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,
|
|
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.
|
|
3
|
+
"version": "1.132.33",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -79,8 +79,8 @@
|
|
|
79
79
|
"isbot": "^5.1.22",
|
|
80
80
|
"tiny-invariant": "^1.3.3",
|
|
81
81
|
"tiny-warning": "^1.0.3",
|
|
82
|
-
"@tanstack/history": "1.132.
|
|
83
|
-
"@tanstack/router-core": "1.132.
|
|
82
|
+
"@tanstack/history": "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 {
|
|
352
|
+
export { composeRewrites } from '@tanstack/router-core'
|
|
353
353
|
export type {
|
|
354
354
|
LocationRewrite,
|
|
355
355
|
LocationRewriteFunction,
|