DatePicker

DatePickers combine a DateInput and a Calendar popover to allow users to enter or select a date and time value.


Installation

nextui add date-picker
No need to install this package if @nextui-org/react is already installed globally.

Import

Usage

Disabled

Read Only

Required

Variants

Label Placements

You can change the position of the label by setting the labelPlacement property to inside, outside or outside-left.

Note: If the label is not passed, the labelPlacement property will be outside by default.

With Description

You can add a description to the date-picker by passing the description property.

With Error Message

You can combine the isInvalid and errorMessage properties to show an invalid input.

With Month and Year Pickers

With Time Fields

Selector Icon

You can use the selector to add content to the start and end of the date-picker.

Controlled

You can use the value and onChange properties to control the input value.

Time Zones

DatePicker is time zone aware when a ZonedDateTime object is provided as the value. In this case, the time zone abbreviation is displayed, and time zone concerns such as daylight saving time are taken into account when the value is manipulated.

@internationalized/date includes functions for parsing strings in multiple formats into ZonedDateTime objects.

npm install @internationalized/date
No need to install this package if @nextui-org/react is already installed globally.
import {parseZonedDateTime} from "@internationalized/date";

Granularity

The granularity prop allows you to control the smallest unit that is displayed by DatePicker By default, the value is displayed with "day" granularity (year, month, and day), and CalendarDateTime and ZonedDateTime values are displayed with "minute" granularity.

@internationalized/date includes functions for parsing strings in multiple formats into ZonedDateTime objects.

npm install @internationalized/date @react-aria/i18n
No need to install this package if @nextui-org/react is already installed globally.
import {DateValue, now, parseAbsoluteToLocal} from "@internationalized/date";
import {useDateFormatter} from "@react-aria/i18n";

Min Date And Max Date

The minValue and maxValue props can also be used to ensure the value is within a specific range.

@internationalized/date includes functions for parsing strings in multiple formats into ZonedDateTime objects.

npm install @internationalized/date
No need to install this package if @nextui-org/react is already installed globally.
import {getLocalTimeZone, parseDate, today} from "@internationalized/date";

International Calendar

DatePicker supports selecting dates in many calendar systems used around the world, including Gregorian, Hebrew, Indian, Islamic, Buddhist, and more. Dates are automatically displayed in the appropriate calendar system for the user's locale. The calendar system can be overridden using the Unicode calendar locale extension, passed to the I18nProvider component.

@internationalized/date includes functions for parsing strings in multiple formats into ZonedDateTime objects.

npm install @internationalized/date @react-aria/i18n
No need to install this package if @nextui-org/react is already installed globally.
import {DateValue, now, parseAbsoluteToLocal} from "@internationalized/date";
import {I18nProvider} from "@react-aria/i18n";

Unavailable Dates

DatePicker supports marking certain dates as unavailable. These dates cannot be selected by the user and are displayed with a crossed out appearance in the calendar. In the date field, an invalid state is displayed if a user enters an unavailable date.

@internationalized/date includes functions for parsing strings in multiple formats into ZonedDateTime objects.

npm install @internationalized/date @react-aria/i18n
No need to install this package if @nextui-org/react is already installed globally.
import {today, isWeekend, getLocalTimeZone} from "@internationalized/date";
import {useLocale} from "@react-aria/i18n";

Visible Months

By default, the calendar popover displays a single month. The visibleMonths prop allows displaying up to 3 months at a time, if screen space permits.

Page Behavior

By default, when pressing the next or previous buttons, pagination will advance by the visibleMonths value. This behavior can be changed to page by single months instead, by setting pageBehavior to single.

Preset

@internationalized/date includes functions for parsing strings in multiple formats into ZonedDateTime objects.

npm install @internationalized/date @react-aria/i18n
No need to install this package if @nextui-org/react is already installed globally.
import {
DateValue,
now,
useLocale,
startOfWeek,
startOfMonth,
useDateFormatter,
getLocalTimeZone,
} from "@internationalized/date";
import {I18nProvider} from "@react-aria/i18n";

Slots

  • base: Input wrapper, it handles alignment, placement, and general appearance.
  • selectorButton: Selector button element.
  • selectorIcon: Selector icon element.
  • popoverContent: The calendar popover element.
  • calendar: The calendar element.
  • calendarContent: The calendar's content element.
  • timeInputLabel: The time-input component's label element.
  • timeInput: The time-input component element.

Data Attributes

DatePicker has the following attributes on the base element:

  • data-slot: All slots have this prop. which slot the element represents(e.g. canlendar).
  • data-open: Indicates if the calendar popover is open.
  • data-invalid: When the date-picker is invalid. Based on isInvalid prop.
  • data-required: When the date-picker is required. Based on isRequired prop.
  • data-readonly: When the date-picker is readonly. Based on isReadOnly prop.
  • data-disabled: When the date-picker is disabled. Based on isDisabled prop.

Accessibility

  • Each date and time unit is displayed as an individually focusable and editable segment, which allows users an easy way to edit dates using the keyboard, in any date format and locale.
  • Users can also open a calendar popover to select dates in a standard month grid.
  • Localized screen reader messages are included to announce when the selection and visible date range change.
  • Date segments are editable using an easy to use numeric keypad, and all interactions are accessible using touch-based screen readers.
  • Integrates with HTML forms, supporting required, minimum and maximum values, unavailable dates, custom validation functions, realtime validation, and server-side validation errors

API

DatePicker Props

AttributeTypeDescriptionDefault
labelReactNodeThe content to display as the label.-
valueZonedDateTime | CalendarDate | CalendarDateTime | undefined | nullThe current value of the date-picker (controlled).-
variantflat | bordered | faded | underlinedThe variant of the date input.flat
colordefault | primary | secondary | success | warning | dangerThe color of the date input.default
sizesm | md | lgThe size of the date input.md
radiusnone | sm | md | lg | fullThe radius of the date input.-
defaultValuestring | undefinedThe default value of the date-picker (uncontrolled).-
placeholderValueZonedDateTime | CalendarDate | CalendarDateTime | undefined | nullThe placeholder of the date-picker.-
descriptionReactNodeA description for the date-picker. Provides a hint such as specific requirements for what to choose.-
errorMessageReactNode | (v: ValidationResult) => ReactNodeAn error message for the date input.-
startContentReactNodeElement to be rendered in the left side of the date-picker.-
endContentReactNodeElement to be rendered in the right side of the date-picker.-
labelPlacementinside | outside | outside-leftThe position of the label.inside
isRequiredbooleanWhether user input is required on the date-picker before form submission.false
isReadOnlybooleanWhether the date-picker can be selected but not changed by the user.
isDisabledbooleanWhether the date-picker is disabled.false
isInvalidbooleanWhether the date-picker is invalid.false
visibleMonthsnumber | undefinedThe number of months to display at once. Up to 3 months are supported. Passing a number greater than 1 will disable the showMonthAndYearPickers prop.1
selectorIconReactNodeThe icon to toggle the date picker popover. Usually a calendar icon.
pageBehaviorPageBehavior | undefinedControls the behavior of paging. Pagination either works by advancing the visible page by visibleDuration (default) or one unit of visibleDuration.visible
visibleMonthsnumber | undefinedThe number of months to display at once. Up to 3 months are supported. Passing a number greater than 1 will disable the showMonthAndYearPickers prop.1
calendarWidthnumberThe width to be applied to the calendar component.256
CalendarTopContentReactNodeTop content to be rendered in the calendar component.
validate(value: { inputValue: string, selectedKey: React.Key }) => ValidationError | true | null | undefinedValidate input values when committing (e.g., on blur), and return error messages for invalid values.-
isDateUnavailable((date: DateValue) => boolean) | undefinedCallback that is called for each date of the calendar. If it returns true, then the date is unavailable.
autoFocusbooleanWhether the element should receive focus on render.false
hourCycle12 | 24Whether to display the time in 12 or 24 hour format. This is determined by the user's locale.-
granularityday | hour | minute | secondDetermines the smallest unit that is displayed in the date picker. Typically "day" for dates.-
hideTimeZonebooleanWhether to hide the time zone abbreviation.false
shouldForceLeadingZerosbooleanWhether to always show leading zeros in the month, day, and hour fields.true
CalendarBottomContentReactNodeBottom content to be rendered in the calendar component.
showMonthAndYearPickersboolean | undefinedWhether the calendar should show month and year pickers.false
popoverPropsPopoverProps | undefinedProps to be passed to the popover component.{ placement: "bottom", triggerScaleOnOpen: false, offset: 13 }
selectorButtonPropsButtonProps | undefinedProps to be passed to the selector button component.{ size: "sm", variant: "light", radius: "full", isIconOnly: true }
calendarPropsCalendarProps | undefinedProps to be passed to the selector button component.{ size: "sm", variant: "light", radius: "full", isIconOnly: true }
timeInputPropsTimeInputPropsProps to be passed to the time input component.{ size: "sm", variant: "light", radius: "full", isIconOnly: true }
disableAnimationbooleanWhether to disable all animations in the date picker. Including the DateInput, Button, Calendar, and Popover.false
classNamesRecord<"base" | "selectorButton" | "selectorIcon" | "popoverContent" | "calendar" | "calendarContent" | "timeInputLabel" | "timeInput", string>Allows to set custom class names for the date-picker slots.-

DatePicker Events

AttributeTypeDescription
onChange((value: ZonedDateTime | CalendarDate | CalendarDateTime) => void) | undefinedHandler that is called when the date-picker's value changes.-
onFocus(e: FocusEvent<HTMLInputElement>) => voidHandler that is called when the element receives focus.-
onBlur(e: FocusEvent<HTMLInputElement>) => voidHandler that is called when the element loses focus.-
onFocusChange(isFocused: boolean) => voidHandler that is called when the element's focus status changes.-
onKeyDown(e: KeyboardEvent) => voidHandler that is called when a key is pressed.-
onKeyUp(e: KeyboardEvent) => voidHandler that is called when a key is released.-