├── .editorconfig ├── .eslintrc.js ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── .nvmrc ├── .prettierrc.json ├── CHANGELOG.md ├── README.md ├── demo ├── .eslintrc.js ├── package-lock.json ├── package.json ├── src │ ├── @types │ │ ├── assets.d.ts │ │ └── raw-loader.ts │ ├── Demo.css │ ├── Demo.tsx │ ├── index.html │ └── index.tsx ├── tsconfig.json └── webpack.config.js └── file-drop ├── .eslintrc.js ├── package-lock.json ├── package.json ├── src ├── FileDrop.tsx └── index.js └── tsconfig.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | dist 3 | secrets 4 | -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v13.5.0 2 | -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/README.md -------------------------------------------------------------------------------- /demo/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../.eslintrc'); 2 | -------------------------------------------------------------------------------- /demo/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/package-lock.json -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/src/@types/assets.d.ts: -------------------------------------------------------------------------------- 1 | declare module '*.css'; 2 | -------------------------------------------------------------------------------- /demo/src/@types/raw-loader.ts: -------------------------------------------------------------------------------- 1 | declare module '!!raw-loader!*'; 2 | -------------------------------------------------------------------------------- /demo/src/Demo.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/src/Demo.css -------------------------------------------------------------------------------- /demo/src/Demo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/src/Demo.tsx -------------------------------------------------------------------------------- /demo/src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/src/index.html -------------------------------------------------------------------------------- /demo/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/src/index.tsx -------------------------------------------------------------------------------- /demo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/tsconfig.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /file-drop/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = require('../.eslintrc'); 2 | -------------------------------------------------------------------------------- /file-drop/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/file-drop/package-lock.json -------------------------------------------------------------------------------- /file-drop/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/file-drop/package.json -------------------------------------------------------------------------------- /file-drop/src/FileDrop.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/file-drop/src/FileDrop.tsx -------------------------------------------------------------------------------- /file-drop/src/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./FileDrop'); 2 | -------------------------------------------------------------------------------- /file-drop/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sarink/react-file-drop/HEAD/file-drop/tsconfig.json --------------------------------------------------------------------------------