Skip to content

Releases: pmndrs/react-spring

v9.1.1

12 Apr 22:02
Compare
Choose a tag to compare

Chores

  • Deps of packages now use ~ instead of ^. This will help users not interenally download minor version of the package incase we have potential breaking changes like in v9.1.0 – #1414 (thanks @CPatchane)

v9.0.1

12 Apr 21:55
Compare
Choose a tag to compare

Includes #1414 to avoid downloading minor versions, only patches will be installed in deps.

v9.1.0

08 Apr 18:26
Compare
Choose a tag to compare

Features

  • We listened to the feedback people had, so whilst we encourage people to use the pattern [styles, api] = useSpring() we have aliased calling api to be api.start #1359 (thanks to @dbismut)
  • POTENTIALLY BREAKING CHANGE We've unified the return of all events onStart, onChange, onRest etc. to be the following - (animationResult, controller, item) item will only not be undefined when using useTransition.

Fixes

  • scrollTop is not set when from & to are equal #1185 (thanks @Rohanhacker)
  • skip animation with async to infinite loop #1160
  • Stop jank in animation when duration changes on SpringValue #1163

Chores

  • We have our test suite working again! hooray, it means we can review and commit PR's quicker and more effectively
  • We've updated all our examples in this repo to v9 #1386 (huge thanks to @dbismut)

v9.0.0

23 Mar 11:59
Compare
Choose a tag to compare

v8.0.1

06 Feb 23:18
Compare
Choose a tag to compare

https://twitter.com/0xca0a/status/1093146801467781120

Breaking changes

Migrating from 7.x to 8.0 is painless. The only breaking change is the default export. If you have previously done something like this:

import { Spring, animated, ... } from 'react-spring'

Then you will now do:

import { Spring, animated, ... } from 'react-spring/renderprops'

And if you have previously used hooks like so:

import { useSpring, animated, ... } from 'react-spring/hooks'

You will now do:

import { useSpring, animated, ... } from 'react-spring'

The lib comes with the following exports:

web (web/hooks, default for react-dom)
native (react-native/hooks, default for react-native)
renderprops-web (previously "web")
renderprops-native (previously "native")
renderprops-addons (previously "addons")
renderprops-konva (previously "konva")
renderprops-universal (previously "universal")

For commonjs, add ".cjs"

Both render-props and hooks will be kept and maintained for the forseeable future.

useTransition

useTransition(items, keys, config)

See: http://react-spring.surge.sh/#/useTransition

v6.0.0

24 Oct 17:04
Compare
Choose a tag to compare

React-spring 6.0

  • ⚡️ React strict-mode compliant and ready for async rendering
  • 🚀 New spring engine (from rk4 to see), lots of internal changes making it faster and leaner
  • ✨ Simpler and more intuitive api

configs

  • ⏰ Duration is built in and as easy as going config={{ duration: 1000, easing: ... }}
  • ⌛️ Delays can be driven per config config={{ delay: 1000, ... }}
  • ✨ Simpler property names (mass, tension, friction, delay, precision, clamp, velocity, duration, easing)
  • 🎩 Spring config props are 1:1 compatible with react-motions and the presets finally do what they say

Springs

  • ⏮ Springs can run reverse, which switches from and to
  • 🚬 The after prop makes it easier to apply static values at the end of an animation
  • 🐉 Springs can animate scrollTop/Left

Transitions

  • 🎉 Multistage transitions are finally possible. Transition inherits from Keyframes now, which allows it to receive the same values that you can use in slots, meaning you can chain or even script transitions
  • ⭐️ The unique prop prevents two children with the same key to co-exist, which was an often asked for suggestion. If it is true, a fading-out item will vanish when an item with the same key comes in again, as opposed to forming a stack (which is still the default)
  • ✖️ The reset prop, in combination with unique forces an incoming item to always start from scratch instead of adapting the fading-out item to take start-position
  • 🐌 Transitions can trail using teh trail prop which takes a duration in ms
  • ✨ Simpler api. Previously you could optionally pass items and you would have to map over children yourself. items and keys are Transitions sole source of truth now. You give a single function child instead of mapping
  • 🎮 Transition behaves more like Reacts TransitionGroup in that it can give you way more contextual information than before, you even have access to the state your output component is in (enter/leave/update)

Trails

  • ✨ Simpler api. Same as Transitions
  • ⏮ The reverse prop can move a trail bottom-up instead of the default top-down which is more natural for items swinging in and out

Keyframes

  • ✨ Simpler api. You don't have to write to: {...} any longer since everything is interpolated to it

Parallax

  • 🤷‍ Parallax always felt off since it's not as generic as the others. It has been moved to react-spring/dist/addons and could mark the start of convenience components or effects that don't belong anywhere else

Upgrading from 5.0 to 6.0

The changes made are mostly features, the api changes are slight and looking at the front page here will tell you immediately what to do. You will probably have to adapt your Transitions and Trail, Keyframes are backwards compatible. If you have used timings off dist/addons before, duration is now inbuilt (see above). A noticeable change also concerns spring config props, where before we would be closer to how the animated library interprets tension and friction we are now 1:1 compatible with react-motion.

v5.9.0

v5.8.0