├── .gitignore ├── .idea ├── .gitignore ├── misc.xml ├── modules.xml ├── react-captcha.iml └── vcs.xml ├── .storybook └── main.js ├── README.md ├── dist ├── main.js └── main.js.LICENSE.txt ├── package.json ├── src ├── captcha.tsx ├── index.ts └── utils.ts ├── stories ├── controlled.stories.tsx ├── module.d.ts ├── test.stories.tsx └── utils.ts ├── tsconfig.json ├── webpack.config.js └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | # 基于编辑器的 HTTP 客户端请求 5 | /httpRequests/ 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/.idea/misc.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /.idea/react-captcha.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/.idea/react-captcha.iml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/README.md -------------------------------------------------------------------------------- /dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/dist/main.js -------------------------------------------------------------------------------- /dist/main.js.LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/dist/main.js.LICENSE.txt -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/package.json -------------------------------------------------------------------------------- /src/captcha.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/src/captcha.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/src/utils.ts -------------------------------------------------------------------------------- /stories/controlled.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/stories/controlled.stories.tsx -------------------------------------------------------------------------------- /stories/module.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'react-captcha-code'; 2 | -------------------------------------------------------------------------------- /stories/test.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/stories/test.stories.tsx -------------------------------------------------------------------------------- /stories/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/stories/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/tsconfig.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebEngineerLi/react-captcha/HEAD/yarn.lock --------------------------------------------------------------------------------