@appsurify-testmap/rrweb-record 3.3.0-alpha.1 → 3.4.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-record.cjs +6 -8
- package/dist/rrweb-record.cjs.map +1 -1
- package/dist/rrweb-record.js +6 -8
- package/dist/rrweb-record.js.map +1 -1
- package/dist/rrweb-record.umd.cjs +6 -8
- package/dist/rrweb-record.umd.cjs.map +2 -2
- package/dist/rrweb-record.umd.min.cjs +15 -15
- package/dist/rrweb-record.umd.min.cjs.map +3 -3
- package/package.json +4 -4
package/dist/rrweb-record.js
CHANGED
|
@@ -16053,8 +16053,12 @@ class NavigationManager {
|
|
|
16053
16053
|
this.locked = false;
|
|
16054
16054
|
}
|
|
16055
16055
|
destroy() {
|
|
16056
|
+
const hadPending = this.pendingNavigation !== null;
|
|
16056
16057
|
this.reset();
|
|
16057
16058
|
this.disabled = true;
|
|
16059
|
+
if (hadPending) {
|
|
16060
|
+
this.onSnapshot(true);
|
|
16061
|
+
}
|
|
16058
16062
|
}
|
|
16059
16063
|
startDebounce() {
|
|
16060
16064
|
this.debounceTimer = setTimeout(() => {
|
|
@@ -16109,13 +16113,7 @@ class NavigationManager {
|
|
|
16109
16113
|
this.cancelTimers();
|
|
16110
16114
|
this.disconnectSettlingObserver();
|
|
16111
16115
|
this.pendingNavigation = null;
|
|
16112
|
-
|
|
16113
|
-
requestAnimationFrame(() => {
|
|
16114
|
-
if (!this.frozen && !this.locked && !this.disabled) {
|
|
16115
|
-
this.onSnapshot(true);
|
|
16116
|
-
}
|
|
16117
|
-
});
|
|
16118
|
-
});
|
|
16116
|
+
this.onSnapshot(true);
|
|
16119
16117
|
}
|
|
16120
16118
|
cancelTimers() {
|
|
16121
16119
|
if (this.debounceTimer !== null) {
|
|
@@ -16221,7 +16219,7 @@ class ProcessedNodeManager {
|
|
|
16221
16219
|
destroy() {
|
|
16222
16220
|
}
|
|
16223
16221
|
}
|
|
16224
|
-
const version$1 = "3.
|
|
16222
|
+
const version$1 = "3.4.0-alpha.1";
|
|
16225
16223
|
let wrappedEmit;
|
|
16226
16224
|
let takeFullSnapshot$1;
|
|
16227
16225
|
let canvasManager;
|