@appsurify-testmap/rrweb 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.
@@ -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(() => {
@@ -18673,13 +18677,7 @@ class NavigationManager {
18673
18677
  this.cancelTimers();
18674
18678
  this.disconnectSettlingObserver();
18675
18679
  this.pendingNavigation = null;
18676
- requestAnimationFrame(() => {
18677
- requestAnimationFrame(() => {
18678
- if (!this.frozen && !this.locked && !this.disabled) {
18679
- this.onSnapshot(true);
18680
- }
18681
- });
18682
- });
18680
+ this.onSnapshot(true);
18683
18681
  }
18684
18682
  cancelTimers() {
18685
18683
  if (this.debounceTimer !== null) {
@@ -18789,7 +18787,7 @@ class ProcessedNodeManager {
18789
18787
  destroy() {
18790
18788
  }
18791
18789
  }
18792
- const version$1 = "3.3.0-alpha.1";
18790
+ const version$1 = "3.4.0-alpha.1";
18793
18791
  let wrappedEmit;
18794
18792
  let takeFullSnapshot$1;
18795
18793
  let canvasManager;
@@ -22388,7 +22386,7 @@ class Replayer {
22388
22386
  this.config.logger.log(REPLAY_CONSOLE_PREFIX, ...args);
22389
22387
  }
22390
22388
  }
22391
- const version = "3.3.0-alpha.1";
22389
+ const version = "3.4.0-alpha.1";
22392
22390
  const { getVersion } = record;
22393
22391
  const { isRecording } = record;
22394
22392
  const { flushCustomEventQueue } = record;