@coralogix/browser 3.19.1 → 3.19.2

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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 3.19.2 (2026-07-13)
2
+
3
+ ### 🩹 Fixes
4
+
5
+ - fingerprint the clickable ancestor, not the raw click target
6
+
1
7
  ## 3.19.1 (2026-07-12)
2
8
 
3
9
  ### 🩹 Fixes
package/index.esm2.js CHANGED
@@ -2603,7 +2603,7 @@ var CoralogixUserInteractionInstrumentation = (function (_super) {
2603
2603
  var _b = eventTarget.getBoundingClientRect(), width = _b.width, height = _b.height;
2604
2604
  span.setAttribute(CoralogixAttributes.ELEMENT_WIDTH, width);
2605
2605
  span.setAttribute(CoralogixAttributes.ELEMENT_HEIGHT, height);
2606
- var fingerprint = getElementFingerprint(eventTarget);
2606
+ var fingerprint = getElementFingerprint(clickableElement !== null && clickableElement !== void 0 ? clickableElement : eventTarget);
2607
2607
  if (fingerprint) {
2608
2608
  span.setAttribute(CoralogixAttributes.ELEMENT_FINGERPRINT, fingerprint);
2609
2609
  var isRageClick = clickableElement
@@ -5039,7 +5039,7 @@ function resolveUrlBlueprinters(urlBlueprinters) {
5039
5039
  return resolvedUrlBlueprinters;
5040
5040
  }
5041
5041
 
5042
- var SDK_VERSION = '3.19.1';
5042
+ var SDK_VERSION = '3.19.2';
5043
5043
 
5044
5044
  function shouldDropEvent(cxRumEvent, options) {
5045
5045
  if (isDocumentErrorWithoutMessage(cxRumEvent)) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@coralogix/browser",
3
- "version": "3.19.1",
3
+ "version": "3.19.2",
4
4
  "description": "Official Coralogix SDK for browsers",
5
5
  "license": "Apache-2.0",
6
6
  "author": "Coralogix",
package/src/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const SDK_VERSION = "3.19.1";
1
+ export declare const SDK_VERSION = "3.19.2";