@progressive-development/pd-dialog 0.0.48 → 0.0.49

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
@@ -3,7 +3,7 @@
3
3
  "description": "Progressive Development dialog components.",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.0.48",
6
+ "version": "0.0.49",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
@@ -17,8 +17,8 @@
17
17
  "storybook:build": "npm run analyze -- --exclude dist && build-storybook"
18
18
  },
19
19
  "dependencies": {
20
- "@progressive-development/pd-forms": "^0.1.3",
21
- "@progressive-development/pd-icon": "^0.1.7",
20
+ "@progressive-development/pd-forms": "^0.1.4",
21
+ "@progressive-development/pd-icon": "^0.1.8",
22
22
  "@progressive-development/pd-price": "0.0.8",
23
23
  "lit": "^2.0.2"
24
24
  },
package/src/PdPopup.js CHANGED
@@ -35,7 +35,7 @@ export class PdPopup extends LitElement {
35
35
 
36
36
  /* Modal Content */
37
37
  .modal-content {
38
- background-color: var(--pd-default-bg-color);
38
+ background-color: var(--pd-default-bg-col);
39
39
  opacity: 1;
40
40
  margin: auto;
41
41
  padding: 20px;
@@ -55,7 +55,7 @@ export class PdPopupDialog extends LitElement {
55
55
  padding-top: 8px;
56
56
  font-family: var(--pd-default-font-title-family);
57
57
  font-size: var(--pd-popup-header-font-size, 1.4em);
58
- color: var(--pd-popup-header-font-col, var(--pd-default-bg-color));
58
+ color: var(--pd-popup-header-font-col, var(--pd-default-bg-col));
59
59
  }
60
60
 
61
61
  .info-logo {
@@ -66,7 +66,7 @@ export class PdPopupDialog extends LitElement {
66
66
 
67
67
  .content {
68
68
  padding: 0.5rem 1rem 1rem 1rem;
69
- background-color: var(--pd-popup-header-font-col, var(--pd-default-bg-color));
69
+ background-color: var(--pd-popup-header-font-col, var(--pd-default-bg-col));
70
70
  height: 100%;
71
71
  }
72
72
 
@@ -29,9 +29,9 @@ export const SharedGlobalStyles = css`
29
29
  --pd-default-col: var(--app-primary-col, #067394);
30
30
  --pd-default-light-col: var(--app-primary-light-col, #AFC1D2);
31
31
  --pd-default-dark-col: var(--app-primary-dark-col, #0A3A48);
32
- --pd-default-bg-color: var(--app-primary-bg-col, #fefefe);
32
+ --pd-default-bg-col: var(--app-primary-bg-col, #fefefe);
33
33
 
34
- --pd-default-hover-col: var(--app-hover-col, #f3d7a0);
34
+ --pd-default-hover-col: var(--app-hover-col, #ffc857);
35
35
  --pd-default-error-col: var(--app-error-col, #cc2029);
36
36
  --pd-default-error-light-col: var(--app-error-light-col, #ffe8e8);
37
37
  --pd-default-success-col: var(--app-success-col, #42a01c);