@adobe/spacecat-shared-html-analyzer 1.2.3 → 1.2.4
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 +7 -0
- package/package.json +1 -1
- package/src/html-filter.js +2 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,10 @@
|
|
|
1
|
+
# [@adobe/spacecat-shared-html-analyzer-v1.2.4](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-html-analyzer-v1.2.3...@adobe/spacecat-shared-html-analyzer-v1.2.4) (2026-02-05)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* rcv adding new cookie selectors ([#1323](https://github.com/adobe/spacecat-shared/issues/1323)) ([9c566e6](https://github.com/adobe/spacecat-shared/commit/9c566e6dccac85db2da4915dfa143c6bb7d43f90))
|
|
7
|
+
|
|
1
8
|
# [@adobe/spacecat-shared-html-analyzer-v1.2.3](https://github.com/adobe/spacecat-shared/compare/@adobe/spacecat-shared-html-analyzer-v1.2.2...@adobe/spacecat-shared-html-analyzer-v1.2.3) (2026-02-04)
|
|
2
9
|
|
|
3
10
|
|
package/package.json
CHANGED
package/src/html-filter.js
CHANGED
|
@@ -59,6 +59,7 @@ const COOKIE_BANNER_CLASS_SELECTORS = [
|
|
|
59
59
|
'.cookie-modal', '.privacy-modal', '.consent-modal', '.gdpr-modal',
|
|
60
60
|
'.cookie-overlay', '.privacy-overlay', '.consent-overlay', '.gdpr-overlay',
|
|
61
61
|
'[class*="syrenis-cookie"]',
|
|
62
|
+
'.tc-privacy-wrapper',
|
|
62
63
|
];
|
|
63
64
|
|
|
64
65
|
const COOKIE_BANNER_ID_SELECTORS = [
|
|
@@ -67,6 +68,7 @@ const COOKIE_BANNER_ID_SELECTORS = [
|
|
|
67
68
|
'#cookie-bar', '#privacy-bar', '#consent-bar', '#gdpr-bar', '#cookiemgmt',
|
|
68
69
|
'#cookie-popup', '#privacy-popup', '#consent-popup', '#gdpr-popup',
|
|
69
70
|
'#onetrust-consent-sdk', '#onetrust-banner-sdk',
|
|
71
|
+
'#tc-privacy-wrapper',
|
|
70
72
|
];
|
|
71
73
|
|
|
72
74
|
const COOKIE_BANNER_ARIA_SELECTORS = [
|