- Components
- Dates
- Date Field
Date Field
A date field allows users to enter and edit date and time values using a keyboard.
Installation
Install the following dependencies:
Copy and paste the following code into your project.
Update the import paths to match your project setup.
Usage
Use a DateField to allow users to enter and edit time values using a keyboard.
Options
Label
A visual label can be provided for the DateField using the label prop or a hidden label using aria-label prop.
Sizes
Use the size prop to control the size of the DateField.
The default variant is "md".
Prefix and suffix
To add additional context for the DateField, such as an icon, use the prefix and suffix props.
Description
A description can be supplied to DateField via the description prop. The description is always visible unless the isInvalid prop is true and an error message is provided.
Contextual help
A ContextualHelp element may be placed next to the label to provide additional information or help about a DateField.
Error message
An errorMessage can be supplied to DateField, which will be displayed when the isInvalid prop is set to true.
Time zones
DateField is time zone aware when a ZonedDateTime object is provided as the value.
Granularity
The granularity prop allows you to control the smallest unit that is displayed by DateField.
Placeholder value
Use the placeholderValue prop to control the default values of each segment. The default value is midnight.
Hide time zone
Use the hideTimeZone prop to hide the time zone abbreviation.
Hour cycle
Use the hourCycle prop to control the hour cycle of the DateField.
Loading
Use the isLoading prop to control the loading state of the DateField. Use the loaderPosition prop to control the position of the loader.
Disabled
Use the isDisabled prop to disable the DateField.
ReadOnly
The isReadOnly boolean prop makes the DateField's text content immutable. Unlike isDisabled, the DateField remains focusable and the contents can still be copied.
Required
Use the isRequired prop to mark the DateField as required. Use the necessityIndicator prop to control the visual style of the required state.
Uncontrolled
An initial, uncontrolled value can be provided to the DateField using the defaultValue prop.
Controlled
Use the value and onChange props to control the value of the input.
Composition
If you need to customize things further, you can drop down to the composition level.
API Reference
Prop | Type | Default | Description |
---|---|---|---|
minValue | DateValue | - | The minimum allowed date that a user may select. |
maxValue | DateValue | - | The maximum allowed date that a user may select. |
isDateUnavailable | (date: DateValue) => boolean | - | Callback that is called for each date of the calendar. If it returns true, then the date is unavailable. |
placeholderValue | DateValue | - | A placeholder date that influences the format of the placeholder shown when no value is selected. Defaults to 12:00 AM or 00:00 depending on the hour cycle. |
hourCycle | 12 | 24 | - | Whether to display the time in 12 or 24 hour format. By default, this is determined by the user's locale. |
granularity | 'hour' | 'minute' | 'second' | - | Determines the smallest unit that is displayed in the date picker. By default, this is "day" for dates, and "minute" for times. |
hideTimeZone | boolean | false | Whether to hide the time zone abbreviation. |
shouldForceLeadingZeros | boolean | - | Whether to always show leading zeros in the hour field. By default, this is determined by the user's locale. |
isDisabled | boolean | - | Whether the input is disabled. |
isReadOnly | boolean | - | Whether the input can be selected but not changed by the user. |
isRequired | boolean | - | Whether user input is required on the input before form submission. |
isInvalid | boolean | - | Whether the input value is invalid. |
validate | (value: MappedDateValue<DateValue>) => ValidationError | true | null | undefined | - | A function that returns an error message if a given value is invalid. Validation errors are displayed to the user when the form is submitted if validationBehavior="native". For realtime validation, use the isInvalid prop instead. |
autoFocus | boolean | - | Whether the element should receive focus on render. |
isOpen | boolean | - | Whether the input value is invalid. |
defaultOpen | boolean | - | Whether the input value is invalid. |
value | DateValue | null | - | The current value (controlled). |
defaultValue | DateValue | null | - | The default value (uncontrolled). |
name | string | - | The name of the input element, used when submitting an HTML form. |
validationBehavior | 'native' | 'aria' | 'aria' | Whether to use native HTML form validation to prevent form submission when the value is missing or invalid, or mark the field as required or invalid via ARIA. |
children | ReactNode | (values: DateFieldRenderProps & {defaultChildren: ReactNode | undefined}) => ReactNode | - | The children of the component. A function may be provided to alter the children based on component state. |
className | string | - | The CSS className for the element. |
style | CSSProperties | (values: DateFieldRenderProps & {defaultStyle: CSSProperties}) => CSSProperties | - | The inline style for the element. A function may be provided to compute the style based on component state. |
Event | Type | Description |
---|---|---|
onFocus | (e: FocusEvent<Target>) => void | Handler that is called when the element receives focus. |
onBlur | (e: FocusEvent<Target>) => void | Handler that is called when the element loses focus. |
onFocusChange | (isFocused: boolean) => void | Handler that is called when the element's focus status changes. |
onKeyDown | (e: KeyboardEvent) => void | Handler that is called when a key is pressed. |
onKeyUp | (e: KeyboardEvent) => void | Handler that is called when a key is released. |
onOpenChange | (isOpen: boolean) => void | Handler that is called when the overlay's open state changes. |
onChange | (value: MappedDateValue<DateValue>) => void | Handler that is called when the value changes. |
Data attribute | Description |
---|---|
[data-invalid] | Whether the date field is invalid. |
[data-disabled] | Whether the date field is disabled. |
Accessibility
Keyboard interactions
Key | Description |
---|---|
Tab | Places focus on the first segment. If a segment is already in focus, moves focus to the next segment. If last segment in in focus, moves focus to the next element in the page tab sequence. |
ArrowRight ArrowLeft | Moves focus between segments. |
ArrowUp ArrowDown | Increments/decrements the value of the segment. |