@appsurify-testmap/rrweb 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.
@@ -18614,8 +18614,12 @@ class NavigationManager {
18614
18614
  this.locked = false;
18615
18615
  }
18616
18616
  destroy() {
18617
+ const hadPending = this.pendingNavigation !== null;
18617
18618
  this.reset();
18618
18619
  this.disabled = true;
18620
+ if (hadPending) {
18621
+ this.onSnapshot(true);
18622
+ }
18619
18623
  }
18620
18624
  startDebounce() {
18621
18625
  this.debounceTimer = setTimeout(() => {
@@ -18640,9 +18644,7 @@ class NavigationManager {
18640
18644
  });
18641
18645
  this.settlingObserver.observe(this.doc, {
18642
18646
  childList: true,
18643
- subtree: true,
18644
- attributes: true,
18645
- characterData: true
18647
+ subtree: true
18646
18648
  });
18647
18649
  this.settleCheckTimer = setTimeout(
18648
18650
  () => this.checkSettled(),
@@ -18673,13 +18675,7 @@ class NavigationManager {
18673
18675
  this.cancelTimers();
18674
18676
  this.disconnectSettlingObserver();
18675
18677
  this.pendingNavigation = null;
18676
- requestAnimationFrame(() => {
18677
- requestAnimationFrame(() => {
18678
- if (!this.frozen && !this.locked && !this.disabled) {
18679
- this.onSnapshot(true);
18680
- }
18681
- });
18682
- });
18678
+ this.onSnapshot(true);
18683
18679
  }
18684
18680
  cancelTimers() {
18685
18681
  if (this.debounceTimer !== null) {
@@ -18789,7 +18785,7 @@ class ProcessedNodeManager {
18789
18785
  destroy() {
18790
18786
  }
18791
18787
  }
18792
- const version$1 = "3.3.0-alpha.1";
18788
+ const version$1 = "3.5.0-alpha.1";
18793
18789
  let wrappedEmit;
18794
18790
  let takeFullSnapshot$1;
18795
18791
  let canvasManager;
@@ -22388,7 +22384,7 @@ class Replayer {
22388
22384
  this.config.logger.log(REPLAY_CONSOLE_PREFIX, ...args);
22389
22385
  }
22390
22386
  }
22391
- const version = "3.3.0-alpha.1";
22387
+ const version = "3.5.0-alpha.1";
22392
22388
  const { getVersion } = record;
22393
22389
  const { isRecording } = record;
22394
22390
  const { flushCustomEventQueue } = record;