@appsurify-testmap/rrweb-record 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.
@@ -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(() => {
@@ -16109,13 +16113,7 @@ class NavigationManager {
16109
16113
  this.cancelTimers();
16110
16114
  this.disconnectSettlingObserver();
16111
16115
  this.pendingNavigation = null;
16112
- requestAnimationFrame(() => {
16113
- requestAnimationFrame(() => {
16114
- if (!this.frozen && !this.locked && !this.disabled) {
16115
- this.onSnapshot(true);
16116
- }
16117
- });
16118
- });
16116
+ this.onSnapshot(true);
16119
16117
  }
16120
16118
  cancelTimers() {
16121
16119
  if (this.debounceTimer !== null) {
@@ -16221,7 +16219,7 @@ class ProcessedNodeManager {
16221
16219
  destroy() {
16222
16220
  }
16223
16221
  }
16224
- const version$1 = "3.3.0-alpha.1";
16222
+ const version$1 = "3.4.0-alpha.1";
16225
16223
  let wrappedEmit;
16226
16224
  let takeFullSnapshot$1;
16227
16225
  let canvasManager;