├── .babelrc ├── .github └── workflows │ └── build.yml ├── .gitignore ├── .husky ├── commit-msg └── pre-commit ├── LICENSE ├── README.md ├── commitlint.config.ts ├── jest.config.ts ├── package.json ├── rollup.config.ts ├── setupTests.ts ├── src ├── __snapshots__ │ └── index.test.tsx.snap ├── index.test.tsx └── index.tsx ├── tsconfig.json └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/.babelrc -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/ 2 | dist/ 3 | node_modules/ 4 | build/ 5 | .DT_Store -------------------------------------------------------------------------------- /.husky/commit-msg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/.husky/commit-msg -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/commitlint.config.ts -------------------------------------------------------------------------------- /jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/jest.config.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/rollup.config.ts -------------------------------------------------------------------------------- /setupTests.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/__snapshots__/index.test.tsx.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/src/__snapshots__/index.test.tsx.snap -------------------------------------------------------------------------------- /src/index.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/src/index.test.tsx -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominikbulaj/react-scroll-into-view/HEAD/yarn.lock --------------------------------------------------------------------------------