| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-09-20 | 2.3 kB | |
| v9.11.0 source code.tar.gz | 2025-09-20 | 1.8 MB | |
| v9.11.0 source code.zip | 2025-09-20 | 2.1 MB | |
| Totals: 3 Items | 3.9 MB | 0 | |
This release adds support for Buddhist and Hebrew calendars, introduces new Southeast Asian numeral systems, adds the aria-labelledby prop, and improves month/year formatting for specific locales. It also includes fixes for the recently added Ethiopic calendar.
Buddhist Calendar
To use the Buddhist calendar, import DayPicker from react-day-picker/buddhist.
:::tsx
import { DayPicker } from "react-day-picker/buddhist";
export function BuddhistCalendar() {
return <DayPicker />;
}
Read more in the documentation and play with it in playground.
Hebrew Calendar
To switch to the Hebrew calendar, import DayPicker from react-day-picker/hebrew.
:::tsx
import { DayPicker } from "react-day-picker/hebrew";
export function HebrewCalendar() {
return <DayPicker />;
}
Read more in the documentation and play with it in playground.
What's Changed
- feat: Buddhist calendar by @gpbl in https://github.com/gpbl/react-day-picker/pull/2825
- feat: Hebrew calendar by @gpbl in https://github.com/gpbl/react-day-picker/pull/2827
- feat: align month/year caption and dropdown with locale by @gpbl in https://github.com/gpbl/react-day-picker/pull/2830
- feat: add
aria-labelledbyprop by @gpbl in https://github.com/gpbl/react-day-picker/pull/2828 - feat: add Southeast Asian numeral systems by @gpbl in https://github.com/gpbl/react-day-picker/pull/2832
- fix: ethiopic calendar may crash with dropdown layout by @gpbl in https://github.com/gpbl/react-day-picker/pull/2831
- fix: years are not correctly formatted in ethiopic calendar by @gpbl in https://github.com/gpbl/react-day-picker/pull/2831
Full Changelog: https://github.com/gpbl/react-day-picker/compare/v9.10.0...v9.11.0