cloudmr-ux 1.4.4 → 1.4.6
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 +2 -2
- package/dist/index.mjs +2 -2
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -341,7 +341,7 @@ function CmrUploadWindow({
|
|
|
341
341
|
setInfoOpen(true);
|
|
342
342
|
setInfoStyle("error");
|
|
343
343
|
setWarningText("Alias contains invalid characters ( , : % > < or spaces )");
|
|
344
|
-
setTimeout(() => setInfoOpen(false),
|
|
344
|
+
setTimeout(() => setInfoOpen(false), 1e4);
|
|
345
345
|
return;
|
|
346
346
|
}
|
|
347
347
|
setOpen(false);
|
|
@@ -982,7 +982,7 @@ function CmrEditConfirmation({
|
|
|
982
982
|
}
|
|
983
983
|
) }),
|
|
984
984
|
/* @__PURE__ */ (0, import_jsx_runtime14.jsxs)(import_DialogActions5.default, { children: [
|
|
985
|
-
cancellable && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(CmrButton_default, { variant: "outlined",
|
|
985
|
+
cancellable && /* @__PURE__ */ (0, import_jsx_runtime14.jsx)(CmrButton_default, { variant: "outlined", onClick: handleCancel, children: "Cancel" }),
|
|
986
986
|
/* @__PURE__ */ (0, import_jsx_runtime14.jsx)(CmrButton_default, { variant: "contained", color, onClick: handleConfirm, children: "Confirm" })
|
|
987
987
|
] })
|
|
988
988
|
] })
|
package/dist/index.mjs
CHANGED
|
@@ -293,7 +293,7 @@ function CmrUploadWindow({
|
|
|
293
293
|
setInfoOpen(true);
|
|
294
294
|
setInfoStyle("error");
|
|
295
295
|
setWarningText("Alias contains invalid characters ( , : % > < or spaces )");
|
|
296
|
-
setTimeout(() => setInfoOpen(false),
|
|
296
|
+
setTimeout(() => setInfoOpen(false), 1e4);
|
|
297
297
|
return;
|
|
298
298
|
}
|
|
299
299
|
setOpen(false);
|
|
@@ -934,7 +934,7 @@ function CmrEditConfirmation({
|
|
|
934
934
|
}
|
|
935
935
|
) }),
|
|
936
936
|
/* @__PURE__ */ jsxs10(DialogActions5, { children: [
|
|
937
|
-
cancellable && /* @__PURE__ */ jsx14(CmrButton_default, { variant: "outlined",
|
|
937
|
+
cancellable && /* @__PURE__ */ jsx14(CmrButton_default, { variant: "outlined", onClick: handleCancel, children: "Cancel" }),
|
|
938
938
|
/* @__PURE__ */ jsx14(CmrButton_default, { variant: "contained", color, onClick: handleConfirm, children: "Confirm" })
|
|
939
939
|
] })
|
|
940
940
|
] })
|