@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 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)(import_react3.Form, { onSubmit: handleSubmit, ...rest });
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(Form, { onSubmit: handleSubmit, ...rest });
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(
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@juantroconisf/lib",
3
- "version": "9.0.0",
3
+ "version": "9.0.1",
4
4
  "description": "A form validation library for HeroUI.",
5
5
  "main": "dist/index.js",
6
6
  "module": "dist/index.mjs",