labsense-ui-kit 1.3.87 → 1.3.88
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 +61 -59
- package/dist/index.js.map +1 -1
- package/dist/index.modern.js +61 -59
- package/dist/index.modern.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6818,70 +6818,72 @@ var useNotification = function useNotification() {
|
|
|
6818
6818
|
reactHotToast.toast.remove();
|
|
6819
6819
|
}
|
|
6820
6820
|
reactHotToast.toast.dismiss(toastId);
|
|
6821
|
-
|
|
6822
|
-
|
|
6823
|
-
|
|
6824
|
-
|
|
6825
|
-
|
|
6826
|
-
|
|
6827
|
-
|
|
6828
|
-
|
|
6829
|
-
|
|
6830
|
-
|
|
6831
|
-
|
|
6832
|
-
|
|
6833
|
-
|
|
6834
|
-
|
|
6835
|
-
icon: React__default.createElement(Container, {
|
|
6836
|
-
"$minWidth": '20px',
|
|
6837
|
-
"$height": '20px',
|
|
6838
|
-
"$width": '20px',
|
|
6839
|
-
"$alignItems": 'center',
|
|
6840
|
-
"$justifyContent": 'center',
|
|
6841
|
-
"$borderRadius": '100%',
|
|
6842
|
-
"$background": themeColors.vms.disabled.info
|
|
6843
|
-
}, React__default.createElement(Icon, {
|
|
6844
|
-
icon: 'InformationFilled',
|
|
6845
|
-
size: 20,
|
|
6846
|
-
color: themeColors.vms["default"].info
|
|
6847
|
-
})),
|
|
6848
|
-
style: {
|
|
6849
|
-
borderRadius: '8px',
|
|
6850
|
-
background: themeColors.vms.text.white,
|
|
6851
|
-
color: themeColors.vms.text.dark,
|
|
6852
|
-
maxWidth: '648px'
|
|
6853
|
-
}
|
|
6854
|
-
});
|
|
6855
|
-
break;
|
|
6856
|
-
case 'promise':
|
|
6857
|
-
if (promiseConfig) {
|
|
6858
|
-
reactHotToast.toast.promise(promiseConfig.promise, {
|
|
6859
|
-
loading: promiseConfig.loading,
|
|
6860
|
-
success: promiseConfig.success,
|
|
6861
|
-
error: promiseConfig.error
|
|
6862
|
-
}, {
|
|
6821
|
+
setTimeout(function () {
|
|
6822
|
+
switch (type) {
|
|
6823
|
+
case 'success':
|
|
6824
|
+
reactHotToast.toast.success(message, {
|
|
6825
|
+
id: toastId
|
|
6826
|
+
});
|
|
6827
|
+
break;
|
|
6828
|
+
case 'error':
|
|
6829
|
+
reactHotToast.toast.error(message, {
|
|
6830
|
+
id: toastId
|
|
6831
|
+
});
|
|
6832
|
+
break;
|
|
6833
|
+
case 'info':
|
|
6834
|
+
reactHotToast.toast(message, {
|
|
6863
6835
|
id: toastId,
|
|
6836
|
+
icon: React__default.createElement(Container, {
|
|
6837
|
+
"$minWidth": '20px',
|
|
6838
|
+
"$height": '20px',
|
|
6839
|
+
"$width": '20px',
|
|
6840
|
+
"$alignItems": 'center',
|
|
6841
|
+
"$justifyContent": 'center',
|
|
6842
|
+
"$borderRadius": '100%',
|
|
6843
|
+
"$background": themeColors.vms.disabled.info
|
|
6844
|
+
}, React__default.createElement(Icon, {
|
|
6845
|
+
icon: 'InformationFilled',
|
|
6846
|
+
size: 20,
|
|
6847
|
+
color: themeColors.vms["default"].info
|
|
6848
|
+
})),
|
|
6864
6849
|
style: {
|
|
6865
|
-
|
|
6850
|
+
borderRadius: '8px',
|
|
6851
|
+
background: themeColors.vms.text.white,
|
|
6852
|
+
color: themeColors.vms.text.dark,
|
|
6853
|
+
maxWidth: '648px'
|
|
6866
6854
|
}
|
|
6867
6855
|
});
|
|
6868
|
-
|
|
6869
|
-
|
|
6870
|
-
|
|
6871
|
-
|
|
6872
|
-
|
|
6873
|
-
|
|
6874
|
-
|
|
6875
|
-
|
|
6876
|
-
|
|
6877
|
-
|
|
6878
|
-
|
|
6879
|
-
|
|
6880
|
-
|
|
6856
|
+
break;
|
|
6857
|
+
case 'promise':
|
|
6858
|
+
if (promiseConfig) {
|
|
6859
|
+
reactHotToast.toast.promise(promiseConfig.promise, {
|
|
6860
|
+
loading: promiseConfig.loading,
|
|
6861
|
+
success: promiseConfig.success,
|
|
6862
|
+
error: promiseConfig.error
|
|
6863
|
+
}, {
|
|
6864
|
+
id: toastId,
|
|
6865
|
+
style: {
|
|
6866
|
+
minWidth: '300px'
|
|
6867
|
+
}
|
|
6868
|
+
});
|
|
6881
6869
|
}
|
|
6882
|
-
|
|
6883
|
-
|
|
6884
|
-
|
|
6870
|
+
break;
|
|
6871
|
+
case 'custom':
|
|
6872
|
+
reactHotToast.toast(message, {
|
|
6873
|
+
id: toastId,
|
|
6874
|
+
icon: React__default.createElement(Icon, {
|
|
6875
|
+
icon: (customStyle === null || customStyle === void 0 ? void 0 : customStyle.icon) || 'Add_1',
|
|
6876
|
+
size: customStyle === null || customStyle === void 0 ? void 0 : customStyle.iconSize,
|
|
6877
|
+
weight: customStyle === null || customStyle === void 0 ? void 0 : customStyle.iconWeight
|
|
6878
|
+
}),
|
|
6879
|
+
style: {
|
|
6880
|
+
background: customStyle === null || customStyle === void 0 ? void 0 : customStyle.background,
|
|
6881
|
+
color: customStyle === null || customStyle === void 0 ? void 0 : customStyle.color
|
|
6882
|
+
}
|
|
6883
|
+
});
|
|
6884
|
+
break;
|
|
6885
|
+
}
|
|
6886
|
+
}, 100);
|
|
6885
6887
|
};
|
|
6886
6888
|
return {
|
|
6887
6889
|
sendNotification: sendNotification
|