├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .size-limit ├── .storybook ├── addons.js └── config.js ├── LICENSE ├── README.md ├── __tests__ └── locky.spec.js ├── circle.yml ├── package.json ├── src ├── defaultEvents.js ├── handleScroll.js ├── index.js ├── isInside.js └── utils.js ├── stories └── index.js ├── types └── index.d.ts ├── yarn-error.log └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | /dist/ 3 | .DS_Store 4 | .idea/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | npm-debug.log 3 | .DS_Store -------------------------------------------------------------------------------- /.size-limit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/.size-limit -------------------------------------------------------------------------------- /.storybook/addons.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/.storybook/addons.js -------------------------------------------------------------------------------- /.storybook/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/.storybook/config.js -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/locky.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/__tests__/locky.spec.js -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/circle.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/package.json -------------------------------------------------------------------------------- /src/defaultEvents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/src/defaultEvents.js -------------------------------------------------------------------------------- /src/handleScroll.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/src/handleScroll.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/src/index.js -------------------------------------------------------------------------------- /src/isInside.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/src/isInside.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/src/utils.js -------------------------------------------------------------------------------- /stories/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/stories/index.js -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /yarn-error.log: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/yarn-error.log -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/theKashey/react-locky/HEAD/yarn.lock --------------------------------------------------------------------------------