Skip to content

Latest commit

 

History

History
29 lines (19 loc) · 429 Bytes

CHANGELOG.md

File metadata and controls

29 lines (19 loc) · 429 Bytes

## 4.0.2

Keyframe api, various bugfixes

3.1.0

Breaking changes:

  • Transition doesn't need keys any longer if it's a two-state transition/reveal.
<Transition
    from={{ opacity: 0 }} 
    enter={{ opacity: 1 }} 
    leave={{ opacity: 0 }}>
    {toggle ? ComponentA : ComponentB}
</Transition>

3.0.0

Breaking changes:

  • SpringTrail -> Trail
  • SpringTransition -> Transition

New primitives:

  • Parallax