@pure-ds/core 0.5.21 → 0.5.22

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
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@pure-ds/core",
3
3
  "shortname": "pds",
4
- "version": "0.5.21",
4
+ "version": "0.5.22",
5
5
  "description": "Pure Design System - Why develop a Design System when you can generate one?",
6
6
  "repository": {
7
7
  "type": "git",
@@ -250,7 +250,7 @@ customElements.define(
250
250
  this.shadowRoot.addEventListener("change", (e) => {
251
251
  if (e.target.type === "radio" && e.target.name === "theme") {
252
252
  PDS.theme = e.target.value;
253
- PDS.toast(\`Theme changed to ${e.target.value}\`, { duration: 2000 });
253
+ PDS.toast("Theme changed to " + e.target.value, { duration: 2000 });
254
254
  }
255
255
  });
256
256