@progressive-development/pd-dialog 0.0.7 → 0.0.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.
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "description": "Progressive Development dialog components.",
4
4
  "license": "SEE LICENSE IN LICENSE",
5
5
  "author": "PD Progressive Development",
6
- "version": "0.0.7",
6
+ "version": "0.0.8",
7
7
  "main": "index.js",
8
8
  "module": "index.js",
9
9
  "scripts": {
@@ -19,7 +19,7 @@
19
19
  "dependencies": {
20
20
  "lit": "^2.0.2",
21
21
  "@progressive-development/pd-price": "0.0.3",
22
- "@progressive-development/pd-forms": "0.0.13",
22
+ "@progressive-development/pd-forms": "0.0.14",
23
23
  "@progressive-development/pd-icon": "0.0.4"
24
24
  },
25
25
  "devDependencies": {
@@ -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
 
10
10
  /**
11
11
  * An example element.
@@ -142,11 +142,11 @@ export class PdPopupDialog extends LitElement {
142
142
  <div class="footer">
143
143
  ${this.buttons.map(
144
144
  bt => html`
145
- <squi-button
145
+ <pd-button
146
146
  data-key="${bt.key}"
147
147
  @click="${this._handleButtonEvent}"
148
148
  text="${bt.name}"
149
- ></squi-button>
149
+ ></pd-button>
150
150
  `
151
151
  )}
152
152
  </div>