@appsurify-testmap/rrweb-record 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-record.cjs +7 -11
- package/dist/rrweb-record.cjs.map +1 -1
- package/dist/rrweb-record.js +7 -11
- package/dist/rrweb-record.js.map +1 -1
- package/dist/rrweb-record.umd.cjs +7 -11
- 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
|
@@ -16552,8 +16552,12 @@ class NavigationManager {
|
|
|
16552
16552
|
this.locked = false;
|
|
16553
16553
|
}
|
|
16554
16554
|
destroy() {
|
|
16555
|
+
const hadPending = this.pendingNavigation !== null;
|
|
16555
16556
|
this.reset();
|
|
16556
16557
|
this.disabled = true;
|
|
16558
|
+
if (hadPending) {
|
|
16559
|
+
this.onSnapshot(true);
|
|
16560
|
+
}
|
|
16557
16561
|
}
|
|
16558
16562
|
startDebounce() {
|
|
16559
16563
|
this.debounceTimer = setTimeout(() => {
|
|
@@ -16578,9 +16582,7 @@ class NavigationManager {
|
|
|
16578
16582
|
});
|
|
16579
16583
|
this.settlingObserver.observe(this.doc, {
|
|
16580
16584
|
childList: true,
|
|
16581
|
-
subtree: true
|
|
16582
|
-
attributes: true,
|
|
16583
|
-
characterData: true
|
|
16585
|
+
subtree: true
|
|
16584
16586
|
});
|
|
16585
16587
|
this.settleCheckTimer = setTimeout(
|
|
16586
16588
|
() => this.checkSettled(),
|
|
@@ -16611,13 +16613,7 @@ class NavigationManager {
|
|
|
16611
16613
|
this.cancelTimers();
|
|
16612
16614
|
this.disconnectSettlingObserver();
|
|
16613
16615
|
this.pendingNavigation = null;
|
|
16614
|
-
|
|
16615
|
-
requestAnimationFrame(() => {
|
|
16616
|
-
if (!this.frozen && !this.locked && !this.disabled) {
|
|
16617
|
-
this.onSnapshot(true);
|
|
16618
|
-
}
|
|
16619
|
-
});
|
|
16620
|
-
});
|
|
16616
|
+
this.onSnapshot(true);
|
|
16621
16617
|
}
|
|
16622
16618
|
cancelTimers() {
|
|
16623
16619
|
if (this.debounceTimer !== null) {
|
|
@@ -16727,7 +16723,7 @@ class ProcessedNodeManager {
|
|
|
16727
16723
|
destroy() {
|
|
16728
16724
|
}
|
|
16729
16725
|
}
|
|
16730
|
-
const version$1 = "3.
|
|
16726
|
+
const version$1 = "3.5.0-alpha.1";
|
|
16731
16727
|
let wrappedEmit;
|
|
16732
16728
|
let takeFullSnapshot$1;
|
|
16733
16729
|
let canvasManager;
|