Releases: ganderzz/react-scroll-to
Releases · ganderzz/react-scroll-to
1.2.2
1.2.1
1.2.0
1.1.2
1.1.1
1.1.0
1.0.4
Consumer Improvements:
- Reduce bundle size of dist from
~9kb
->~3kb
- Add display names to ScrollToHOC (@newyork-anthonyng)
Code Improvements:
- Implement Linting (@UmenR)
- Implement unit tests & code coverage (@newyork-anthonyng)
- Add continuous integration through Circle CI
1.0.3
- (Breaking Change): Move scroll function from returning a function, to invoking itself. This means instead of calling
onClick={scroll(0, 0)}
it will change toonClick={() => scroll(0, 0) }
. This will reduce complexity if more actions need to be performed inside of the onClick handler.