├── .babelrc ├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── .tav.yml ├── LICENSE.txt ├── README.md ├── jest.config.js ├── other └── cricket.png ├── package.json ├── rollup.config.js ├── src ├── __tests__ │ └── select-event.test.tsx ├── act-compat.ts └── index.ts ├── tsconfig.build.json └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | coverage 3 | lib 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/.npmignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | package-lock=false 2 | -------------------------------------------------------------------------------- /.tav.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/.tav.yml -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/jest.config.js -------------------------------------------------------------------------------- /other/cricket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/other/cricket.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/__tests__/select-event.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/src/__tests__/select-event.test.tsx -------------------------------------------------------------------------------- /src/act-compat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/src/act-compat.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/src/index.ts -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/romgain/react-select-event/HEAD/tsconfig.json --------------------------------------------------------------------------------