@appsurify-testmap/rrweb-all 3.3.0-alpha.1 → 3.5.0-alpha.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/dist/rrweb-all.cjs +8 -12
- package/dist/rrweb-all.cjs.map +1 -1
- package/dist/rrweb-all.js +8 -12
- package/dist/rrweb-all.js.map +1 -1
- package/dist/rrweb-all.umd.cjs +8 -12
- package/dist/rrweb-all.umd.cjs.map +2 -2
- package/dist/rrweb-all.umd.min.cjs +2 -2
- package/dist/rrweb-all.umd.min.cjs.map +3 -3
- package/package.json +4 -4
package/dist/rrweb-all.cjs
CHANGED
|
@@ -18074,8 +18074,12 @@ class NavigationManager {
|
|
|
18074
18074
|
this.locked = false;
|
|
18075
18075
|
}
|
|
18076
18076
|
destroy() {
|
|
18077
|
+
const hadPending = this.pendingNavigation !== null;
|
|
18077
18078
|
this.reset();
|
|
18078
18079
|
this.disabled = true;
|
|
18080
|
+
if (hadPending) {
|
|
18081
|
+
this.onSnapshot(true);
|
|
18082
|
+
}
|
|
18079
18083
|
}
|
|
18080
18084
|
startDebounce() {
|
|
18081
18085
|
this.debounceTimer = setTimeout(() => {
|
|
@@ -18099,9 +18103,7 @@ class NavigationManager {
|
|
|
18099
18103
|
});
|
|
18100
18104
|
this.settlingObserver.observe(this.doc, {
|
|
18101
18105
|
childList: true,
|
|
18102
|
-
subtree: true
|
|
18103
|
-
attributes: true,
|
|
18104
|
-
characterData: true
|
|
18106
|
+
subtree: true
|
|
18105
18107
|
});
|
|
18106
18108
|
this.settleCheckTimer = setTimeout(
|
|
18107
18109
|
() => this.checkSettled(),
|
|
@@ -18130,13 +18132,7 @@ class NavigationManager {
|
|
|
18130
18132
|
this.cancelTimers();
|
|
18131
18133
|
this.disconnectSettlingObserver();
|
|
18132
18134
|
this.pendingNavigation = null;
|
|
18133
|
-
|
|
18134
|
-
requestAnimationFrame(() => {
|
|
18135
|
-
if (!this.frozen && !this.locked && !this.disabled) {
|
|
18136
|
-
this.onSnapshot(true);
|
|
18137
|
-
}
|
|
18138
|
-
});
|
|
18139
|
-
});
|
|
18135
|
+
this.onSnapshot(true);
|
|
18140
18136
|
}
|
|
18141
18137
|
cancelTimers() {
|
|
18142
18138
|
if (this.debounceTimer !== null) {
|
|
@@ -18242,7 +18238,7 @@ class ProcessedNodeManager {
|
|
|
18242
18238
|
destroy() {
|
|
18243
18239
|
}
|
|
18244
18240
|
}
|
|
18245
|
-
const version$1 = "3.
|
|
18241
|
+
const version$1 = "3.5.0-alpha.1";
|
|
18246
18242
|
let wrappedEmit;
|
|
18247
18243
|
let takeFullSnapshot$1;
|
|
18248
18244
|
let canvasManager;
|
|
@@ -21813,7 +21809,7 @@ class Replayer {
|
|
|
21813
21809
|
this.config.logger.log(REPLAY_CONSOLE_PREFIX, ...args);
|
|
21814
21810
|
}
|
|
21815
21811
|
}
|
|
21816
|
-
const version = "3.
|
|
21812
|
+
const version = "3.5.0-alpha.1";
|
|
21817
21813
|
const { getVersion } = record;
|
|
21818
21814
|
const { isRecording } = record;
|
|
21819
21815
|
const { flushCustomEventQueue } = record;
|