Date and time picker

DateTimePicker is similar toDatePicker, but extends the popover to include a section for setting the time. Users can also edit the date by typing in the input field.

Basic usage

tsx
Copied
1
<DateTimePicker label="Choose a date and time" placeholder="Choose a date and time" />

Component API

autoFocus
optional
boolean

Whether to automatically focus on the picker input.

clearable
optional
Default
false
boolean

Allow the date value to be cleared.

defaultDisabled
optional
boolean

The picker's disabled state on initial render.

defaultValue
optional
Date

The picker value on initial render.

description
optional
React.ReactNode

Description displayed below the picker.

disabled
optional
boolean

Disables the picker. Prefer to use defaultDisabled and component state.

error
optional
React.ReactNode

Error text displayed below the picker.

excludeDate
optional
(date: Date) => boolean

Callback function to determine if day should be disabled.

grow
optional
boolean

If true, the element will grow to fill available space.

This prop works only if the element is a direct child of a Stack.

height
optional
Default
auto
SizingToken | "{number}px"
Defines the height of the component. See SizingToken docs for more details.
id
optional
string

The ID referenced by the global component state.

initiallyOpened
optional
Default
false
boolean

Whether the calendar dropdown should be open initially.

label
optional
React.ReactNode

Label displayed above the picker.

onChange
optional
(value: Date | null) => void

Called when the date changes. Prefer to use component state to get the value.

onDropdownClose
optional
() => void

Callback function that is called when the picker dropdown closes.

placeholder
optional
string

Hint text displayed when the picker is empty.

radius
optional
"xs" | "sm" | "md" | "lg" | "xl"

Input border radius.

required
optional
Default
false
boolean

Adds red asterisk on the right side of label and sets required on input element

size
optional
Default
sm
"xs" | "sm" | "md" | "lg" | "xl"

Picker size.

validate
optional
((value: Date | null) => string | undefined) | Array<(value: Date | null) => string | undefined>

A single function or an array of functions that validate the input value.

value
optional
Date

Selected date if using this component as a controlled component. Prefer to use the component state to get the value.

variant
optional
"unstyled" | "default"

Picker appearance.

width
optional
Default
auto
SizingToken | "{number}px"
Defines the width of the component. See SizingToken docs for more details.

State API

disabled
optional
boolean

Whether the picker is disabled

setDisabled
optional
(disabled?: boolean) => void

Sets the disabled value of the picker. If the disabled value is not provided, the picker will be disabled

setValue
optional
(value: Date | null) => void

Sets the value of the picker

value
optional
Date | null

The selected Date