@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.
@@ -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(() => {
@@ -16611,13 +16615,7 @@ class NavigationManager {
16611
16615
  this.cancelTimers();
16612
16616
  this.disconnectSettlingObserver();
16613
16617
  this.pendingNavigation = null;
16614
- requestAnimationFrame(() => {
16615
- requestAnimationFrame(() => {
16616
- if (!this.frozen && !this.locked && !this.disabled) {
16617
- this.onSnapshot(true);
16618
- }
16619
- });
16620
- });
16618
+ this.onSnapshot(true);
16621
16619
  }
16622
16620
  cancelTimers() {
16623
16621
  if (this.debounceTimer !== null) {
@@ -16727,7 +16725,7 @@ class ProcessedNodeManager {
16727
16725
  destroy() {
16728
16726
  }
16729
16727
  }
16730
- const version$1 = "3.3.0-alpha.1";
16728
+ const version$1 = "3.4.0-alpha.1";
16731
16729
  let wrappedEmit;
16732
16730
  let takeFullSnapshot$1;
16733
16731
  let canvasManager;