├── .eslintignore ├── .eslintignore ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── release.yml ├── .gitignore ├── .releaserc.js ├── .storybook ├── main.js └── preview.js ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── package.json ├── semantic-release-templates ├── commit-template.hbs └── default-template.hbs ├── src ├── Joystick.stories.tsx ├── Joystick.test.tsx ├── Joystick.tsx ├── enums │ └── shape.enum.ts ├── index.tsx ├── shapes │ ├── shape.bounds.factory.ts │ └── shape.factory.ts └── stories.css ├── tsconfig.json ├── tslint.json └── yarn.lock /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /.eslintignore : -------------------------------------------------------------------------------- 1 | node_modules 2 | build -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.gitignore -------------------------------------------------------------------------------- /.releaserc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.releaserc.js -------------------------------------------------------------------------------- /.storybook/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.storybook/main.js -------------------------------------------------------------------------------- /.storybook/preview.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/.storybook/preview.js -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/package.json -------------------------------------------------------------------------------- /semantic-release-templates/commit-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/semantic-release-templates/commit-template.hbs -------------------------------------------------------------------------------- /semantic-release-templates/default-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/semantic-release-templates/default-template.hbs -------------------------------------------------------------------------------- /src/Joystick.stories.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/Joystick.stories.tsx -------------------------------------------------------------------------------- /src/Joystick.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/Joystick.test.tsx -------------------------------------------------------------------------------- /src/Joystick.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/Joystick.tsx -------------------------------------------------------------------------------- /src/enums/shape.enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/enums/shape.enum.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/index.tsx -------------------------------------------------------------------------------- /src/shapes/shape.bounds.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/shapes/shape.bounds.factory.ts -------------------------------------------------------------------------------- /src/shapes/shape.factory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/shapes/shape.factory.ts -------------------------------------------------------------------------------- /src/stories.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/src/stories.css -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/tslint.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elmarti/react-joystick-component/HEAD/yarn.lock --------------------------------------------------------------------------------