@tanstack/react-router 1.85.2 → 1.85.3
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.d.cts +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/package.json +3 -3
- package/src/index.tsx +7 -1
package/dist/cjs/index.d.cts
CHANGED
|
@@ -60,6 +60,6 @@ export { notFound, isNotFound, CatchNotFound, DefaultGlobalNotFound, } from './n
|
|
|
60
60
|
export type { NotFoundError } from './not-found.cjs';
|
|
61
61
|
export type { Manifest, RouterManagedTag } from './manifest.cjs';
|
|
62
62
|
export { createControlledPromise } from './utils.cjs';
|
|
63
|
-
export type { ControlledPromise, Constrain, Expand, MergeAll } from './utils.cjs';
|
|
63
|
+
export type { ControlledPromise, Constrain, Expand, MergeAll, Assign, } from './utils.cjs';
|
|
64
64
|
export type { ResolveValidatorInput, ResolveValidatorOutput, AnyValidator, DefaultValidator, ValidatorFn, AnySchema, AnyValidatorAdapter, AnyValidatorFn, AnyValidatorObj, ResolveValidatorInputFn, ResolveValidatorOutputFn, ResolveSearchValidatorInput, ResolveSearchValidatorInputFn, Validator, ValidatorAdapter, ValidatorObj, } from './validators.cjs';
|
|
65
65
|
export { retainSearchParams, stripSearchParams } from './searchMiddleware.cjs';
|
package/dist/esm/index.d.ts
CHANGED
|
@@ -60,6 +60,6 @@ export { notFound, isNotFound, CatchNotFound, DefaultGlobalNotFound, } from './n
|
|
|
60
60
|
export type { NotFoundError } from './not-found.js';
|
|
61
61
|
export type { Manifest, RouterManagedTag } from './manifest.js';
|
|
62
62
|
export { createControlledPromise } from './utils.js';
|
|
63
|
-
export type { ControlledPromise, Constrain, Expand, MergeAll } from './utils.js';
|
|
63
|
+
export type { ControlledPromise, Constrain, Expand, MergeAll, Assign, } from './utils.js';
|
|
64
64
|
export type { ResolveValidatorInput, ResolveValidatorOutput, AnyValidator, DefaultValidator, ValidatorFn, AnySchema, AnyValidatorAdapter, AnyValidatorFn, AnyValidatorObj, ResolveValidatorInputFn, ResolveValidatorOutputFn, ResolveSearchValidatorInput, ResolveSearchValidatorInputFn, Validator, ValidatorAdapter, ValidatorObj, } from './validators.js';
|
|
65
65
|
export { retainSearchParams, stripSearchParams } from './searchMiddleware.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tanstack/react-router",
|
|
3
|
-
"version": "1.85.
|
|
3
|
+
"version": "1.85.3",
|
|
4
4
|
"description": "Modern and scalable routing for React applications",
|
|
5
5
|
"author": "Tanner Linsley",
|
|
6
6
|
"license": "MIT",
|
|
@@ -53,7 +53,7 @@
|
|
|
53
53
|
"jsesc": "^3.0.2",
|
|
54
54
|
"tiny-invariant": "^1.3.3",
|
|
55
55
|
"tiny-warning": "^1.0.3",
|
|
56
|
-
"@tanstack/history": "1.
|
|
56
|
+
"@tanstack/history": "1.85.3"
|
|
57
57
|
},
|
|
58
58
|
"devDependencies": {
|
|
59
59
|
"@testing-library/jest-dom": "^6.6.3",
|
|
@@ -68,7 +68,7 @@
|
|
|
68
68
|
"peerDependencies": {
|
|
69
69
|
"react": ">=18",
|
|
70
70
|
"react-dom": ">=18",
|
|
71
|
-
"@tanstack/router-generator": "1.85.
|
|
71
|
+
"@tanstack/router-generator": "1.85.3"
|
|
72
72
|
},
|
|
73
73
|
"peerDependenciesMeta": {
|
|
74
74
|
"@tanstack/router-generator": {
|
package/src/index.tsx
CHANGED
|
@@ -344,7 +344,13 @@ export type { NotFoundError } from './not-found'
|
|
|
344
344
|
export type { Manifest, RouterManagedTag } from './manifest'
|
|
345
345
|
|
|
346
346
|
export { createControlledPromise } from './utils'
|
|
347
|
-
export type {
|
|
347
|
+
export type {
|
|
348
|
+
ControlledPromise,
|
|
349
|
+
Constrain,
|
|
350
|
+
Expand,
|
|
351
|
+
MergeAll,
|
|
352
|
+
Assign,
|
|
353
|
+
} from './utils'
|
|
348
354
|
|
|
349
355
|
export type {
|
|
350
356
|
ResolveValidatorInput,
|