xladmin 0.3.4 → 0.3.5
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 +4 -4
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1064,7 +1064,7 @@ import InfoOutlinedIcon from "@mui/icons-material/InfoOutlined";
|
|
|
1064
1064
|
import { Box, Paper, Portal, Stack, Typography } from "@mui/material";
|
|
1065
1065
|
import { alpha, useTheme } from "@mui/material/styles";
|
|
1066
1066
|
import { jsx as jsx4, jsxs as jsxs2 } from "react/jsx-runtime";
|
|
1067
|
-
var DEFAULT_DURATION_MS =
|
|
1067
|
+
var DEFAULT_DURATION_MS = 5e3;
|
|
1068
1068
|
var EXIT_DURATION_MS = 220;
|
|
1069
1069
|
var defaultAdminMessageApi = {
|
|
1070
1070
|
show: () => -1,
|
|
@@ -1241,10 +1241,10 @@ function getBubbleAppearance(theme, kind) {
|
|
|
1241
1241
|
if (kind === "success") {
|
|
1242
1242
|
return {
|
|
1243
1243
|
icon: CheckCircleOutlineIcon,
|
|
1244
|
-
borderColor: alpha(theme.palette.success.main, 0.
|
|
1245
|
-
backgroundColor: alpha(theme.palette.success.main, 0.
|
|
1244
|
+
borderColor: alpha(theme.palette.success.main, 0.62),
|
|
1245
|
+
backgroundColor: alpha(theme.palette.success.main, 0.26),
|
|
1246
1246
|
iconColor: theme.palette.success.main,
|
|
1247
|
-
iconBackgroundColor: alpha(theme.palette.success.main, 0.
|
|
1247
|
+
iconBackgroundColor: alpha(theme.palette.success.main, 0.3)
|
|
1248
1248
|
};
|
|
1249
1249
|
}
|
|
1250
1250
|
if (kind === "error") {
|