@multiplayer-app/session-recorder-browser 1.3.2 → 1.3.3

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.
@@ -24654,7 +24654,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
24654
24654
  const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
24655
24655
  const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
24656
24656
  const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
24657
- const PACKAGE_VERSION_EXPORT = "1.3.2" || 0;
24657
+ const PACKAGE_VERSION_EXPORT = "1.3.3" || 0;
24658
24658
  // Regex patterns for OpenTelemetry ignore URLs
24659
24659
  const OTEL_IGNORE_URLS = [
24660
24660
  // Traces endpoint
@@ -28097,7 +28097,8 @@ class SessionWidget extends lib0_observable__WEBPACK_IMPORTED_MODULE_9__.Observa
28097
28097
  const popover = this._initialPopoverVisible ? this.initialPopover : this.finalPopover;
28098
28098
  if (!isPopoverVisible || !target)
28099
28099
  return;
28100
- if (!(popover === null || popover === void 0 ? void 0 : popover.contains(target)) &&
28100
+ if (target !== this.hostElement &&
28101
+ !(popover === null || popover === void 0 ? void 0 : popover.contains(target)) &&
28101
28102
  !((_a = this.recorderButton) === null || _a === void 0 ? void 0 : _a.contains(target)) &&
28102
28103
  target !== this.recorderButton &&
28103
28104
  target !== popover) {