@adobe/helix-rum-enhancer
Advanced tools
Comparing version 2.30.1 to 2.30.2
@@ -0,1 +1,8 @@ | ||
## [2.30.2](https://github.com/adobe/helix-rum-enhancer/compare/v2.30.1...v2.30.2) (2025-01-17) | ||
### Bug Fixes | ||
* do not trigger fill checkpoint for hidden fields ([f6f4c51](https://github.com/adobe/helix-rum-enhancer/commit/f6f4c519d38c48740ace4ba64f47cafc6cea2f47)) | ||
## [2.30.1](https://github.com/adobe/helix-rum-enhancer/compare/v2.30.0...v2.30.1) (2025-01-17) | ||
@@ -2,0 +9,0 @@ |
@@ -261,6 +261,8 @@ /* | ||
form.addEventListener('change', (e) => { | ||
const source = sourceSelector(e.target); | ||
if (source !== lastSource) { | ||
sampleRUM('fill', { source }); | ||
lastSource = source; | ||
if (e.target.checkVisibility()) { | ||
const source = sourceSelector(e.target); | ||
if (source !== lastSource) { | ||
sampleRUM('fill', { source }); | ||
lastSource = source; | ||
} | ||
} | ||
@@ -267,0 +269,0 @@ }); |
{ | ||
"name": "@adobe/helix-rum-enhancer", | ||
"version": "2.30.1", | ||
"version": "2.30.2", | ||
"description": "Helix RUM Enhancer", | ||
@@ -5,0 +5,0 @@ "main": "src/index.js", |
@@ -390,6 +390,8 @@ /* | ||
form.addEventListener('change', (e) => { | ||
const source = sourceSelector(e.target); | ||
if (source !== lastSource) { | ||
sampleRUM('fill', { source }); | ||
lastSource = source; | ||
if (e.target.checkVisibility()) { | ||
const source = sourceSelector(e.target); | ||
if (source !== lastSource) { | ||
sampleRUM('fill', { source }); | ||
lastSource = source; | ||
} | ||
} | ||
@@ -396,0 +398,0 @@ }); |
Sorry, the diff of this file is not supported yet
98718
1252