Releases: ganderzz/react-scroll-to
Releases · ganderzz/react-scroll-to
3.0.0-beta.4
- Remove External dependencies from library (reducing package size!)
- Fix SSR issues with
window
not found
2.0.10
2.0.6
2.0.4
2.0.3
v2.0.2
v2.0.1
2.0.0
Introducing a new API for React-Scroll-To that'll allow more flexibility!
Notable features:
- Added the ability to scroll by a ref object
- Added the ability to smooth scroll
- Added cleaner destructuring in render props
- Updated
scroll
andscrollById
functions to be a singularscrollTo
function scrollTo()
not accepts an object that allows some fields to be left out (No longer need to include the 'x' position if we're only scrolling by 'y')- Added Storybook docs to visualize and test features
Example:
scrollTo({
x: 25 // The horizontal x position to scroll to
y: 10 // The vertical y position to scroll to
id: "myId" // The ID of the ScrollArea we want to scroll
ref: refObj // A reference to a component to scroll
smooth: true // If true, this will animate the scroll to be smooth. False will give an instant scroll. (defaults: false)
});
2.0.0-alpha.1
Docs: https://github.com/ganderzz/react-scroll-to/tree/release/2.0.0
Prerelease of the 2.0.0 features.
- Added the ability to smooth scroll
- Added the ability to scroll an element by ref
- Updated API to be more declarative
- Added React Storybook for examples and documentation
- Update to latest version of React and dependencies
- Consolidate multiple methods into one
scrollTo