@progressive-development/pd-wizard 0.1.47 → 0.1.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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/src/PdWizard.js +2 -4
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "order",
15
15
  "steps"
16
16
  ],
17
- "version": "0.1.47",
17
+ "version": "0.1.49",
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.46",
34
+ "@progressive-development/pd-forms": "^0.1.48",
35
35
  "@progressive-development/pd-icon": "^0.1.16",
36
36
  "@progressive-development/pd-shared-styles": "0.1.1",
37
37
  "lit": "^2.2.0"
package/src/PdWizard.js CHANGED
@@ -221,8 +221,7 @@ export class PdWizard extends LitElement {
221
221
  return {
222
222
  currentNumber: { type: Number },
223
223
  wizardSteps: { Array },
224
- logo: { type: Object },
225
- roundedFullContent: { type: Boolean, reflect: true },
224
+ logo: { type: Object },
226
225
  };
227
226
  }
228
227
 
@@ -230,8 +229,7 @@ export class PdWizard extends LitElement {
230
229
  super();
231
230
  updateWhenLocaleChanges(this);
232
231
  this.currentNumber = -99;
233
- this.wizardSteps = [];
234
- this.roundedFullContent = false;
232
+ this.wizardSteps = [];
235
233
  }
236
234
 
237
235
  render() {