@appsurify-testmap/rrweb-record 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.
@@ -16053,8 +16053,12 @@ class NavigationManager {
16053
16053
  this.locked = false;
16054
16054
  }
16055
16055
  destroy() {
16056
+ const hadPending = this.pendingNavigation !== null;
16056
16057
  this.reset();
16057
16058
  this.disabled = true;
16059
+ if (hadPending) {
16060
+ this.onSnapshot(true);
16061
+ }
16058
16062
  }
16059
16063
  startDebounce() {
16060
16064
  this.debounceTimer = setTimeout(() => {
@@ -16078,9 +16082,7 @@ class NavigationManager {
16078
16082
  });
16079
16083
  this.settlingObserver.observe(this.doc, {
16080
16084
  childList: true,
16081
- subtree: true,
16082
- attributes: true,
16083
- characterData: true
16085
+ subtree: true
16084
16086
  });
16085
16087
  this.settleCheckTimer = setTimeout(
16086
16088
  () => this.checkSettled(),
@@ -16109,13 +16111,7 @@ class NavigationManager {
16109
16111
  this.cancelTimers();
16110
16112
  this.disconnectSettlingObserver();
16111
16113
  this.pendingNavigation = null;
16112
- requestAnimationFrame(() => {
16113
- requestAnimationFrame(() => {
16114
- if (!this.frozen && !this.locked && !this.disabled) {
16115
- this.onSnapshot(true);
16116
- }
16117
- });
16118
- });
16114
+ this.onSnapshot(true);
16119
16115
  }
16120
16116
  cancelTimers() {
16121
16117
  if (this.debounceTimer !== null) {
@@ -16221,7 +16217,7 @@ class ProcessedNodeManager {
16221
16217
  destroy() {
16222
16218
  }
16223
16219
  }
16224
- const version$1 = "3.3.0-alpha.1";
16220
+ const version$1 = "3.5.0-alpha.1";
16225
16221
  let wrappedEmit;
16226
16222
  let takeFullSnapshot$1;
16227
16223
  let canvasManager;