Interface: PropsBase
Props for customizing the calendar, handling localization, and managing events. These exclude the selection mode props.
See
https://daypicker.dev/api/interfaces/PropsBase
Properties
aria-label?
optional
aria-label:string
The aria-label attribute to add to the container element.
Since
9.4.1
See
https://daypicker.dev/guides/accessibility
Defined in
autoFocus?
optional
autoFocus:boolean
When a selection mode is set, DayPicker will focus the first selected day (if set) or today's date (if not disabled).
Use this prop when you need to focus DayPicker after a user action, for improved accessibility.
See
https://daypicker.dev/guides/accessibility#autofocus
Defined in
broadcastCalendar?
optional
broadcastCalendar:boolean
Display the weeks in the month following the broadcast calendar. Setting this prop will ignore weekStartsOn (always Monday) and showOutsideDays will default to true.
Since
9.4.0
See
- https://daypicker.dev/docs/localization#broadcast-calendar
- https://en.wikipedia.org/wiki/Broadcast_calendar
Defined in
captionLayout?
optional
captionLayout:"dropdown"
|"label"
|"dropdown-months"
|"dropdown-years"
Show dropdowns to navigate between months or years.
true
: display the dropdowns for both month and yearlabel
: display the month and the year as a label. Change the label with theformatCaption
formatter.month
: display only the dropdown for the monthsyear
: display only the dropdown for the years
Note: showing the dropdown will set the start/end months startMonth to 100 years ago, and endMonth to the end of the current year.
See
https://daypicker.dev/docs/customization#caption-layouts
Defined in
className?
optional
className:string
Class name to add to the root element.
Defined in
classNames?
optional
classNames:Partial
<ClassNames
> &Partial
<DeprecatedUI
<string
>>
Change the class names used by DayPicker.
Use this prop when you need to change the default class names — for example, when importing the style via CSS modules or when using a CSS framework.
See
https://daypicker.dev/docs/styling
Defined in
components?
optional
components:Partial
<CustomComponents
>
Change the components used for rendering the calendar elements.
See
https://daypicker.dev/guides/custom-components
Defined in
dateLib?
optional
dateLib:Partial
<DateLib
>
Experimental
Replace the default date library with a custom one. Experimental: not guaranteed to be stable (may not respect semver).
Since
9.0.0
Defined in
defaultMonth?
optional
defaultMonth:Date
The initial month to show in the calendar.
Use this prop to let DayPicker control the current month. If you need to set the month programmatically, use month and onMonthChange.
Default Value
The current month
See
https://daypicker.dev/docs/navigation
Defined in
dir?
optional
dir:string
The text direction of the calendar. Use ltr
for left-to-right (default)
or rtl
for right-to-left.
See
https://daypicker.dev/docs/translation#rtl-text-direction
Defined in
disabled?
Apply the disabled
modifier to the matching days.
See
https://daypicker.dev/docs/selection-modes#disabling-dates
Defined in
disableNavigation?
optional
disableNavigation:boolean
Disable the navigation between months. This prop won't hide the navigation: to hide the navigation, use hideNavigation.
See
https://daypicker.dev/docs/navigation#disablenavigation
Defined in
endMonth?
optional
endMonth:Date
The latest month to end the month navigation.
Since
9.0.0
See
https://daypicker.dev/docs/navigation#start-and-end-dates
Defined in
firstWeekContainsDate?
optional
firstWeekContainsDate:4
|1
The day of January, which is always in the first week of the year.
See
https://daypicker.dev/docs/localization#first-week-contains-date
Defined in
fixedWeeks?
optional
fixedWeeks:boolean
Display always 6 weeks per each month, regardless of the month’s number of weeks. Weeks will be filled with the days from the next month.
See
https://daypicker.dev/docs/customization#fixed-weeks
Defined in
footer?
optional
footer:ReactNode
Add a footer to the calendar, acting as a live region.
Use this prop to communicate the calendar's status to screen readers. Prefer strings over complex UI elements.
See
https://daypicker.dev/guides/accessibility#footer
Defined in
formatters?
optional
formatters:Partial
<Formatters
>
Formatters used to format dates to strings. Use this prop to override the default functions.
See
https://daypicker.dev/docs/translation#custom-formatters
Defined in
hidden?
Apply the hidden
modifier to the matching days. Will hide them from the
calendar.
See
https://daypicker.dev/guides/custom-modifiers#hidden-modifier
Defined in
hideNavigation?
optional
hideNavigation:boolean
Hide the navigation buttons. This prop won't disable the navigation: to disable the navigation, use disableNavigation.
Since
9.0.0
See
https://daypicker.dev/docs/navigation#hidenavigation
Defined in
hideWeekdays?
optional
hideWeekdays:boolean
Hide the row displaying the weekday row header.
Since
9.0.0
Defined in
id?
optional
id:string
A unique id to add to the root element.
Defined in
ISOWeek?
optional
ISOWeek:boolean
Use ISO week dates instead of the locale setting. Setting this prop will
ignore weekStartsOn
and firstWeekContainsDate
.
See
Defined in
labels?
optional
labels:Partial
<Labels
>
Labels creators to override the defaults. Use this prop to customize the aria-label attributes in DayPicker.
See
https://daypicker.dev/docs/translation#aria-labels
Defined in
lang?
optional
lang:string
Add the language tag to the container element.
Defined in
locale?
optional
locale:Partial
<Locale
>
The locale object used to localize dates. Pass a locale from
react-day-picker/locale
to localize the calendar.
Example
import { es } from "react-day-picker/locale";
<DayPicker locale={es} />
Default Value
enUS - The English locale default of date-fns
.
See
- https://daypicker.dev/docs/localization
- https://github.com/date-fns/date-fns/tree/main/src/locale for a list of the supported locales
Defined in
mode?
optional
mode:Mode
Enable the selection of a single day, multiple days, or a range of days.
See
https://daypicker.dev/docs/selection-modes
Defined in
modifiers?
optional
modifiers:Record
<string
,undefined
|Matcher
|Matcher
[]>
Add modifiers to the matching days.
See
https://daypicker.dev/guides/custom-modifiers
Defined in
modifiersClassNames?
optional
modifiersClassNames:ModifiersClassNames
Change the class name for the day matching the modifiers
.
See
https://daypicker.dev/guides/custom-modifiers
Defined in
modifiersStyles?
optional
modifiersStyles:ModifiersStyles
Change the class name for the day matching the modifiers.
See
https://daypicker.dev/guides/custom-modifiers
Defined in
month?
optional
month:Date
The month displayed in the calendar.
As opposed to defaultMonth
, use this prop with onMonthChange
to change
the month programmatically.
See
https://daypicker.dev/docs/navigation
Defined in
nonce?
optional
nonce:string
A cryptographic nonce ("number used once") which can be used by Content
Security Policy for the inline style
attributes.
Defined in
numberOfMonths?
optional
numberOfMonths:number
The number of displayed months.
Default Value
1
See
https://daypicker.dev/docs/customization#multiplemonths
Defined in
onDayBlur?
optional
onDayBlur:DayEventHandler
<FocusEvent
<Element
,Element
>>
Event handler when a day is blurred.
Defined in
onDayClick?
optional
onDayClick:DayEventHandler
<MouseEvent
<Element
,MouseEvent
>>
Event handler when a day is clicked.
Defined in
onDayFocus?
optional
onDayFocus:DayEventHandler
<FocusEvent
<Element
,Element
>>
Event handler when a day is focused.
Defined in
onDayKeyDown?
optional
onDayKeyDown:DayEventHandler
<KeyboardEvent
<Element
>>
Event handler when a key is pressed on a day.
Defined in
onDayMouseEnter?
optional
onDayMouseEnter:DayEventHandler
<MouseEvent
<Element
,MouseEvent
>>
Event handler when the mouse enters a day.
Defined in
onDayMouseLeave?
optional
onDayMouseLeave:DayEventHandler
<MouseEvent
<Element
,MouseEvent
>>
Event handler when the mouse leaves a day.
Defined in
onMonthChange?
optional
onMonthChange:MonthChangeEventHandler
Event fired when the user navigates between months.
See
https://daypicker.dev/docs/navigation#onmonthchange
Defined in
onNextClick?
optional
onNextClick:MonthChangeEventHandler
Event handler when the next month button is clicked.
See
https://daypicker.dev/docs/navigation
Defined in
onPrevClick?
optional
onPrevClick:MonthChangeEventHandler
Event handler when the previous month button is clicked.
See
https://daypicker.dev/docs/navigation
Defined in
pagedNavigation?
optional
pagedNavigation:boolean
Paginate the month navigation displaying the numberOfMonths
at a time.
See
https://daypicker.dev/docs/customization#multiplemonths
Defined in
required?
optional
required:boolean
Whether the selection is required.
See
https://daypicker.dev/docs/selection-modes
Defined in
reverseMonths?
optional
reverseMonths:boolean
Render the months in reversed order (when numberOfMonths is set) to display the most recent month first.
See
https://daypicker.dev/docs/customization#multiplemonths
Defined in
role?
optional
role:"application"
|"dialog"
The role attribute to add to the container element.
Since
9.4.1
See
https://daypicker.dev/guides/accessibility
Defined in
showOutsideDays?
optional
showOutsideDays:boolean
Show the outside days (days falling in the next or the previous month).
Note: when broadcastCalendar is set, this prop defaults to true.
See
https://daypicker.dev/docs/customization#outside-days
Defined in
showWeekNumber?
optional
showWeekNumber:boolean
Show the week numbers column. Weeks are numbered according to the local week index.
- To use ISO week numbering, use the
ISOWeek
prop. - To change how the week numbers are displayed, use the
formatters
prop.
See
https://daypicker.dev/docs/customization#showweeknumber
Defined in
startMonth?
optional
startMonth:Date
The earliest month to start the month navigation.
Since
9.0.0
See
https://daypicker.dev/docs/navigation#start-and-end-dates
Defined in
style?
optional
style:CSSProperties
Style to apply to the root element.
Defined in
styles?
optional
styles:Partial
<Styles
> &Partial
<DeprecatedUI
<CSSProperties
>>
Change the inline styles of the HTML elements.
See
https://daypicker.dev/docs/styling
Defined in
timeZone?
optional
timeZone:string
Experimental
The time zone (IANA or UTC offset) to use in the calendar (experimental). See Wikipedia for the possible values.
Time zones are supported by the TZDate
object by the
@date-fns/tz package. Please refer to the
package documentation for more information.
Since
9.1.1
See
https://daypicker.dev/docs/time-zone
Defined in
title?
optional
title:string
Add a title
attribute to the container element.
Defined in
today?
optional
today:Date
The today’s date. Default is the current date. This date will get the
today
modifier to style the day.
See
https://daypicker.dev/guides/custom-modifiers#today-modifier
Defined in
useAdditionalDayOfYearTokens?
optional
useAdditionalDayOfYearTokens:boolean
Enable YY
and YYYY
for day of year tokens when formatting or parsing
dates.
See
https://date-fns.org/docs/Unicode-Tokens
Defined in
useAdditionalWeekYearTokens?
optional
useAdditionalWeekYearTokens:boolean
Enable DD
and DDDD
for week year tokens when formatting or parsing
dates.
See
https://date-fns.org/docs/Unicode-Tokens
Defined in
weekStartsOn?
optional
weekStartsOn:0
|5
|4
|1
|6
|2
|3
The index of the first day of the week (0 - Sunday). Overrides the locale's one.
See
https://daypicker.dev/docs/localization#first-date-of-the-week