This repository has been archived by the owner on May 11, 2023. It is now read-only.
🐛 Fixes to the Repeat API
This release fixes bugs uncovered in the new repeat
API outlined in #124.
Fixed
- Specifying an even number for
repeat
no longer leads to an incorrect "jump" to theto
value specified in the hook config. PR by @parkerziegler here. - Erroneously specifying a
string
value forrepeat
no longer results in an animation extending beyond its bounds. While this will be caught at compile-time by TypeScript users, it's an easy mistake for JavaScript users to make, so we guard against it at runtime. PR by @parkerziegler here.