Date picker
EuiDatePicker is the foundational component that all other EUI date and time controls are built upon. It itself depends upon moment for all of its formatting, and a forked and modified version of react-datepicker for accessibility.
At minimum, the EuiDatePicker requires the
selected
and onChange
props to be passed.Date picker states
Examples of how the input can appear within a form. This should match our other form styles.
Time selection
Two props control time selection. showTimeSelect
will make time selection appear next to the calendar and showTimeSelectOnly
will exclude the calendar and make the time selection the only thing you see. Make sure to adjust your dateFormat
and timeFormat
values to match.
Locale
Locale formatting is achieved by using the locale
,timeFormat
, and dateFormat
props. The latter will take any moment()
notation. Check Date format by country for formatting examples.
Moment will try to load the locale on demand when it is used. Bundlers that do not support dynamic require statements will need to explicitly import the locale, e.g. import 'moment/locale/zh-cn'
. See the below demo JS for examples.
Only allow specific dates and times
Use the minDate
,maxDate
,minTime
, and maxTime
props to specify specific ranges the selected
code must must fall into. You can also use the excludeDates
andexcludeTimes
property to disallow a specific array of items from selection.
Open to a specific date
Use openToDate
to default selection to a specific date.
Custom input
Use customInput
to pass a custom input to trigger your calendar.
UTC offsets
Use utcOffset
to apply an offset to the datetime.
Inline display
Use the inline
prop to display the date picker directly in the page instead of inside a popover. If you do not need the default inline shadow effect, apply the shadow={false}
prop.
Custom classes
Custom classes can be passed to various bits of the calendar and input.
className
will pass onto the input.calendarClassName
will pass onto the calendar itself.dayClassName
will pass onto specified days.popperClassName
will pass onto the popover.
Props
EuiDatePicker
Prop | Description and type | Default value |
---|---|---|
Prop className# | Description and type Added to the actual input of the calendar string | Default value |
Prop aria-label# | Description and type Type: string | Default value |
Prop data-test-subj# | Description and type Type: string | Default value |
Prop css# | Description and type Type: Interpolation<Theme> | Default value |
Prop dayClassName# | Description and type Applies classes to the numbered days provided. Check docs for example. (date: Moment) => string | Default value |
Prop fullWidth# | Description and type Renders the input as full width boolean | Default value false |
Prop compressed# | Description and type Renders the input with compressed height and sizing boolean | Default value |
Prop inputRef# | Description and type ref for the ReactDatePicker instance Ref<Component<ReactDatePickerProps, any, any>> | Default value |
Prop isInvalid# | Description and type Provides styling to the input when invalid boolean | Default value |
Prop isLoading# | Description and type Provides styling to the input when loading boolean | Default value |
Prop onClear# | Description and type What to do when the input is cleared by the x icon MouseEventHandler<HTMLButtonElement> | Default value |
Prop openToDate# | Description and type Opens to this date (in moment format) on first press, regardless of selection Moment | Default value |
Prop placeholder# | Description and type Shows only when no date is selected string | Default value |