v9.6 – Animated DayPicker #2702
gpbl
announced in
Announcements
Replies: 1 comment 1 reply
-
After updating to version v9.6.0, I'm encountering the following error: I saw that this issue has been addressed in v9.6.1, but it doesn't seem to be released yet. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
This release addresses an accessibility issue, adds a new
animate
prop and fixes other minor bugs.Possible breaking change in custom styles
To address a focus lost bug affecting navigation buttons, we updated the buttons to use
aria-disabled
instead of thedisabled
attribute.This change may cause custom styles for those disabled buttons to break. To fix it in your code, update the CSS selector to target
[aria-disabled="true"]
:Animating Month Transitions
Thanks to the work by @rodgobbi, we have added animations to DayPicker. The new
animate
prop enables CSS transitions for captions and weeks when navigating between months:Customizing the animation style can be challenging due to the HTML table structure of the grid. We may address this in the future. Please leave your feedback in DayPicker Discussions.
What's Changed
animate
prop by @rodgobbi in feat: month animation #2684sideEffects
property to package.json by @rodgobbi in performance: add sideEffects property to package.json #2673selected
modifier when disabled by @rodgobbi in fix: render selected days with selected modifier when disabled #2700New Contributors
Full Changelog: v9.5.1...v9.6.1
This discussion was created from the release v9.6.1.
Beta Was this translation helpful? Give feedback.
All reactions