Releases: beekai-oss/react-simple-animate
Releases · beekai-oss/react-simple-animate
Version 2.1.1
- fix a bug with
setTimeout
on the constructor onAnimate
Version 2.1.0
- new
AnimateKeyframes
component AnimateKeyframes
work withAnimateGroup
with sequences- Support css animation keyframes in React Simple Animate 🎉🎉🎉
Version 2.0.6
- fix a bug on mount child with toggle animation
Version 2.0.5
- fix a bug on the delay seconds on
AnimateGroup
and playing sequence
Version 2.0.4
- fix a bug when
play
prop set default as true, the animation is not play properly
Version 2.0.3
- fix bug on calculate total animation duration with reverse duration seconds
Version 2.0.2
- fixed
reverseDurationSeconds
Bug - added
reverseSequences
for reverse group animation
Version 2.0.1
- Fix a bug on complete style duration calculation
- upgrade dev packages
Version 2.0.0
🎯Version 2.0.0 released
<AnimateGroup />
support sequence with AnimateGroup- Ready for React 17 👍
- Code size reduced
- Smoother animation with
delaySeconds
- Added
reverseDurationSeconds
when you play animation in reverse - Added
mount
andunmount
props to animate component to be removed or added to the DOM - Improved
ref
with React.forwardRef() API
Breaking Changes
startAnimation
renamed toplay
- Package have been separated to
import { Animate, AnimateGroup } from 'react-simple-animate'
willAnimateAddOrRemove
have been removed, instead using new propsmount
andunmount
refCallback
have been removed, instead just useref
Version 1.9.3
- fix bug when
animateOnAddRemove
passed as prop, onlystartAnimation
is passed to children. now the props includes:
{ startStyle, endStyle, startAnimation, durationSeconds, onCompleteStyle, delaySeconds, reverseDelaySeconds, onComplete, easeType, }