@tanstack/router-core 1.167.0 → 1.167.1

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/router-core",
3
- "version": "1.167.0",
3
+ "version": "1.167.1",
4
4
  "description": "Modern and scalable routing for React applications",
5
5
  "author": "Tanner Linsley",
6
6
  "license": "MIT",
@@ -150,7 +150,7 @@
150
150
  "seroval-plugins": "^1.4.2",
151
151
  "tiny-invariant": "^1.3.3",
152
152
  "tiny-warning": "^1.0.3",
153
- "@tanstack/history": "1.161.4"
153
+ "@tanstack/history": "1.161.5"
154
154
  },
155
155
  "devDependencies": {
156
156
  "esbuild": "^0.25.0",
package/src/router.ts CHANGED
@@ -800,6 +800,8 @@ export interface ServerSsr {
800
800
  isDehydrated: () => boolean
801
801
  isSerializationFinished: () => boolean
802
802
  onRenderFinished: (listener: () => void) => void
803
+ setRenderFinished: () => void
804
+ cleanup: () => void
803
805
  onSerializationFinished: (listener: () => void) => void
804
806
  dehydrate: () => Promise<void>
805
807
  takeBufferedScripts: () => RouterManagedTag | undefined