warqadui 0.0.33 → 0.0.34
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 +1 -1
- package/dist/index.mjs +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -1117,7 +1117,7 @@ var useModal = (initialState = false) => {
|
|
|
1117
1117
|
setState(data);
|
|
1118
1118
|
open();
|
|
1119
1119
|
}, []);
|
|
1120
|
-
const ModalComponent = (
|
|
1120
|
+
const ModalComponent = () => {
|
|
1121
1121
|
return /* @__PURE__ */ (0, import_jsx_runtime16.jsx)(Modal, { isOpen: true, onClose: close, title: state?.title, children: state?.content });
|
|
1122
1122
|
};
|
|
1123
1123
|
return {
|
package/dist/index.mjs
CHANGED
|
@@ -1037,7 +1037,7 @@ var useModal = (initialState = false) => {
|
|
|
1037
1037
|
setState(data);
|
|
1038
1038
|
open();
|
|
1039
1039
|
}, []);
|
|
1040
|
-
const ModalComponent = (
|
|
1040
|
+
const ModalComponent = () => {
|
|
1041
1041
|
return /* @__PURE__ */ jsx16(Modal, { isOpen: true, onClose: close, title: state?.title, children: state?.content });
|
|
1042
1042
|
};
|
|
1043
1043
|
return {
|