Skip to content

Releases: azazdeaz/react-gsap-enhancer

v0.2.0

26 Nov 11:26
Compare
Choose a tag to compare
  • Support React v0.14+ (don't support v0.13 and older React versions)
  • Can't use keys to select component anymore. (It was necessary because of some changes in React)
    • migration: You can use other props to identify a component. I suggest to add a name='some-string' so you can select it like target.find({name: 'some-string'})
  • Animation is renamed to Controller (the object returned from component.addAnimation(animationSource, options))
  • Controller only exposing a limited set of the GSAP API so you can't edit the animation (ex. with .to() or .add()) trough the Controller but control it. So now the animations can be edited only inside the animation source function.
  • component.removeAnimation(controller) is deprecated. You can just use controller.kill() to remove an animation.
  • Added more errors and warnings to make the development easier.

v0.1.16

09 Nov 16:10
Compare
Choose a tag to compare
  • do fixes
  • add more tests
  • polish readme

v0.1.10

13 Oct 15:59
Compare
Choose a tag to compare

fix support for React@0.13
fix wrapping GSAP Animations to return the result of non chainable methods (like animation.paused())

v0.1.9

09 Oct 16:21
Compare
Choose a tag to compare

Support react@0.14

v0.1.7

24 Sep 10:56
Compare
Choose a tag to compare
  • Browser build
  • Other fixes and enhancments

v0.1.6

14 Sep 16:50
Compare
Choose a tag to compare

Fix exporting createTarget()

v0.1.5

14 Sep 16:47
Compare
Choose a tag to compare

first release

0.0.0

14 Jul 07:43
Compare
Choose a tag to compare
0.0.0 Pre-release
Pre-release
wip: add first demo