Releases: some-react-components/react-scrollchor
Releases · some-react-components/react-scrollchor
7.0.2
Minor security update with the following changes:
- Updated
package-lock.json
to avoid vulnerable dependencies reported by npm audit
Thanks to @SeinopSys, @bySabi
7.0.1
Minor security update with the following changes:
- Updated
package-lock.json
to avoid vulnerable dependencies reported by npm audit
7.0.0
This is a major update to React Scrollchor
with the following changes:
- Written in Typescript that will make the integration easier and safer in your development cycle
- The implementation of the easing functions has been improved. Now you can choose between:
easeOutQuad
, swing
, linear
included in this module or replace it with your own function
- Internally implemented using React Hooks, the new minimum dependency is React
16.8.0
- Default export being removed in favor of a named
Scrollchor
export
- The documentation,
README
, on the module site has been improved. Now it is much clearer.
... more details in CHANGELOG.md
All of this would not have been possible without the hard work of @SeinopSys who, basically, has done it all. THANKS David !!
6.0.0
Scrollchor
React component now belong to Some React Component
Organization Team. This move will ensure its future development and manteniance.
- Added configurable
scrollable container
feature, target
prop. Thanks to @xephuk dedicated effort.
- @xehpuk join
React-Schollchor
Team
- minor Doc corrections
5.1.0
- Replace internal function
updateHistory
implementation for prevent scroll jumps on browser history update
5.0.2
- Now each
Scrollchor
instance has its own animateScroll
function that track animation state and eliminates the possibility of multiple animations interfering with each other, thanks to @xehpuk PR
5.0.1
- Fix a state bug introduced on release
5.0.0
animateScroll
is now asynchronous, thanks to @xehpuk PR
5.0.0
- Add support for React 16.3.x new API
- Prevent warning on React 16.3.x deprecated
componentWillReceiveProps
4.2.1
- Prevent error when clicking a link to an anchor that does not exist. Thanks to @SBRK contribution
4.2.0
- Implemented animation using
requestAnimationFrame
. Thanks to @kambing86 PR