@mamrp/components 1.0.38 → 1.0.39
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 +12 -12
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +12 -12
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -940,9 +940,20 @@ function ConfirmationDialog({
|
|
|
940
940
|
width: "100%",
|
|
941
941
|
gap: "12px",
|
|
942
942
|
alignItems: "center",
|
|
943
|
-
padding:
|
|
943
|
+
padding: 2
|
|
944
944
|
}
|
|
945
945
|
},
|
|
946
|
+
/* @__PURE__ */ React7.createElement(
|
|
947
|
+
import_material7.Button,
|
|
948
|
+
{
|
|
949
|
+
onClick: handleClose,
|
|
950
|
+
variant: "outlined",
|
|
951
|
+
color,
|
|
952
|
+
startIcon: /* @__PURE__ */ React7.createElement(import_md.MdOutlineCancel, { size: 15 }),
|
|
953
|
+
sx: { minWidth: "120px" }
|
|
954
|
+
},
|
|
955
|
+
"\u0627\u0646\u0635\u0631\u0627\u0641"
|
|
956
|
+
),
|
|
946
957
|
/* @__PURE__ */ React7.createElement(
|
|
947
958
|
import_material7.Button,
|
|
948
959
|
{
|
|
@@ -956,17 +967,6 @@ function ConfirmationDialog({
|
|
|
956
967
|
startIcon: isLoading ? /* @__PURE__ */ React7.createElement(import_material7.CircularProgress, { sx: { color: "white" }, size: 20 }) : React7.cloneElement(icon, { size: 16 })
|
|
957
968
|
},
|
|
958
969
|
actionTitle
|
|
959
|
-
),
|
|
960
|
-
/* @__PURE__ */ React7.createElement(
|
|
961
|
-
import_material7.Button,
|
|
962
|
-
{
|
|
963
|
-
onClick: handleClose,
|
|
964
|
-
variant: "outlined",
|
|
965
|
-
color,
|
|
966
|
-
startIcon: /* @__PURE__ */ React7.createElement(import_md.MdOutlineCancel, { size: 15 }),
|
|
967
|
-
sx: { minWidth: "120px" }
|
|
968
|
-
},
|
|
969
|
-
"\u0627\u0646\u0635\u0631\u0627\u0641"
|
|
970
970
|
)
|
|
971
971
|
)));
|
|
972
972
|
}
|