inertiax-core 11.0.23 → 11.0.24
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/index.js +8 -0
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
- package/types/router.d.ts +6 -0
package/dist/index.js
CHANGED
|
@@ -3336,6 +3336,14 @@ var Router = class {
|
|
|
3336
3336
|
restore(key = "default") {
|
|
3337
3337
|
return history.restore(key, this.frameId);
|
|
3338
3338
|
}
|
|
3339
|
+
/**
|
|
3340
|
+
* Restore scroll positions from history state for this frame.
|
|
3341
|
+
* Call after programmatically restoring a frame from history (e.g.
|
|
3342
|
+
* when mounting a Frame that loads page data from the history stack).
|
|
3343
|
+
*/
|
|
3344
|
+
restoreScroll() {
|
|
3345
|
+
Scroll.restore(history.getScrollRegions(), this.frameId);
|
|
3346
|
+
}
|
|
3339
3347
|
on(type, callback) {
|
|
3340
3348
|
if (typeof window === "undefined") {
|
|
3341
3349
|
return () => {
|