@progressive-development/pd-wizard 0.1.11 → 0.1.12

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 +3 -0
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "order",
15
15
  "steps"
16
16
  ],
17
- "version": "0.1.11",
17
+ "version": "0.1.12",
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.15",
34
+ "@progressive-development/pd-forms": "^0.1.16",
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
@@ -270,6 +270,9 @@ export class PdWizard extends LitElement {
270
270
  <div style="${this.currentNumber === 4 ? '' : 'display:none'}">
271
271
  <slot name="step-4"></slot>
272
272
  </div>
273
+ <div style="${this.currentNumber === 5 ? '' : 'display:none'}">
274
+ <slot name="step-5"></slot>
275
+ </div>
273
276
  </div>
274
277
  </div>
275
278