├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .gitignore ├── .npmignore ├── .prettierignore ├── LICENSE.md ├── README.md ├── babel.config.json ├── eslint.config.mjs ├── package.json ├── src └── Sticky.jsx ├── tests ├── functional │ ├── bootstrap.js │ ├── index.html │ ├── sticky-functional.jsx │ └── sticky.spec.js ├── helpers │ └── rAF.js └── unit │ └── Sticky.test.js ├── wdio.conf.js └── webpack.config.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/.prettierignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/babel.config.json -------------------------------------------------------------------------------- /eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/eslint.config.mjs -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/package.json -------------------------------------------------------------------------------- /src/Sticky.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/src/Sticky.jsx -------------------------------------------------------------------------------- /tests/functional/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/tests/functional/bootstrap.js -------------------------------------------------------------------------------- /tests/functional/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/tests/functional/index.html -------------------------------------------------------------------------------- /tests/functional/sticky-functional.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/tests/functional/sticky-functional.jsx -------------------------------------------------------------------------------- /tests/functional/sticky.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/tests/functional/sticky.spec.js -------------------------------------------------------------------------------- /tests/helpers/rAF.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/tests/helpers/rAF.js -------------------------------------------------------------------------------- /tests/unit/Sticky.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/tests/unit/Sticky.test.js -------------------------------------------------------------------------------- /wdio.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/wdio.conf.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yahoo/react-stickynode/HEAD/webpack.config.js --------------------------------------------------------------------------------