@mamrp/components 1.0.24 → 1.0.26
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 +16 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -10
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -812,7 +812,7 @@ import {
|
|
|
812
812
|
IconButton as IconButton2,
|
|
813
813
|
useMediaQuery
|
|
814
814
|
} from "@mui/material";
|
|
815
|
-
import {
|
|
815
|
+
import { GoTrash } from "react-icons/go";
|
|
816
816
|
import { MdClose, MdOutlineCancel } from "react-icons/md";
|
|
817
817
|
function ConfirmationDialog({
|
|
818
818
|
open,
|
|
@@ -837,13 +837,7 @@ function ConfirmationDialog({
|
|
|
837
837
|
alignItems: "center",
|
|
838
838
|
gap: 1
|
|
839
839
|
},
|
|
840
|
-
/* @__PURE__ */ React7.createElement(
|
|
841
|
-
FaRegTrashAlt,
|
|
842
|
-
{
|
|
843
|
-
style: { color: iconColor },
|
|
844
|
-
size: isMobile ? 18 : 20
|
|
845
|
-
}
|
|
846
|
-
),
|
|
840
|
+
/* @__PURE__ */ React7.createElement(GoTrash, { style: { color: iconColor }, size: isMobile ? 18 : 20 }),
|
|
847
841
|
headerText
|
|
848
842
|
), /* @__PURE__ */ React7.createElement(
|
|
849
843
|
IconButton2,
|
|
@@ -858,7 +852,7 @@ function ConfirmationDialog({
|
|
|
858
852
|
}
|
|
859
853
|
},
|
|
860
854
|
/* @__PURE__ */ React7.createElement(MdClose, null)
|
|
861
|
-
), /* @__PURE__ */ React7.createElement(Divider,
|
|
855
|
+
), /* @__PURE__ */ React7.createElement(Divider, null), /* @__PURE__ */ React7.createElement(
|
|
862
856
|
DialogContent2,
|
|
863
857
|
{
|
|
864
858
|
sx: {
|
|
@@ -898,7 +892,7 @@ function ConfirmationDialog({
|
|
|
898
892
|
variant: "contained",
|
|
899
893
|
color,
|
|
900
894
|
sx: { minWidth: "120px" },
|
|
901
|
-
startIcon: isLoading ? /* @__PURE__ */ React7.createElement(CircularProgress, { sx: { color: "white" }, size: 20 }) : /* @__PURE__ */ React7.createElement(
|
|
895
|
+
startIcon: isLoading ? /* @__PURE__ */ React7.createElement(CircularProgress, { sx: { color: "white" }, size: 20 }) : /* @__PURE__ */ React7.createElement(GoTrash, { size: 16 })
|
|
902
896
|
},
|
|
903
897
|
actionTitle
|
|
904
898
|
),
|