├── .github └── FUNDING.yml ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── docs ├── dist │ ├── index.d.ts │ ├── main.js │ └── vendor.js ├── index.html ├── package.json ├── src │ ├── index.tsx │ └── style.css ├── tsconfig.json └── webpack.config.js ├── package.json ├── src └── index.tsx └── tsconfig.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | # These are supported funding model platforms 2 | 3 | github: exelban 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/README.md -------------------------------------------------------------------------------- /docs/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/dist/index.d.ts -------------------------------------------------------------------------------- /docs/dist/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/dist/main.js -------------------------------------------------------------------------------- /docs/dist/vendor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/dist/vendor.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/index.html -------------------------------------------------------------------------------- /docs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/package.json -------------------------------------------------------------------------------- /docs/src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/src/index.tsx -------------------------------------------------------------------------------- /docs/src/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/src/style.css -------------------------------------------------------------------------------- /docs/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/tsconfig.json -------------------------------------------------------------------------------- /docs/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/docs/webpack.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/package.json -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/exelban/react-swipe-component/HEAD/tsconfig.json --------------------------------------------------------------------------------