Skip to content

Releases: nandorojo/moti

v0.12.2

01 Sep 17:14
Compare
Choose a tag to compare

0.12.2 (2021-09-01)

Bug Fixes

  • closes #104, where exit completion never fired (da4eafa)

v0.12.1

01 Sep 15:12
Compare
Choose a tag to compare

0.12.1 (2021-09-01)

Bug Fixes

v0.12.0

01 Sep 01:44
Compare
Choose a tag to compare

0.12.0 (2021-09-01)

This release solves every open issue 😎

Bug Fixes

Features

  • add custom & initial props to AnimatePresence (7fafc30)
  • progress bar (unfinished, don't use) (9823cd1)

v0.11.0

17 May 19:49
Compare
Choose a tag to compare

0.11.0 (2021-05-17)

Features

  • add onDidAnimate callback 4th arg w/ attemptedValue; docs (66dfa76)

v0.10.1

27 Apr 23:55
Compare
Choose a tag to compare

0.10.1 (2021-04-27)

Note: Version bump only for package moti

v0.10.0

21 Apr 15:55
Compare
Choose a tag to compare

0.10.0 (2021-04-21)

Features

  • add exitTransition support & docs! (26a55ac)

See tweet about exitTransition: https://twitter.com/FernandoTheRojo/status/1384918970877288456?s=20

Options passed to exitTransition will only apply to the exit prop, when a component is exiting.

<MotiView
  // the animate prop uses the transition
  transition={{ type: 'spring' }}
  animate={{ opacity: 1, scale: 1 }}
  // when exiting, it will use a timing transition
  exitTransition={{ type: 'timing' }}
  exit={{ opacity: 0, scale: 0.1 }}
/>

By default, exit uses transition to configure its animations, so this prop is not required.

However, if you pass exitTransition, it will override transition for exit animations.

To see how to use this prop, see the transition docs.

v0.9.0

21 Apr 00:23
Compare
Choose a tag to compare

0.9.0 (2021-04-21)

Features

  • upgrade reanimated, add custom sequence transitions! (8e64014)

v0.8.2

02 Apr 14:27
Compare
Choose a tag to compare

0.8.2 (2021-04-02)

Bug Fixes

  • #48 Solve broken Skeleton, AnimatePresence (080b7c9)

v0.8.1

01 Apr 19:33
Compare
Choose a tag to compare

0.8.1 (2021-04-01)

Note: Version bump only for package moti

v0.8.0

01 Apr 18:50
Compare
Choose a tag to compare

0.8.0 (2021-04-01)

Breaking changes

Features

  • Add compatibility with Reanimated v2 stable!
  • turn useDynamicAnimation().animateTo into a worklet (ebd2830)