├── .github └── workflows │ └── main.yml ├── .gitignore ├── .storybook ├── config.js └── main.js ├── LICENSE ├── README.md ├── __tests__ └── Form.test.tsx ├── docs ├── favicon.ico ├── iframe.html ├── index.html ├── main.86b4d1cdadd0657db0fb.bundle.js ├── main.86b4d1cdadd0657db0fb.bundle.js.map ├── main.b00e96d1574e3d9c1053.bundle.js ├── runtime~main.86b4d1cdadd0657db0fb.bundle.js ├── runtime~main.86b4d1cdadd0657db0fb.bundle.js.map ├── runtime~main.ab7db0239d02e2e25577.bundle.js ├── sb_dll │ ├── storybook_ui-manifest.json │ ├── storybook_ui_dll.LICENCE │ └── storybook_ui_dll.js ├── vendors~main.7121b1092e5054e3a9ef.bundle.js ├── vendors~main.86b4d1cdadd0657db0fb.bundle.js ├── vendors~main.86b4d1cdadd0657db0fb.bundle.js.LICENSE.txt └── vendors~main.86b4d1cdadd0657db0fb.bundle.js.map ├── package.json ├── src ├── components │ ├── CheckboxField.tsx │ ├── Containers.tsx │ ├── Form.tsx │ ├── NumberField.tsx │ ├── SelectField.tsx │ ├── SwitchField.tsx │ ├── TextAreaField.tsx │ └── TextField.tsx ├── hooks │ ├── useErrorMessage.ts │ └── useStyles.ts ├── index.tsx └── types.ts ├── stories ├── CustomFields.stories.tsx └── Form.stories.tsx └── tsconfig.json /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/.gitignore -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/Form.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/__tests__/Form.test.tsx -------------------------------------------------------------------------------- /docs/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/favicon.ico -------------------------------------------------------------------------------- /docs/iframe.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/iframe.html -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/main.86b4d1cdadd0657db0fb.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/main.86b4d1cdadd0657db0fb.bundle.js -------------------------------------------------------------------------------- /docs/main.86b4d1cdadd0657db0fb.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/main.86b4d1cdadd0657db0fb.bundle.js.map -------------------------------------------------------------------------------- /docs/main.b00e96d1574e3d9c1053.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/main.b00e96d1574e3d9c1053.bundle.js -------------------------------------------------------------------------------- /docs/runtime~main.86b4d1cdadd0657db0fb.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/runtime~main.86b4d1cdadd0657db0fb.bundle.js -------------------------------------------------------------------------------- /docs/runtime~main.86b4d1cdadd0657db0fb.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/runtime~main.86b4d1cdadd0657db0fb.bundle.js.map -------------------------------------------------------------------------------- /docs/runtime~main.ab7db0239d02e2e25577.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/runtime~main.ab7db0239d02e2e25577.bundle.js -------------------------------------------------------------------------------- /docs/sb_dll/storybook_ui-manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/sb_dll/storybook_ui-manifest.json -------------------------------------------------------------------------------- /docs/sb_dll/storybook_ui_dll.LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/sb_dll/storybook_ui_dll.LICENCE -------------------------------------------------------------------------------- /docs/sb_dll/storybook_ui_dll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/sb_dll/storybook_ui_dll.js -------------------------------------------------------------------------------- /docs/vendors~main.7121b1092e5054e3a9ef.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/vendors~main.7121b1092e5054e3a9ef.bundle.js -------------------------------------------------------------------------------- /docs/vendors~main.86b4d1cdadd0657db0fb.bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/vendors~main.86b4d1cdadd0657db0fb.bundle.js -------------------------------------------------------------------------------- /docs/vendors~main.86b4d1cdadd0657db0fb.bundle.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/vendors~main.86b4d1cdadd0657db0fb.bundle.js.LICENSE.txt -------------------------------------------------------------------------------- /docs/vendors~main.86b4d1cdadd0657db0fb.bundle.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/docs/vendors~main.86b4d1cdadd0657db0fb.bundle.js.map -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/package.json -------------------------------------------------------------------------------- /src/components/CheckboxField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/CheckboxField.tsx -------------------------------------------------------------------------------- /src/components/Containers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/Containers.tsx -------------------------------------------------------------------------------- /src/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/Form.tsx -------------------------------------------------------------------------------- /src/components/NumberField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/NumberField.tsx -------------------------------------------------------------------------------- /src/components/SelectField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/SelectField.tsx -------------------------------------------------------------------------------- /src/components/SwitchField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/SwitchField.tsx -------------------------------------------------------------------------------- /src/components/TextAreaField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/TextAreaField.tsx -------------------------------------------------------------------------------- /src/components/TextField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/components/TextField.tsx -------------------------------------------------------------------------------- /src/hooks/useErrorMessage.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/hooks/useErrorMessage.ts -------------------------------------------------------------------------------- /src/hooks/useStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/hooks/useStyles.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/src/types.ts -------------------------------------------------------------------------------- /stories/CustomFields.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/stories/CustomFields.stories.tsx -------------------------------------------------------------------------------- /stories/Form.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/stories/Form.stories.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FionnCasey/react-hook-form-generator/HEAD/tsconfig.json --------------------------------------------------------------------------------