@tanstack/react-router 1.111.7 → 1.112.0

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.111.7",
3
+ "version": "1.112.0",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -54,7 +54,7 @@
54
54
  "tiny-invariant": "^1.3.3",
55
55
  "tiny-warning": "^1.0.3",
56
56
  "@tanstack/history": "1.99.13",
57
- "@tanstack/router-core": "^1.111.7"
57
+ "@tanstack/router-core": "^1.112.0"
58
58
  },
59
59
  "devDependencies": {
60
60
  "@testing-library/jest-dom": "^6.6.3",
package/src/router.ts CHANGED
@@ -292,7 +292,6 @@ export interface RouterOptions<
292
292
  *
293
293
  * @default false
294
294
  * @link [API Docs](https://tanstack.com/router/latest/docs/framework/react/api/router/RouterOptionsType#casesensitive-property)
295
- * @link [Guide](https://tanstack.com/router/latest/docs/framework/react/guide/route-trees#case-sensitivity)
296
295
  */
297
296
  caseSensitive?: boolean
298
297
  /**
@@ -300,7 +299,7 @@ export interface RouterOptions<
300
299
  * The route tree that will be used to configure the router instance.
301
300
  *
302
301
  * @link [API Docs](https://tanstack.com/router/latest/docs/framework/react/api/router/RouterOptionsType#routetree-property)
303
- * @link [Guide](https://tanstack.com/router/latest/docs/framework/react/guide/route-trees)
302
+ * @link [Guide](https://tanstack.com/router/latest/docs/framework/react/routing/route-trees)
304
303
  */
305
304
  routeTree?: TRouteTree
306
305
  /**