@progressive-development/pd-dialog 0.1.72 → 0.1.74

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.1.72",
6
+ "version": "0.1.74",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
@@ -17,7 +17,7 @@
17
17
  "storybook:build": "npm run analyze -- --exclude dist && build-storybook"
18
18
  },
19
19
  "dependencies": {
20
- "@progressive-development/pd-forms": "^0.2.9",
20
+ "@progressive-development/pd-forms": "^0.2.10",
21
21
  "@progressive-development/pd-icon": "^0.1.20",
22
22
  "@progressive-development/pd-price": "^0.1.8",
23
23
  "@progressive-development/pd-shared-styles": "0.1.1",
@@ -53,24 +53,22 @@ export class PdPopupDialog extends LitElement {
53
53
  max-width: var(--pd-popup-max-width, 700px);
54
54
  }
55
55
 
56
- .header {
56
+ .header {
57
+ display: flex;
58
+ gap: 0.5em;
59
+ align-items: center;
57
60
  background-color: var(--pd-popup-header-col, var(--pd-default-col));
58
61
  height: var(--pd-popup-header-height, 45px);
62
+ padding-left: 0.5em;
59
63
  }
60
64
 
61
65
  .header-txt {
62
- /* TODO: Absolute positionierung entfernen => Passt ja nicht für verschiedenen propertie angaben */
63
- position: absolute;
64
- padding-left: 15px;
65
- padding-top: 8px;
66
66
  font-family: var(--pd-default-font-title-family);
67
- font-size: var(--pd-popup-header-font-size, 1.4em);
67
+ font-size: var(--pd-popup-header-font-size, 1.3em);
68
68
  color: var(--pd-popup-header-font-col, var(--pd-default-bg-col));
69
69
  }
70
70
 
71
71
  .info-logo {
72
- padding-top: 6px;
73
- padding-left: 6px;
74
72
  width: 2em;
75
73
  }
76
74