@justeattakeaway/pie-icon-button 0.28.2 → 0.28.3

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
@@ -33,7 +33,7 @@ class a extends m {
33
33
  return o != null && o.includes("secondary") && (e = "secondary"), (o === "primary" && !i || o === "ghost-inverse") && (e = "inverse"), v`
34
34
  <pie-spinner
35
35
  size="${r}"
36
- variant="${e}"
36
+ variant="${e}">
37
37
  </pie-spinner>`;
38
38
  }
39
39
  render() {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@justeattakeaway/pie-icon-button",
3
- "version": "0.28.2",
3
+ "version": "0.28.3",
4
4
  "description": "PIE Design System Icon Button built using Web Components",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -34,14 +34,14 @@
34
34
  "license": "Apache-2.0",
35
35
  "devDependencies": {
36
36
  "@custom-elements-manifest/analyzer": "0.9.0",
37
- "@justeattakeaway/pie-components-config": "0.15.0",
37
+ "@justeattakeaway/pie-components-config": "0.16.0",
38
38
  "@justeattakeaway/pie-wrapper-react": "0.14.0",
39
39
  "cem-plugin-module-file-extensions": "0.0.5"
40
40
  },
41
41
  "dependencies": {
42
- "@justeattakeaway/pie-icons-webc": "0.21.0",
43
- "@justeattakeaway/pie-spinner": "0.6.2",
44
- "@justeattakeaway/pie-webc-core": "0.21.0"
42
+ "@justeattakeaway/pie-icons-webc": "0.22.0",
43
+ "@justeattakeaway/pie-spinner": "0.6.3",
44
+ "@justeattakeaway/pie-webc-core": "0.21.1"
45
45
  },
46
46
  "volta": {
47
47
  "extends": "../../../package.json"
package/src/index.ts CHANGED
@@ -47,7 +47,7 @@ export class PieIconButton extends LitElement implements IconButtonProps {
47
47
  return html`
48
48
  <pie-spinner
49
49
  size="${spinnerSize}"
50
- variant="${spinnerVariant}"
50
+ variant="${spinnerVariant}">
51
51
  </pie-spinner>`;
52
52
  }
53
53