@tanstack/react-router 1.57.13 → 1.57.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tanstack/react-router",
3
- "version": "1.57.13",
3
+ "version": "1.57.15",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -55,8 +55,8 @@
55
55
  "@tanstack/history": "1.57.6"
56
56
  },
57
57
  "devDependencies": {
58
- "@testing-library/jest-dom": "^6.4.8",
59
- "@testing-library/react": "^16.0.0",
58
+ "@testing-library/jest-dom": "^6.5.0",
59
+ "@testing-library/react": "^16.0.1",
60
60
  "@vitejs/plugin-react": "^4.3.1",
61
61
  "combinate": "^1.1.11",
62
62
  "react": "^18.2.0",
@@ -66,7 +66,7 @@
66
66
  "peerDependencies": {
67
67
  "react": ">=18",
68
68
  "react-dom": ">=18",
69
- "@tanstack/router-generator": "1.57.13"
69
+ "@tanstack/router-generator": "1.57.15"
70
70
  },
71
71
  "peerDependenciesMeta": {
72
72
  "@tanstack/react-generator": {
package/src/router.ts CHANGED
@@ -306,7 +306,7 @@ export interface RouterOptions<
306
306
  */
307
307
  notFoundMode?: 'root' | 'fuzzy'
308
308
  /**
309
- * The default `gcTime` a route should use if no
309
+ * The default `gcTime` a route should use if no gcTime is provided.
310
310
  *
311
311
  * @default 1_800_000 `(30 minutes)`
312
312
  * @link [API Docs](https://tanstack.com/router/latest/docs/framework/react/api/router/RouterOptionsType#defaultgctime-property)
@@ -322,7 +322,6 @@ export interface RouterOptions<
322
322
  */
323
323
  caseSensitive?: boolean
324
324
  /**
325
- * __Required*__
326
325
  *
327
326
  * The route tree that will be used to configure the router instance.
328
327
  *