@juantroconisf/lib 9.0.0 → 9.0.1
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 +10 -1
- package/dist/index.mjs +10 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -843,7 +843,16 @@ function useForm(schema, {
|
|
|
843
843
|
}
|
|
844
844
|
onSubmit?.(stateRef.current, e);
|
|
845
845
|
};
|
|
846
|
-
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
846
|
+
return /* @__PURE__ */ (0, import_jsx_runtime.jsx)(
|
|
847
|
+
import_react3.Form,
|
|
848
|
+
{
|
|
849
|
+
style: {
|
|
850
|
+
display: "contents"
|
|
851
|
+
},
|
|
852
|
+
onSubmit: handleSubmit,
|
|
853
|
+
...rest
|
|
854
|
+
}
|
|
855
|
+
);
|
|
847
856
|
};
|
|
848
857
|
}, []);
|
|
849
858
|
return (0, import_react2.useMemo)(
|
package/dist/index.mjs
CHANGED
|
@@ -817,7 +817,16 @@ function useForm(schema, {
|
|
|
817
817
|
}
|
|
818
818
|
onSubmit?.(stateRef.current, e);
|
|
819
819
|
};
|
|
820
|
-
return /* @__PURE__ */ jsx(
|
|
820
|
+
return /* @__PURE__ */ jsx(
|
|
821
|
+
Form,
|
|
822
|
+
{
|
|
823
|
+
style: {
|
|
824
|
+
display: "contents"
|
|
825
|
+
},
|
|
826
|
+
onSubmit: handleSubmit,
|
|
827
|
+
...rest
|
|
828
|
+
}
|
|
829
|
+
);
|
|
821
830
|
};
|
|
822
831
|
}, []);
|
|
823
832
|
return useMemo(
|