@consent.software/catalog 1.5.1 → 1.5.3
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/dist_bundle/bundle.js +11 -13
- package/dist_bundle/bundle.js.map +2 -2
- package/dist_ts_web/00_commitinfo_data.js +1 -1
- package/dist_ts_web/elements/consentsoftware-cookieconsent.js +4 -6
- package/dist_watch/bundle.js +3 -5
- package/dist_watch/bundle.js.map +2 -2
- package/package.json +1 -1
- package/ts_web/00_commitinfo_data.ts +1 -1
- package/ts_web/elements/consentsoftware-cookieconsent.ts +3 -5
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@consent.software/catalog",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.3",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.",
|
|
6
6
|
"exports": {
|
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
*/
|
|
4
4
|
export const commitinfo = {
|
|
5
5
|
name: '@consent.software/catalog',
|
|
6
|
-
version: '1.5.
|
|
6
|
+
version: '1.5.3',
|
|
7
7
|
description: 'A library of web components designed to integrate robust consent management capabilities into web applications, ensuring compliance with privacy regulations.'
|
|
8
8
|
}
|
|
@@ -80,14 +80,13 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|
|
80
80
|
|
|
81
81
|
.pageOverlay.shake {
|
|
82
82
|
background: rgba(0, 0, 0, 0.5) !important;
|
|
83
|
-
backdrop-filter: blur(20px) !important;
|
|
84
83
|
}
|
|
85
84
|
|
|
86
85
|
.modalBox {
|
|
87
86
|
display: block;
|
|
88
87
|
color: var(--text-color);
|
|
89
88
|
background: var(--background-color);
|
|
90
|
-
box-shadow: 0px 0px
|
|
89
|
+
box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
|
|
91
90
|
position: realtive;
|
|
92
91
|
border: 1px dotted rgba(255, 255, 255, 0.1);
|
|
93
92
|
border-top: 1px solid var(--accent-color);
|
|
@@ -104,7 +103,6 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|
|
104
103
|
|
|
105
104
|
.modalBox.shake {
|
|
106
105
|
animation: shake 150ms 2 linear;
|
|
107
|
-
box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
|
|
108
106
|
}
|
|
109
107
|
|
|
110
108
|
@keyframes shake {
|
|
@@ -286,8 +284,8 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|
|
286
284
|
await this.updated();
|
|
287
285
|
const pageOverlay: HTMLDivElement = this.shadowRoot?.querySelector('.pageOverlay');
|
|
288
286
|
if (pageOverlay) {
|
|
289
|
-
pageOverlay.style.background = 'rgba(
|
|
290
|
-
pageOverlay.style.backdropFilter = 'blur(
|
|
287
|
+
pageOverlay.style.background = 'rgba(0,0,0, 0.5)';
|
|
288
|
+
pageOverlay.style.backdropFilter = 'blur(20px)';
|
|
291
289
|
}
|
|
292
290
|
const modalBox: HTMLDivElement = this.shadowRoot?.querySelector('.modalBox');
|
|
293
291
|
if (modalBox) {
|