Skip to content

Releases: aholachek/react-flip-toolkit

Fix types bug

05 Sep 17:55
Compare
Choose a tag to compare

This release addresses #94

v7.0.3

22 Aug 11:51
Compare
Choose a tag to compare

Fixes #91, incorrect types reference in package.json

v7.0.2

22 Aug 11:53
Compare
Choose a tag to compare

After moving to a mono-repo structure, the README.md for react-flip-toolkit needs to get copied into the top-level repo on package publish.

v7.0.0

16 Aug 01:28
Compare
Choose a tag to compare

Summary This release a spring utility, and reduces the size of the main library by a bit.

Breaking changes

  • Stagger delays for nested Flipped components are now no longer automatically handled. If you want a Flipped animation to wait for another (staggered) Flipped animation to begin, you need to explicitly provide a prop that references the flipId of the Flipped component to wait until: delayUntil="flipId". Getting rid of auttomatically handled nested staggers reduced the complexity of the code and made the library a bit smaller and a lot more maintainable.
  • the vanillajsreact-flip-toolkit/es/core has been replaced by flip-toolkit

Added

  • spring, a function to handle spring tweening of style attributes for you.

Improved

Add hack for releasing core sub-bundle with microbundle

09 Jul 11:26
Compare
Choose a tag to compare

Fixes #86
This will be unnecessary in V7 since flip-toolkit (aka core) will become its own package instead of a sub-import of react-flip-toolkit

Fix issues with umd and core releases

05 Jul 14:11
Compare
Choose a tag to compare

Fixes some relatively minor breaking changes caused by 6.6.6:

  1. Add back a compatibility build of /core at /es/core. The old recommended way to import the core file was:
import Core from 'react-flip-toolkit/es/core

and the new way is :

import Core from 'react-flip-toolkit/core'

The next major release will remove compatibility with the old es/core imports.

  1. Fix umd exports. For the (hopefully few) people who are using umd, you will now have to explicitly import the library's only dependency, Rematrix, first. You can import it from unpkg. For an example, check out the imports in this codepen.

v6.6.6

05 Jul 00:56
Compare
Choose a tag to compare

Switch to the amazing microbundle instead of doing rollup config myself, which allows me to get rid of the hardcoded types file and magically shaves a smidgen off the bundle size

v6.6.5

24 Jun 23:38
Compare
Choose a tag to compare

Fix #83 (stagger speed config is disregarded)

v6.6.4

16 Jun 13:30
Compare
Choose a tag to compare
  • Fix #81
  • Add doc comments to index.d.ts
  • tslint --> eslint

Fix nested transition bug

25 May 15:02
Compare
Choose a tag to compare

Fixes bug found in #78 where an appearing (non-flipped) parent will interfere in the flip animations of its children