├── .editorconfig ├── .fatherrc.ts ├── .gitignore ├── .npmrc ├── .prettierignore ├── .prettierrc.js ├── .umirc.ts ├── CHANGELOG.md ├── README.md ├── kiwi-config.json ├── package.json ├── src ├── Form.tsx ├── FormItem.tsx ├── PlainText.tsx ├── examples │ └── index.tsx ├── i18n.ts ├── index.md ├── index.test.tsx ├── index.ts ├── locale │ ├── en-US │ │ ├── en-US_translate.tsv │ │ ├── index.ts │ │ └── src.ts │ └── zh-CN │ │ ├── index.ts │ │ └── src.ts ├── style.ts └── utils.ts ├── tsconfig.json └── typings.d.ts /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/.editorconfig -------------------------------------------------------------------------------- /.fatherrc.ts: -------------------------------------------------------------------------------- 1 | export default { 2 | esm: 'babel', 3 | }; 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/.npmrc -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('@umijs/fabric').prettier; 2 | -------------------------------------------------------------------------------- /.umirc.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/.umirc.ts -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/README.md -------------------------------------------------------------------------------- /kiwi-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/kiwi-config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/package.json -------------------------------------------------------------------------------- /src/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/Form.tsx -------------------------------------------------------------------------------- /src/FormItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/FormItem.tsx -------------------------------------------------------------------------------- /src/PlainText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/PlainText.tsx -------------------------------------------------------------------------------- /src/examples/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/examples/index.tsx -------------------------------------------------------------------------------- /src/i18n.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/i18n.ts -------------------------------------------------------------------------------- /src/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/index.md -------------------------------------------------------------------------------- /src/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/index.test.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/locale/en-US/en-US_translate.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/locale/en-US/en-US_translate.tsv -------------------------------------------------------------------------------- /src/locale/en-US/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/locale/en-US/index.ts -------------------------------------------------------------------------------- /src/locale/en-US/src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/locale/en-US/src.ts -------------------------------------------------------------------------------- /src/locale/zh-CN/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/locale/zh-CN/index.ts -------------------------------------------------------------------------------- /src/locale/zh-CN/src.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/locale/zh-CN/src.ts -------------------------------------------------------------------------------- /src/style.ts: -------------------------------------------------------------------------------- 1 | import 'antd/es/form/style/css'; 2 | -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/tsconfig.json -------------------------------------------------------------------------------- /typings.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/linewell-zwfed/react-hook-form-with-antd/HEAD/typings.d.ts --------------------------------------------------------------------------------