@consent.software/catalog 1.5.0 → 1.5.1
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 +2 -2
- 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 +3 -3
- package/dist_watch/bundle.js +2 -2
- 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 +2 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@consent.software/catalog",
|
|
3
|
-
"version": "1.5.
|
|
3
|
+
"version": "1.5.1",
|
|
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.1',
|
|
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
|
}
|
|
@@ -104,7 +104,7 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|
|
104
104
|
|
|
105
105
|
.modalBox.shake {
|
|
106
106
|
animation: shake 150ms 2 linear;
|
|
107
|
-
box-shadow: 0px 0px
|
|
107
|
+
box-shadow: 0px 0px 8px rgba(255, 255, 255, 0.6);
|
|
108
108
|
}
|
|
109
109
|
|
|
110
110
|
@keyframes shake {
|
|
@@ -350,7 +350,7 @@ export class ConsentsoftwareCookieconsent extends LitElement {
|
|
|
350
350
|
if (pageOverlay && modalBox) {
|
|
351
351
|
pageOverlay.classList.add('shake');
|
|
352
352
|
modalBox.classList.add('shake');
|
|
353
|
-
await delayFor(
|
|
353
|
+
await delayFor(2000);
|
|
354
354
|
pageOverlay.classList.remove('shake');
|
|
355
355
|
modalBox.classList.remove('shake');
|
|
356
356
|
}
|