@progressive-development/pd-wizard 0.0.10 → 0.0.11

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 +1 -1
  2. package/src/PdWizard.js +7 -7
package/package.json CHANGED
@@ -14,7 +14,7 @@
14
14
  "order",
15
15
  "steps"
16
16
  ],
17
- "version": "0.0.10",
17
+ "version": "0.0.11",
18
18
  "main": "index.js",
19
19
  "module": "index.js",
20
20
  "scripts": {
package/src/PdWizard.js CHANGED
@@ -5,7 +5,7 @@
5
5
 
6
6
  import { LitElement, html, css } from 'lit';
7
7
 
8
- import '@progressive-development/pd-forms/PdButton.js';
8
+ import '@progressive-development/pd-forms/pd-button.js';
9
9
  import './PdSteps.js';
10
10
 
11
11
  // TODO: dont get it running with attribute???
@@ -306,26 +306,26 @@ export class PdWizard extends LitElement {
306
306
  <div class="wiz-buttons">
307
307
  ${this.currentNumber >= 1 && this.wizardSteps
308
308
  ? html`
309
- <squi-button
309
+ <pd-button
310
310
  @click="${this._previousStep}"
311
311
  text="Terug"
312
312
  style="visibility: ${this.currentNumber === 1
313
313
  ? 'hidden'
314
314
  : 'visible'};"
315
- ></squi-button>
315
+ ></pd-button>
316
316
  ${this.currentNumber !== this.wizardSteps.length &&
317
317
  this.wizardSteps[this.currentNumber - 1].next !== false
318
- ? html`<squi-button
318
+ ? html`<pd-button
319
319
  @click="${this._nextStep}"
320
320
  text="Volgende"
321
- ></squi-button>`
321
+ ></pd-button>`
322
322
  : ''}
323
323
  ${this.currentNumber === this.wizardSteps.length
324
- ? html`<squi-button
324
+ ? html`<pd-button
325
325
  primary
326
326
  @click="${this._submit}"
327
327
  text="Order"
328
- ></squi-button>`
328
+ ></pd-button>`
329
329
  : ''}
330
330
  `
331
331
  : ''}