labsense-ui-kit 1.1.70 → 1.1.71
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 +7 -5
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +7 -5
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5558,22 +5558,24 @@ var useNotification = function useNotification() {
|
|
|
5558
5558
|
case 'info':
|
|
5559
5559
|
reactHotToast.toast(message, {
|
|
5560
5560
|
icon: React__default.createElement(Container, {
|
|
5561
|
+
"$minWidth": '20px',
|
|
5561
5562
|
"$height": '20px',
|
|
5562
5563
|
"$width": '20px',
|
|
5563
5564
|
"$alignItems": 'center',
|
|
5564
5565
|
"$justifyContent": 'center',
|
|
5565
5566
|
"$borderRadius": '100%',
|
|
5566
|
-
"$background": colorVariables
|
|
5567
|
+
"$background": colorVariables.disabled.info
|
|
5567
5568
|
}, React__default.createElement(Icon, {
|
|
5568
|
-
icon:
|
|
5569
|
+
icon: 'InformationFilled',
|
|
5569
5570
|
weight: '0px',
|
|
5570
|
-
size:
|
|
5571
|
-
color: colorVariables.
|
|
5571
|
+
size: 20,
|
|
5572
|
+
color: colorVariables["default"].info
|
|
5572
5573
|
})),
|
|
5573
5574
|
style: {
|
|
5574
5575
|
borderRadius: '8px',
|
|
5575
5576
|
background: colorVariables.text.white,
|
|
5576
|
-
color: '#363636'
|
|
5577
|
+
color: '#363636',
|
|
5578
|
+
maxWidth: '648px'
|
|
5577
5579
|
}
|
|
5578
5580
|
});
|
|
5579
5581
|
break;
|