From e0ed973b3a2d4a32d312a238bf3f5a6b91f95bbf Mon Sep 17 00:00:00 2001 From: Philipp Kunz Date: Thu, 16 Jan 2025 03:06:45 +0100 Subject: [PATCH] fix(cookieconsent): Fix user-select property in consentsoftware-cookieconsent component for consistency in interaction. --- changelog.md | 4 ++++ ts_web/00_commitinfo_data.ts | 2 +- ts_web/elements/consentsoftware-cookieconsent.ts | 1 + 3 files changed, 6 insertions(+), 1 deletion(-) diff --git a/changelog.md b/changelog.md index 9cc33ad..31e279f 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,9 @@ # Changelog +## 2025-01-16 - 1.4.2 - fix(cookieconsent) +Fix user-select property in consentsoftware-cookieconsent component for consistency in interaction. + + ## 2025-01-16 - 1.4.1 - fix(consentsoftware-toggle) Fix issue in drag event handling logic for the toggle component. diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 4c9d7d7..f0e1782 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@consent.software/catalog', - version: '1.4.1', + version: '1.4.2', description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.' } diff --git a/ts_web/elements/consentsoftware-cookieconsent.ts b/ts_web/elements/consentsoftware-cookieconsent.ts index 05adf19..6d6ae8a 100644 --- a/ts_web/elements/consentsoftware-cookieconsent.ts +++ b/ts_web/elements/consentsoftware-cookieconsent.ts @@ -25,6 +25,7 @@ export class ConsentsoftwareCookieconsent extends LitElement { public static styles = css` :host { font-family: ${shared.fontStack}; + user-select: none; /* Default theme variables */ --text-color: #333; --background-color: #eeeeee;