inertiax-core 11.0.13 → 11.0.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/dist/index.js +2 -0
- package/dist/index.js.map +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -517,6 +517,7 @@ var History = class {
|
|
|
517
517
|
const existing = this.getWindowState();
|
|
518
518
|
const previous = existing.frames[frameId] ?? {};
|
|
519
519
|
const nextState = {
|
|
520
|
+
...window.history.state,
|
|
520
521
|
frames: {
|
|
521
522
|
...existing.frames,
|
|
522
523
|
[frameId]: {
|
|
@@ -534,6 +535,7 @@ var History = class {
|
|
|
534
535
|
const existing = this.getWindowState();
|
|
535
536
|
const previous = existing.frames[frameId] ?? {};
|
|
536
537
|
const nextState = {
|
|
538
|
+
...window.history.state,
|
|
537
539
|
frames: {
|
|
538
540
|
...existing.frames,
|
|
539
541
|
[frameId]: {
|