react-form-manage 1.0.1 → 1.0.3
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.cjs.d.ts +1 -0
- package/dist/index.d.ts +13 -0
- package/dist/index.esm.d.ts +1 -0
- package/package.json +2 -2
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export default Form;
|
|
2
|
+
import FormItem from "./components/Form/FormItem";
|
|
3
|
+
import FormList from "./components/Form/FormList";
|
|
4
|
+
import Input from "./components/Input";
|
|
5
|
+
import InputWrapper from "./components/Form/InputWrapper";
|
|
6
|
+
import useFormItemControl from "./hooks/useFormItemControl";
|
|
7
|
+
import useFormListControl from "./hooks/useFormListControl";
|
|
8
|
+
import { useForm } from "./providers/Form";
|
|
9
|
+
import { useWatch } from "./providers/Form";
|
|
10
|
+
import { useSubmitDataWatch } from "./providers/Form";
|
|
11
|
+
import { useFormStateWatch } from "./providers/Form";
|
|
12
|
+
import Form from "./providers/Form";
|
|
13
|
+
export { FormItem, FormList, Input, InputWrapper, useFormItemControl, useFormListControl, useForm, useWatch, useSubmitDataWatch, useFormStateWatch };
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './index';
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "react-form-manage",
|
|
3
3
|
"private": false,
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.3",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"dev": "vite",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"default": "./dist/index.esm.js"
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
-
"types": "
|
|
59
|
+
"types": "dist/index.d.ts"
|
|
60
60
|
}
|