@apexcura/ui-components 0.0.15-Beta27 → 0.0.15-Beta28
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.d.mts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +3 -1
- package/dist/index.mjs +3 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
package/dist/index.d.ts
CHANGED
package/dist/index.js
CHANGED
|
@@ -1628,7 +1628,8 @@ var NotificationAlert = (props) => {
|
|
|
1628
1628
|
message: props.message,
|
|
1629
1629
|
description: props.description,
|
|
1630
1630
|
duration: 4.5,
|
|
1631
|
-
pauseOnHover
|
|
1631
|
+
pauseOnHover,
|
|
1632
|
+
showProgress: props.showProgress
|
|
1632
1633
|
});
|
|
1633
1634
|
};
|
|
1634
1635
|
const openNotification = (pauseOnHover) => {
|
|
@@ -1636,6 +1637,7 @@ var NotificationAlert = (props) => {
|
|
|
1636
1637
|
message: props.message,
|
|
1637
1638
|
description: props.description,
|
|
1638
1639
|
duration: 4.5,
|
|
1640
|
+
showProgress: props.showProgress,
|
|
1639
1641
|
pauseOnHover
|
|
1640
1642
|
});
|
|
1641
1643
|
};
|
package/dist/index.mjs
CHANGED
|
@@ -1583,7 +1583,8 @@ var NotificationAlert = (props) => {
|
|
|
1583
1583
|
message: props.message,
|
|
1584
1584
|
description: props.description,
|
|
1585
1585
|
duration: 4.5,
|
|
1586
|
-
pauseOnHover
|
|
1586
|
+
pauseOnHover,
|
|
1587
|
+
showProgress: props.showProgress
|
|
1587
1588
|
});
|
|
1588
1589
|
};
|
|
1589
1590
|
const openNotification = (pauseOnHover) => {
|
|
@@ -1591,6 +1592,7 @@ var NotificationAlert = (props) => {
|
|
|
1591
1592
|
message: props.message,
|
|
1592
1593
|
description: props.description,
|
|
1593
1594
|
duration: 4.5,
|
|
1595
|
+
showProgress: props.showProgress,
|
|
1594
1596
|
pauseOnHover
|
|
1595
1597
|
});
|
|
1596
1598
|
};
|