├── .gitignore ├── .npmignore ├── .nvmrc ├── .size-limit ├── .travis.yml ├── README.md ├── __tests__ └── index.tsx ├── example ├── app.tsx ├── index.html ├── index.tsx └── styled.ts ├── package.json ├── src ├── component.tsx ├── index.ts └── utils.ts ├── tsconfig.json ├── yarn-error.log └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /dist/ 3 | .DS_Store 4 | coverage/ 5 | yarn-error.log -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .DS_Store 4 | example -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | 8.5.0 -------------------------------------------------------------------------------- /.size-limit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/.size-limit -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/__tests__/index.tsx -------------------------------------------------------------------------------- /example/app.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/example/app.tsx -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/example/index.tsx -------------------------------------------------------------------------------- /example/styled.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/example/styled.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/package.json -------------------------------------------------------------------------------- /src/component.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/src/component.tsx -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/src/utils.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/tsconfig.json -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-scroll-locky/HEAD/yarn.lock --------------------------------------------------------------------------------