@appsurify-testmap/rrweb-all 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.
@@ -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(() => {
@@ -18099,9 +18103,7 @@ class NavigationManager {
18099
18103
  });
18100
18104
  this.settlingObserver.observe(this.doc, {
18101
18105
  childList: true,
18102
- subtree: true,
18103
- attributes: true,
18104
- characterData: true
18106
+ subtree: true
18105
18107
  });
18106
18108
  this.settleCheckTimer = setTimeout(
18107
18109
  () => this.checkSettled(),
@@ -18130,13 +18132,7 @@ class NavigationManager {
18130
18132
  this.cancelTimers();
18131
18133
  this.disconnectSettlingObserver();
18132
18134
  this.pendingNavigation = null;
18133
- requestAnimationFrame(() => {
18134
- requestAnimationFrame(() => {
18135
- if (!this.frozen && !this.locked && !this.disabled) {
18136
- this.onSnapshot(true);
18137
- }
18138
- });
18139
- });
18135
+ this.onSnapshot(true);
18140
18136
  }
18141
18137
  cancelTimers() {
18142
18138
  if (this.debounceTimer !== null) {
@@ -18242,7 +18238,7 @@ class ProcessedNodeManager {
18242
18238
  destroy() {
18243
18239
  }
18244
18240
  }
18245
- const version$1 = "3.3.0-alpha.1";
18241
+ const version$1 = "3.5.0-alpha.1";
18246
18242
  let wrappedEmit;
18247
18243
  let takeFullSnapshot$1;
18248
18244
  let canvasManager;
@@ -21813,7 +21809,7 @@ class Replayer {
21813
21809
  this.config.logger.log(REPLAY_CONSOLE_PREFIX, ...args);
21814
21810
  }
21815
21811
  }
21816
- const version = "3.3.0-alpha.1";
21812
+ const version = "3.5.0-alpha.1";
21817
21813
  const { getVersion } = record;
21818
21814
  const { isRecording } = record;
21819
21815
  const { flushCustomEventQueue } = record;