Back to Ant Design

DatePicker

components/date-picker/index.en-US.md

6.3.719.7 KB
Original Source

When To Use

By clicking the input box, you can select a date from a popup calendar.

Examples

<!-- prettier-ignore -->

<code src="./demo/basic.tsx">Basic</code> <code src="./demo/range-picker.tsx">Range Picker</code> <code src="./demo/multiple.tsx" version="5.14.0">Multiple</code> <code src="./demo/multiple-debug.tsx" debug>Multiple Debug</code> <code src="./demo/needConfirm.tsx" version="5.14.0">Need Confirm</code> <code src="./demo/switchable.tsx">Switchable picker</code> <code src="./demo/format.tsx">Date Format</code> <code src="./demo/time.tsx">Choose Time</code> <code src="./demo/mask.tsx" version="5.14.0">Mask Format</code> <code src="./demo/date-range.tsx" version="5.14.0">Limit Date Range</code> <code src="./demo/disabled.tsx">Disabled</code> <code src="./demo/disabled-date.tsx">Disabled Date & Time</code> <code src="./demo/allow-empty.tsx">Allow Empty</code> <code src="./demo/select-in-range.tsx">Select range dates</code> <code src="./demo/preset-ranges.tsx">Preset Ranges</code> <code src="./demo/extra-footer.tsx">Extra Footer</code> <code src="./demo/size.tsx">Three Sizes</code> <code src="./demo/cell-render.tsx">Customized Cell Rendering</code> <code src="./demo/components.tsx" version="5.14.0">Customize Panel</code> <code src="./demo/external-panel.tsx">External use panel</code> <code src="./demo/buddhist-era.tsx" version="5.14.0">Buddhist Era</code> <code src="./demo/status.tsx">Status</code> <code src="./demo/variant.tsx" version="5.13.0">Variants</code> <code src="./demo/style-class.tsx" version="6.0.0">Custom semantic dom styling</code> <code src="./demo/filled-debug.tsx" debug>Filled Debug</code> <code src="./demo/placement.tsx">Placement</code> <code src="./demo/mode.tsx" debug>Controlled Panels</code> <code src="./demo/start-end.tsx" debug>Customized Range Picker</code> <code src="./demo/suffix.tsx">Prefix and Suffix</code> <code src="./demo/render-panel.tsx" debug>_InternalPanelDoNotUseOrYouWillBeFired</code> <code src="./demo/component-token.tsx" debug>Component Token</code> <code src="./demo/suffixIcon-debug.tsx" debug>suffixIcon</code>

API

Common props ref:Common props

There are five kinds of picker:

  • DatePicker
  • DatePicker[picker="month"]
  • DatePicker[picker="week"]
  • DatePicker[picker="year"]
  • DatePicker[picker="quarter"] (Added in 4.1.0)
  • RangePicker

Localization

The default locale is en-US, if you need to use other languages, recommend to use internationalized components provided by us at the entrance. Look at: ConfigProvider.

If there are special needs (only modifying single component language), Please use the property: locale. Example: default.

jsx
// The default locale is en-US, if you want to use other locale, just set locale in entry file globally.
// Make sure you import the relevant dayjs file as well, otherwise the locale won't change for all texts (e.g. range picker months)
import locale from 'antd/locale/zh_CN';
import dayjs from 'dayjs';

import 'dayjs/locale/zh-cn';

dayjs.locale('zh-cn');

<ConfigProvider locale={locale}>
  <DatePicker defaultValue={dayjs('2015-01-01', 'YYYY-MM-DD')} />
</ConfigProvider>;
<!-- prettier-ignore -->

:::warning When use with Next.js App Router, make sure to add 'use client' before import locale file of dayjs. It's because all components of Ant Design only works in client, importing locale in RSC will not work. :::

Common API

The following APIs are shared by DatePicker, RangePicker.

PropertyDescriptionTypeDefaultVersion
allowClearCustomize clear buttonboolean | { clearIcon?: ReactNode }true5.8.0: Support object type
borderedWhether has border style, please use variant insteadbooleantrue-
classNameThe picker classNamestring-
classNamesCustomize class for each semantic structure inside the component. Supports object or function.Record<SemanticDOM, string> | (info: { props })=> Record<SemanticDOM, string>-
dateRenderCustom rendering function for date cells, >= 5.4.0 use cellRender instead.function(currentDate: dayjs, today: dayjs) => React.ReactNode-< 5.4.0
cellRenderCustom rendering function for picker cells(current: dayjs, info: { originNode: React.ReactElement,today: DateType, range?: 'start' | 'end', type: PanelMode, locale?: Locale, subType?: 'hour' | 'minute' | 'second' | 'meridiem' }) => React.ReactNode-5.4.0
componentsCustom panelsRecord<Panel | 'input', React.ComponentType>-5.14.0
defaultOpenInitial open state of pickerboolean-
disabledDetermine whether the DatePicker is disabledbooleanfalse
disabledDateSpecify the date that cannot be selected(currentDate: dayjs, info: { from?: dayjs, type: Picker }) => boolean-info: 5.14.0
dropdownClassNameThe className of popup calendar, please use classNames.popup.root insteadstring--
formatTo set the date format, support multi-format matching when it is an array, display the first one shall prevail. refer to dayjs#format. for example: Custom FormatformatType@rc-component/picker
orderAuto order date when multiple or range selectionbooleantrue5.14.0
popupClassNameTo customize the className of the popup calendar, use classNames.popup.root insteadstring-4.23.0
preserveInvalidOnBlurDon't clear the input on blur even when the typed value is invalidbooleanfalse5.14.0
getPopupContainerTo set the container of the floating layer, while the default is to create a div element in bodyfunction(trigger)-
inputReadOnlySet the readonly attribute of the input tag (avoids virtual keyboard on touch devices)booleanfalse
localeLocalization configurationobjectdefault
minDateThe minimum date, which also limits the range of panel switchingdayjs-5.14.0
maxDateThe maximum date, which also limits the range of panel switchingdayjs-5.14.0
modeThe picker panel mode( Cannot select year or month anymore? )time | date | month | year | decade-
needConfirmNeed click confirm button to trigger value change. Default false when multipleboolean-5.14.0
nextIconThe custom next iconReactNode-4.17.0
openThe open state of pickerboolean-
panelRenderCustomize panel render(panelNode) => ReactNode-4.5.0
pickerSet picker typedate | week | month | quarter | yeardatequarter: 4.1.0
placeholderThe placeholder of date inputstring | [string,string]-
placementThe position where the selection box pops upbottomLeft bottomRight topLeft topRightbottomLeft
popupStyleTo customize the style of the popup calendar, use styles.popup.root insteadCSSProperties{}
prefixThe custom prefixReactNode-5.22.0
presetsThe preset ranges for quick selection, Since 5.8.0, preset value supports callback function.{ label: React.ReactNode, value: Dayjs | (() => Dayjs) }[]-
prevIconThe custom prev iconReactNode-4.17.0
previewValueWhen the user selects the date hover option, the value of the input field undergoes a temporary changefalse | hoverhover6.0.0
sizeTo determine the size of the input box, the height of large and small, are 40px and 24px respectively, while default size is 32pxlarge | medium | small-
statusSet validation status'error' | 'warning'-4.19.0
styleTo customize the style of the input boxCSSProperties{}
stylesCustomize inline style for each semantic structure inside the component. Supports object or function.Record<SemanticDOM, CSSProperties> | (info: { props })=> Record<SemanticDOM, CSSProperties>-
suffixIconThe custom suffix iconReactNode-
superNextIconThe custom super next iconReactNode-4.17.0
superPrevIconThe custom super prev iconReactNode-4.17.0
variantVariants of pickeroutlined | borderless | filled | underlinedoutlined5.13.0 | underlined: 5.24.0
onOpenChangeCallback function, can be executed whether the popup calendar is popped up or closedfunction(open)-
onPanelChangeCallback when picker panel mode is changedfunction(value, mode)-
onSelectCallback when a date is selected, please use onCalendarChange insteadfunction(value)--

Common Methods

NameDescriptionVersion
blur()Remove focus
focus()Get focus

DatePicker

PropertyDescriptionTypeDefaultVersion
defaultPickerValueDefault panel date, will be reset when panel opendayjs-5.14.0
defaultValueTo set default date, if start time or end time is null or undefined, the date range will be an open intervaldayjs-
disabledTimeTo specify the time that cannot be selectedfunction(date)-
formatTo set the date format. refer to dayjs#formatformatTypeYYYY-MM-DD
multipleEnable multiple selection. Not support showTimebooleanfalse5.14.0
pickerValuePanel date. Used for controlled switching of panel date. Work with onPanelChangedayjs-5.14.0
renderExtraFooterRender extra footer in panel(mode) => React.ReactNode-
showNowShow the fast access of current datetimeboolean-4.4.0
showTimeTo provide an additional time selectionobject | booleanTimePicker Options
showTime.defaultValueUse showTime.defaultOpenValue insteaddayjsdayjs()5.27.3
showTime.defaultOpenValueTo set default time of selected date, demodayjsdayjs()
showWeekShow week info when in DatePickerbooleanfalse5.14.0
valueTo set datedayjs-
onChangeCallback function, can be executed when the selected time is changingfunction(date: dayjs | null, dateString: string | null)-
onOkCallback when click ok buttonfunction()-
onPanelChangeCallback function for panel changingfunction(value, mode)-

DatePicker[picker=year]

PropertyDescriptionTypeDefaultVersion
defaultValueTo set default datedayjs-
formatTo set the date format. refer to dayjs#formatformatTypeYYYY
multipleEnable multiple selectionbooleanfalse5.14.0
renderExtraFooterRender extra footer in panel() => React.ReactNode-
valueTo set datedayjs-
onChangeCallback function, can be executed when the selected time is changingfunction(date: dayjs | null, dateString: string | null)-

DatePicker[picker=quarter]

Added in 4.1.0.

PropertyDescriptionTypeDefaultVersion
defaultValueTo set default datedayjs-
formatTo set the date format. refer to dayjs#formatformatTypeYYYY-\QQ
multipleEnable multiple selectionbooleanfalse5.14.0
renderExtraFooterRender extra footer in panel() => React.ReactNode-
valueTo set datedayjs-
onChangeCallback function, can be executed when the selected time is changingfunction(date: dayjs | null, dateString: string | null)-

DatePicker[picker=month]

PropertyDescriptionTypeDefaultVersion
defaultValueTo set default datedayjs-
formatTo set the date format. refer to dayjs#formatformatTypeYYYY-MM
multipleEnable multiple selectionbooleanfalse5.14.0
renderExtraFooterRender extra footer in panel() => React.ReactNode-
valueTo set datedayjs-
onChangeCallback function, can be executed when the selected time is changingfunction(date: dayjs | null, dateString: string | null)-

DatePicker[picker=week]

PropertyDescriptionTypeDefaultVersion
defaultValueTo set default datedayjs-
formatTo set the date format. refer to dayjs#formatformatTypeYYYY-wo
multipleEnable multiple selectionbooleanfalse5.14.0
renderExtraFooterRender extra footer in panel(mode) => React.ReactNode-
valueTo set datedayjs-
onChangeCallback function, can be executed when the selected time is changingfunction(date: dayjs | null, dateString: string | null)-
showWeekShow week info when in DatePickerbooleantrue5.14.0

RangePicker

PropertyDescriptionTypeDefaultVersion
allowEmptyAllow start or end input leave empty[boolean, boolean][false, false]
cellRenderCustom rendering function for picker cells(current: dayjs, info: { originNode: React.ReactElement,today: DateType, range?: 'start' | 'end', type: PanelMode, locale?: Locale, subType?: 'hour' | 'minute' | 'second' | 'meridiem' }) => React.ReactNode-5.4.0
dateRenderCustom rendering function for date cells, >= 5.4.0 use cellRender instead.function(currentDate: dayjs, today: dayjs) => React.ReactNode-< 5.4.0
defaultPickerValueDefault panel date, will be reset when panel opendayjs-5.14.0
defaultValueTo set default date[dayjs, dayjs]-
disabledIf disable start or end[boolean, boolean]-
disabledTimeTo specify the time that cannot be selectedfunction(date: dayjs, partial: start | end, info: { from?: dayjs })-info.from: 5.17.0
formatTo set the date format. refer to dayjs#formatformatTypeYYYY-MM-DD HH:mm:ss
idConfig input ids{ start?: string, end?: string }-5.14.0
pickerValuePanel date. Used for controlled switching of panel date. Work with onPanelChangedayjs-5.14.0
presetsThe preset ranges for quick selection, Since 5.8.0, preset value supports callback function.{ label: React.ReactNode, value: (Dayjs | (() => Dayjs))[] }[]-
renderExtraFooterRender extra footer in panel() => React.ReactNode-
separatorSet separator between inputsReact.ReactNode<SwapRightOutlined />
showTimeTo provide an additional time selectionobject | booleanTimePicker Options
showTime.defaultValueUse showTime.defaultOpenValue insteaddayjs[][dayjs(), dayjs()]5.27.3
showTime.defaultOpenValueTo set default time of selected date, demodayjs[][dayjs(), dayjs()]
valueTo set date[dayjs, dayjs]-
onCalendarChangeCallback function, can be executed when the start time or the end time of the range is changing. info argument is added in 4.4.0function(dates: [dayjs, dayjs], dateStrings: [string, string], info: { range:start|end })-
onChangeCallback function, can be executed when the selected time is changingfunction(dates: [dayjs, dayjs] | null, dateStrings: [string, string] | null)-
onFocusTrigger when get focusfunction(event, { range: 'start' | 'end' })-range: 5.14.0
onBlurTrigger when lose focusfunction(event, { range: 'start' | 'end' })-range: 5.14.0

formatType

typescript
import type { Dayjs } from 'dayjs';

type Generic = string;
type GenericFn = (value: Dayjs) => string;

export type FormatType =
  | Generic
  | GenericFn
  | Array<Generic | GenericFn>
  | {
      format: string;
      type?: 'mask';
    };

Note: type is added in 5.14.0.

Semantic DOM

<code src="./demo/_semantic.tsx" simplify="true"></code>

Design Token

<ComponentTokenTable component="DatePicker"></ComponentTokenTable>

FAQ

When set mode to DatePicker/RangePicker, cannot select year or month anymore? {#faq-mode-cannot-select}

Please refer FAQ

Why does the date picker switch to the date panel after selecting the year instead of the month panel? {#faq-year-to-date-panel}

After selecting the year, the system directly switches to the date panel instead of month panel. This design is intended to reduce the user's operational burden by allowing them to complete the year modification with just one click, without having to enter the month selection interface again. At the same time, it also avoids additional cognitive burden of remembering the month.

How to use DatePicker with customize date library like dayjs? {#faq-custom-date-library}

Please refer Use custom date library

Why config dayjs.locale globally not work? {#faq-locale-not-work}

DatePicker default set locale as en in v4. You can config DatePicker locale prop or ConfigProvider locale prop instead.

Date-related components locale is not working?

See FAQ Date-related-components-locale-is-not-working?

How to modify start day of week? {#faq-week-start-day}

Please use correct language (#5605), or update dayjs locale config:

js
import dayjs from 'dayjs';

import 'dayjs/locale/zh-cn';

import updateLocale from 'dayjs/plugin/updateLocale';

dayjs.extend(updateLocale);
dayjs.updateLocale('zh-cn', {
  weekStart: 0,
});

Why origin panel don't switch when using panelRender? {#faq-panel-render-switch}

When you change the layout of nodes by panelRender, React will unmount and re-mount it which reset the component state. You should keep the layout stable. Please ref #27263 for more info.

How to understand disabled time and date? {#faq-disabled-date-time}

Please refer to the blog 'Why is it so hard to disable the date?', to learn how to use it.