@appsurify-testmap/rrweb-all 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.
@@ -18074,8 +18074,12 @@ class NavigationManager {
18074
18074
  this.locked = false;
18075
18075
  }
18076
18076
  destroy() {
18077
+ const hadPending = this.pendingNavigation !== null;
18077
18078
  this.reset();
18078
18079
  this.disabled = true;
18080
+ if (hadPending) {
18081
+ this.onSnapshot(true);
18082
+ }
18079
18083
  }
18080
18084
  startDebounce() {
18081
18085
  this.debounceTimer = setTimeout(() => {
@@ -18130,13 +18134,7 @@ class NavigationManager {
18130
18134
  this.cancelTimers();
18131
18135
  this.disconnectSettlingObserver();
18132
18136
  this.pendingNavigation = null;
18133
- requestAnimationFrame(() => {
18134
- requestAnimationFrame(() => {
18135
- if (!this.frozen && !this.locked && !this.disabled) {
18136
- this.onSnapshot(true);
18137
- }
18138
- });
18139
- });
18137
+ this.onSnapshot(true);
18140
18138
  }
18141
18139
  cancelTimers() {
18142
18140
  if (this.debounceTimer !== null) {
@@ -18242,7 +18240,7 @@ class ProcessedNodeManager {
18242
18240
  destroy() {
18243
18241
  }
18244
18242
  }
18245
- const version$1 = "3.3.0-alpha.1";
18243
+ const version$1 = "3.4.0-alpha.1";
18246
18244
  let wrappedEmit;
18247
18245
  let takeFullSnapshot$1;
18248
18246
  let canvasManager;
@@ -21813,7 +21811,7 @@ class Replayer {
21813
21811
  this.config.logger.log(REPLAY_CONSOLE_PREFIX, ...args);
21814
21812
  }
21815
21813
  }
21816
- const version = "3.3.0-alpha.1";
21814
+ const version = "3.4.0-alpha.1";
21817
21815
  const { getVersion } = record;
21818
21816
  const { isRecording } = record;
21819
21817
  const { flushCustomEventQueue } = record;