Releases: pmndrs/react-spring
Releases · pmndrs/react-spring
v9.2.0-beta.4
v9.2.0-beta.3
Chores
- support react@17 in peer deps (#1478)
v9.2.0-beta.2
Fixes
Revert #1475
v9.2.0-beta.1
Fixes
useTransition
– assign controller to provided ref for useTransition (#1475)
v9.2.0-beta.0
Features
Parallax
– child horizontal prop defaults to parent's (#1458) –POTENTIALLY_BREAKING_CHANGE
Fixes
Parallax
– scrollTo gets correct scroll value (#1455)Core
– SpringValue would jump toto
value at end of decay (#1437)Core
– SpringValue wouldn't animate afterimmediate
value has been changed (#1026)
Chores
- repo now uses
preconstruct
andchangesets
recrawl
has been removed from repo due to lack of windows support
v9.1.2
v9.1.1
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
v9.1.0
Features
- We listened to the feedback people had, so whilst we encourage people to use the pattern
[styles, api] = useSpring()
we have aliased callingapi
to beapi.start
#1359 (thanks to @dbismut) POTENTIALLY BREAKING CHANGE
We've unified the return of all eventsonStart
,onChange
,onRest
etc. to be the following -(animationResult, controller, item)
item will only not beundefined
when usinguseTransition
.
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