Compare commits
4 Commits
Author | SHA1 | Date | |
---|---|---|---|
fc2ba54725 | |||
a9ae67b43b | |||
599b529744 | |||
d15f8ecf39 |
14
changelog.md
14
changelog.md
@ -1,5 +1,19 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 2025-01-21 - 1.5.4 - fix(consentsoftware-components)
|
||||||
|
Add interactive consent software components for managing cookie levels.
|
||||||
|
|
||||||
|
- Implemented 'consentsoftware-cookieconsent' component for cookie management
|
||||||
|
- Introduced 'consentsoftware-toggle' for user interaction improvements
|
||||||
|
- Added theme support for light/dark modes in consent components
|
||||||
|
- Enhanced consent interface with responsive design and accessibility features
|
||||||
|
|
||||||
|
## 2025-01-20 - 1.5.3 - fix(consentsoftware-cookieconsent)
|
||||||
|
Fix visual inconsistencies in the consent software modal overlay and shadow.
|
||||||
|
|
||||||
|
- Updated the shadow color in the modal box to use a consistent color.
|
||||||
|
- Restored backdrop blur effect in the page overlay when visible.
|
||||||
|
|
||||||
## 2025-01-20 - 1.5.2 - fix(core)
|
## 2025-01-20 - 1.5.2 - fix(core)
|
||||||
No changes detected
|
No changes detected
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "@consent.software/catalog",
|
"name": "@consent.software/catalog",
|
||||||
"version": "1.5.2",
|
"version": "1.5.4",
|
||||||
"private": false,
|
"private": false,
|
||||||
"description": "A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.",
|
"description": "A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.",
|
||||||
"exports": {
|
"exports": {
|
||||||
|
@ -3,6 +3,6 @@
|
|||||||
*/
|
*/
|
||||||
export const commitinfo = {
|
export const commitinfo = {
|
||||||
name: '@consent.software/catalog',
|
name: '@consent.software/catalog',
|
||||||
version: '1.5.2',
|
version: '1.5.4',
|
||||||
description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
|
description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
|
||||||
}
|
}
|
||||||
|
@ -80,14 +80,13 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|||||||
|
|
||||||
.pageOverlay.shake {
|
.pageOverlay.shake {
|
||||||
background: rgba(0, 0, 0, 0.5) !important;
|
background: rgba(0, 0, 0, 0.5) !important;
|
||||||
backdrop-filter: blur(20px) !important;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.modalBox {
|
.modalBox {
|
||||||
display: block;
|
display: block;
|
||||||
color: var(--text-color);
|
color: var(--text-color);
|
||||||
background: var(--background-color);
|
background: var(--background-color);
|
||||||
box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.6);
|
box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
|
||||||
position: realtive;
|
position: realtive;
|
||||||
border: 1px dotted rgba(255, 255, 255, 0.1);
|
border: 1px dotted rgba(255, 255, 255, 0.1);
|
||||||
border-top: 1px solid var(--accent-color);
|
border-top: 1px solid var(--accent-color);
|
||||||
@ -104,7 +103,6 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|||||||
|
|
||||||
.modalBox.shake {
|
.modalBox.shake {
|
||||||
animation: shake 150ms 2 linear;
|
animation: shake 150ms 2 linear;
|
||||||
box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@keyframes shake {
|
@keyframes shake {
|
||||||
@ -286,8 +284,8 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|||||||
await this.updated();
|
await this.updated();
|
||||||
const pageOverlay: HTMLDivElement = this.shadowRoot?.querySelector('.pageOverlay');
|
const pageOverlay: HTMLDivElement = this.shadowRoot?.querySelector('.pageOverlay');
|
||||||
if (pageOverlay) {
|
if (pageOverlay) {
|
||||||
pageOverlay.style.background = 'rgba(255,255,255, 0.1)';
|
pageOverlay.style.background = 'rgba(0,0,0, 0.5)';
|
||||||
pageOverlay.style.backdropFilter = 'blur(0px)';
|
pageOverlay.style.backdropFilter = 'blur(20px)';
|
||||||
}
|
}
|
||||||
const modalBox: HTMLDivElement = this.shadowRoot?.querySelector('.modalBox');
|
const modalBox: HTMLDivElement = this.shadowRoot?.querySelector('.modalBox');
|
||||||
if (modalBox) {
|
if (modalBox) {
|
||||||
|
Reference in New Issue
Block a user