@widget-js/core 0.11.21 → 0.11.22-beta.1

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
@@ -1749,7 +1749,7 @@ var NotificationApiImpl = class extends BaseApi {
1749
1749
  await this.send(new AppNotification({
1750
1750
  message,
1751
1751
  type: "success",
1752
- icon: "check_circle_line",
1752
+ icon: "check-one",
1753
1753
  duration
1754
1754
  }));
1755
1755
  }
@@ -1757,7 +1757,7 @@ var NotificationApiImpl = class extends BaseApi {
1757
1757
  await this.send(new AppNotification({
1758
1758
  message,
1759
1759
  type: "error",
1760
- icon: "close_circle_line",
1760
+ icon: "close-one",
1761
1761
  duration
1762
1762
  }));
1763
1763
  }
@@ -1765,7 +1765,7 @@ var NotificationApiImpl = class extends BaseApi {
1765
1765
  await this.send(new AppNotification({
1766
1766
  message,
1767
1767
  type: "warning",
1768
- icon: "warning_line",
1768
+ icon: "attention",
1769
1769
  duration
1770
1770
  }));
1771
1771
  }
@@ -1773,7 +1773,7 @@ var NotificationApiImpl = class extends BaseApi {
1773
1773
  await this.send(new AppNotification({
1774
1774
  message,
1775
1775
  type: "info",
1776
- icon: "information_line",
1776
+ icon: "info",
1777
1777
  duration
1778
1778
  }));
1779
1779
  }