| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2026-02-26 | 1.4 kB | |
| v9.14.0 source code.tar.gz | 2026-02-26 | 1.8 MB | |
| v9.14.0 source code.zip | 2026-02-26 | 2.3 MB | |
| Totals: 3 Items | 4.1 MB | 1 | |
This release introduces a new resetOnSelect prop and adds support for the Hijri calendar.
Resetting Selections in Range Mode
When in range selection mode, use the new resetOnSelect prop to start a new range when a full range is already selected.
Hijri Calendar
To use the Hijri (Umm al-Qura) calendar, import DayPicker from react-day-picker/hijri:
:::tsx
import { DayPicker } from "react-day-picker/hijri";
export function HijriCalendar() {
return <DayPicker />;
}
Read more in the documentation and play with it in playground.
What's Changed
- feat: Add Hijri calendar support (Umm al-Qura) by @ws-rush in https://github.com/gpbl/react-day-picker/pull/2904
- feat: New
resetOnSelectprop to reset date range when selecting date with completed range by @rodgobbi in https://github.com/gpbl/react-day-picker/pull/2906 - feat: add default
langprop to DayPicker root element by @gpbl in https://github.com/gpbl/react-day-picker/pull/2907
New Contributors
- @ws-rush made their first contribution in https://github.com/gpbl/react-day-picker/pull/2904
Full Changelog: https://github.com/gpbl/react-day-picker/compare/v9.13.2...v9.14.0