| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| README.md | 2025-12-06 | 1.1 kB | |
| v9.12.0 source code.tar.gz | 2025-12-06 | 1.8 MB | |
| v9.12.0 source code.zip | 2025-12-06 | 2.2 MB | |
| Totals: 3 Items | 4.1 MB | 0 | |
This release adds translated labels to built-in locales and fixes issues with array modifiers and the Hebrew calendar.
Translated Locales
DayPicker locales now ship with localized labels (e.g., “Go to next month”, “Today”), so you no longer need to supply them via labels. To use a locale:
:::tsx
import { es } from "react-day-picker/locale";
<DayPicker locale={es} /> // Use Spanish locale, now with translated labels.
If you previously set the labels prop for translations, you can remove it. For details on switching locales, see https://daypicker.dev/localization/changing-locale.
What's Changed
- feat: add locale-aware labels and translated locale wrappers by @gpbl in https://github.com/gpbl/react-day-picker/pull/2861
- fix: match
Date[]modifiers by day by @gpbl in https://github.com/gpbl/react-day-picker/pull/2865 - fix: correct Hebrew date conversion timezone handling by @gpbl in https://github.com/gpbl/react-day-picker/pull/2870
Full Changelog: https://github.com/gpbl/react-day-picker/compare/v9.11.3...v9.12.0