@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.cjs CHANGED
@@ -1834,7 +1834,7 @@ var NotificationApiImpl = class extends BaseApi {
1834
1834
  await this.send(new AppNotification({
1835
1835
  message,
1836
1836
  type: "success",
1837
- icon: "check_circle_line",
1837
+ icon: "check-one",
1838
1838
  duration
1839
1839
  }));
1840
1840
  }
@@ -1842,7 +1842,7 @@ var NotificationApiImpl = class extends BaseApi {
1842
1842
  await this.send(new AppNotification({
1843
1843
  message,
1844
1844
  type: "error",
1845
- icon: "close_circle_line",
1845
+ icon: "close-one",
1846
1846
  duration
1847
1847
  }));
1848
1848
  }
@@ -1850,7 +1850,7 @@ var NotificationApiImpl = class extends BaseApi {
1850
1850
  await this.send(new AppNotification({
1851
1851
  message,
1852
1852
  type: "warning",
1853
- icon: "warning_line",
1853
+ icon: "attention",
1854
1854
  duration
1855
1855
  }));
1856
1856
  }
@@ -1858,7 +1858,7 @@ var NotificationApiImpl = class extends BaseApi {
1858
1858
  await this.send(new AppNotification({
1859
1859
  message,
1860
1860
  type: "info",
1861
- icon: "information_line",
1861
+ icon: "info",
1862
1862
  duration
1863
1863
  }));
1864
1864
  }