@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/browser/index.js +3 -2
- package/dist/exporters/index.js +1 -1
- package/dist/index.js +3 -2
- package/dist/index.js.map +1 -1
- package/dist/index.umd.js +3 -2
- package/dist/index.umd.js.map +1 -1
- package/dist/sessionWidget/index.js +2 -1
- package/dist/sessionWidget/index.js.map +1 -1
- package/package.json +2 -2
package/dist/index.umd.js
CHANGED
|
@@ -23882,7 +23882,7 @@ const CONTINUOUS_DEBUGGING_TIMEOUT = 60000; // 1 minutes
|
|
|
23882
23882
|
const DEBUG_SESSION_MAX_DURATION_SECONDS = 10 * 60 + 30; // TODO: move to shared config otel core
|
|
23883
23883
|
const REMOTE_SESSION_RECORDING_START = 'remote-session-recording:start';
|
|
23884
23884
|
const REMOTE_SESSION_RECORDING_STOP = 'remote-session-recording:stop';
|
|
23885
|
-
const PACKAGE_VERSION_EXPORT = "1.3.
|
|
23885
|
+
const PACKAGE_VERSION_EXPORT = "1.3.3" || 0;
|
|
23886
23886
|
// Regex patterns for OpenTelemetry ignore URLs
|
|
23887
23887
|
const OTEL_IGNORE_URLS = [
|
|
23888
23888
|
// Traces endpoint
|
|
@@ -27282,7 +27282,8 @@ class SessionWidget extends lib0_observable__WEBPACK_IMPORTED_MODULE_9__.Observa
|
|
|
27282
27282
|
const popover = this._initialPopoverVisible ? this.initialPopover : this.finalPopover;
|
|
27283
27283
|
if (!isPopoverVisible || !target)
|
|
27284
27284
|
return;
|
|
27285
|
-
if (
|
|
27285
|
+
if (target !== this.hostElement &&
|
|
27286
|
+
!(popover === null || popover === void 0 ? void 0 : popover.contains(target)) &&
|
|
27286
27287
|
!((_a = this.recorderButton) === null || _a === void 0 ? void 0 : _a.contains(target)) &&
|
|
27287
27288
|
target !== this.recorderButton &&
|
|
27288
27289
|
target !== popover) {
|