@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@consent.software/catalog",
3
- "version": "1.5.0",
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.0',
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 15px rgba(255, 255, 255, 0.6);
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(300);
353
+ await delayFor(2000);
354
354
  pageOverlay.classList.remove('shake');
355
355
  modalBox.classList.remove('shake');
356
356
  }