@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.
package/dist/index.js CHANGED
@@ -23716,7 +23716,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
23716
23716
  const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
23717
23717
  const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
23718
23718
  const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
23719
- const PACKAGE_VERSION_EXPORT = "1.3.2" || 0;
23719
+ const PACKAGE_VERSION_EXPORT = "1.3.3" || 0;
23720
23720
  // Regex patterns for OpenTelemetry ignore URLs
23721
23721
  const OTEL_IGNORE_URLS = [
23722
23722
  // Traces endpoint
@@ -27089,7 +27089,8 @@ class SessionWidget extends lib0_observable__WEBPACK_IMPORTED_MODULE_9__.Observa
27089
27089
  const popover = this._initialPopoverVisible ? this.initialPopover : this.finalPopover;
27090
27090
  if (!isPopoverVisible || !target)
27091
27091
  return;
27092
- if (!(popover === null || popover === void 0 ? void 0 : popover.contains(target)) &&
27092
+ if (target !== this.hostElement &&
27093
+ !(popover === null || popover === void 0 ? void 0 : popover.contains(target)) &&
27093
27094
  !((_a = this.recorderButton) === null || _a === void 0 ? void 0 : _a.contains(target)) &&
27094
27095
  target !== this.recorderButton &&
27095
27096
  target !== popover) {