@progressive-development/pd-wizard 0.0.25 → 0.0.28
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 +2 -2
- package/src/PdSteps.js +2 -2
- package/src/PdWizard.js +6 -3
package/package.json
CHANGED
|
@@ -14,7 +14,7 @@
|
|
|
14
14
|
"order",
|
|
15
15
|
"steps"
|
|
16
16
|
],
|
|
17
|
-
"version": "0.0.
|
|
17
|
+
"version": "0.0.28",
|
|
18
18
|
"main": "index.js",
|
|
19
19
|
"module": "index.js",
|
|
20
20
|
"scripts": {
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
31
|
"lit": "^2.0.2",
|
|
32
|
-
"@progressive-development/pd-forms": "^0.0.
|
|
32
|
+
"@progressive-development/pd-forms": "^0.0.28"
|
|
33
33
|
},
|
|
34
34
|
"devDependencies": {
|
|
35
35
|
"@custom-elements-manifest/analyzer": "^0.4.17",
|
package/src/PdSteps.js
CHANGED
|
@@ -47,8 +47,8 @@ class PdSteps extends LitElement {
|
|
|
47
47
|
display: block;
|
|
48
48
|
background-color: var(--my-bg-color);
|
|
49
49
|
|
|
50
|
-
border-bottom-left-radius: var(--pd-step-borderradius, 0);
|
|
51
|
-
border-bottom-right-radius: var(--pd-step-borderradius, 0);
|
|
50
|
+
border-bottom-left-radius: var(--pd-step-bottom-borderradius, 0);
|
|
51
|
+
border-bottom-right-radius: var(--pd-step-bottom-borderradius, 0);
|
|
52
52
|
|
|
53
53
|
/* Hack => Wegen HR Linie wird das elemt 10 nach oben geschoben, sonst immer Abstand <hr> block display etc. => wie zu lösen? */
|
|
54
54
|
margin-top: -10px;
|
package/src/PdWizard.js
CHANGED
|
@@ -151,7 +151,7 @@ export class PdWizard extends LitElement {
|
|
|
151
151
|
|
|
152
152
|
/* Grid Area positions for layout container above */
|
|
153
153
|
.wiz-header {
|
|
154
|
-
grid-area: header;
|
|
154
|
+
grid-area: header;
|
|
155
155
|
}
|
|
156
156
|
.wiz-content {
|
|
157
157
|
grid-area: content;
|
|
@@ -169,8 +169,8 @@ export class PdWizard extends LitElement {
|
|
|
169
169
|
justify-content: var(--pd-justify-buttons, space-between);
|
|
170
170
|
background-color: var(--my-footer-background-color);
|
|
171
171
|
|
|
172
|
-
border-bottom-left-radius: var(--pd-
|
|
173
|
-
border-bottom-right-radius: var(--pd-
|
|
172
|
+
border-bottom-left-radius: var(--pd-wizard-bottom-borderradius, 0);
|
|
173
|
+
border-bottom-right-radius: var(--pd-wizard-bottom-borderradius, 0);
|
|
174
174
|
}
|
|
175
175
|
|
|
176
176
|
.wiz-breadcrumbs {
|
|
@@ -183,6 +183,9 @@ export class PdWizard extends LitElement {
|
|
|
183
183
|
height: var(--pd-wizard-title-height, 80px);
|
|
184
184
|
line-height: 80px;
|
|
185
185
|
padding-left: 80px;
|
|
186
|
+
|
|
187
|
+
border-top-left-radius: var(--pd-wizard-top-borderradius, 0);
|
|
188
|
+
border-top-right-radius: var(--pd-wizard-top-borderradius, 0);
|
|
186
189
|
}
|
|
187
190
|
|
|
188
191
|
.title {
|