@progressive-development/pd-wizard 0.1.7 → 0.1.8

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/PdWizard.js +7 -2
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "order",
15
15
  "steps"
16
16
  ],
17
- "version": "0.1.7",
17
+ "version": "0.1.8",
18
18
  "main": "index.js",
19
19
  "module": "index.js",
20
20
  "scripts": {
@@ -31,7 +31,7 @@
31
31
  },
32
32
  "dependencies": {
33
33
  "@lit/localize": "^0.11.2",
34
- "@progressive-development/pd-forms": "^0.1.11",
34
+ "@progressive-development/pd-forms": "^0.1.12",
35
35
  "@progressive-development/pd-icon": "^0.1.13",
36
36
  "@progressive-development/pd-shared-styles": "0.1.1",
37
37
  "lit": "^2.2.0"
package/src/PdWizard.js CHANGED
@@ -110,9 +110,14 @@ export class PdWizard extends LitElement {
110
110
  /* Hier festlegung ob das innere Element voll ausfüllen soll (width: 100%), oder aber
111
111
  zentral als inneres Element innerhalb des content Elements angezeigt werden soll => andere Angabe, vorher war max-width nur angegeben (ticomi) */
112
112
  .wiz-content-inner {
113
- min-height: 200px;
114
- width: 100%;
113
+ min-height: 200px;
115
114
  background-color: var(--pd-wizard-content-inner-bg-col, var(--pd-default-bg-col));
115
+ max-width: 95%;
116
+ }
117
+
118
+ :host(.full-inner) .wiz-content-inner {
119
+ width: 100%;
120
+ max-width: 100%;
116
121
  }
117
122
 
118
123
  .wiz-buttons {