@justeattakeaway/pie-modal 0.33.1 → 0.34.0

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/dist/index.js CHANGED
@@ -301,7 +301,7 @@ class l extends U(F) {
301
301
  <div class="c-modal-contentInner">
302
302
  <slot></slot>
303
303
  </div>
304
- ${this.isLoading ? m`<pie-spinner size="xl" variant="secondary"></pie-spinner>` : c}
304
+ ${this.isLoading ? m`<pie-spinner size="xlarge" variant="secondary"></pie-spinner>` : c}
305
305
  </article>
306
306
  <footer class="c-modal-footer">
307
307
  ${this.leadingAction ? this.renderLeadingAction() : c}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-modal",
3
- "version": "0.33.1",
3
+ "version": "0.34.0",
4
4
  "description": "PIE design system modal built using web components",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -36,10 +36,10 @@
36
36
  "extends": "../../../package.json"
37
37
  },
38
38
  "dependencies": {
39
- "@justeattakeaway/pie-button": "0.39.1",
40
- "@justeattakeaway/pie-icon-button": "0.21.3",
39
+ "@justeattakeaway/pie-button": "0.40.0",
40
+ "@justeattakeaway/pie-icon-button": "0.22.0",
41
41
  "@justeattakeaway/pie-icons-webc": "0.11.1",
42
- "@justeattakeaway/pie-spinner": "0.2.2",
42
+ "@justeattakeaway/pie-spinner": "0.3.0",
43
43
  "@justeattakeaway/pie-webc-core": "0.12.0",
44
44
  "body-scroll-lock": "3.1.5",
45
45
  "dialog-polyfill": "0.5.6"
package/src/index.ts CHANGED
@@ -343,7 +343,7 @@ export class PieModal extends RtlMixin(LitElement) implements ModalProps {
343
343
  <div class="c-modal-contentInner">
344
344
  <slot></slot>
345
345
  </div>
346
- ${this.isLoading ? html`<pie-spinner size="xl" variant="secondary"></pie-spinner>` : nothing}
346
+ ${this.isLoading ? html`<pie-spinner size="xlarge" variant="secondary"></pie-spinner>` : nothing}
347
347
  </article>
348
348
  <footer class="c-modal-footer">
349
349
  ${this.leadingAction ? this.renderLeadingAction() : nothing}