@mamrp/components 1.7.8 → 1.7.9
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.d.mts +2 -1
- package/dist/index.d.ts +2 -1
- package/dist/index.js +4 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -2
- package/dist/index.mjs.map +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -5250,7 +5250,8 @@ function CustomDialog({
|
|
|
5250
5250
|
maxWidth = "sm",
|
|
5251
5251
|
fullWidth = true,
|
|
5252
5252
|
children,
|
|
5253
|
-
actions
|
|
5253
|
+
actions,
|
|
5254
|
+
isSubmiting = false
|
|
5254
5255
|
}) {
|
|
5255
5256
|
return /* @__PURE__ */ React.createElement(
|
|
5256
5257
|
Dialog7,
|
|
@@ -5318,7 +5319,8 @@ function CustomDialog({
|
|
|
5318
5319
|
right: 8,
|
|
5319
5320
|
top: 8,
|
|
5320
5321
|
color: (theme3) => theme3.palette.grey[500]
|
|
5321
|
-
}
|
|
5322
|
+
},
|
|
5323
|
+
disabled: isSubmiting
|
|
5322
5324
|
},
|
|
5323
5325
|
/* @__PURE__ */ React.createElement(MdClose5, null)
|
|
5324
5326
|
)),
|