├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __tests__ └── spatialNavigation.test.js ├── _config.yml ├── index.html ├── index.js ├── jest.config.js ├── package.json ├── resources └── images │ └── spatial-nav-example.gif └── src ├── App-random-coords.js ├── App.js ├── index.js ├── measureLayout.js ├── spatialNavigation.js ├── visualDebugger.js └── withFocusable.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/* -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/spatialNavigation.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/__tests__/spatialNavigation.test.js -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/_config.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/index.html -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/index.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/package.json -------------------------------------------------------------------------------- /resources/images/spatial-nav-example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/resources/images/spatial-nav-example.gif -------------------------------------------------------------------------------- /src/App-random-coords.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/src/App-random-coords.js -------------------------------------------------------------------------------- /src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/src/App.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/src/index.js -------------------------------------------------------------------------------- /src/measureLayout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/src/measureLayout.js -------------------------------------------------------------------------------- /src/spatialNavigation.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/src/spatialNavigation.js -------------------------------------------------------------------------------- /src/visualDebugger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/src/visualDebugger.js -------------------------------------------------------------------------------- /src/withFocusable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/NoriginMedia/react-spatial-navigation/HEAD/src/withFocusable.js --------------------------------------------------------------------------------