Datepicker

yarn add @freshworks/datepicker

Description

The date and time picker can be used for both picking date and time as well as selecting one value or picking a range as per the context of usage.

Scenario

For each usage varying from selecting one date to selecting a range, the date and time picker must be such designed. Best practices are providing easily accessible buttons for most used components, such as today, yesterday.

Usage

1. Calendar with date only

May, 2025
S
M
T
W
T
F
S
{{nucleus-datepicker onUpdate=(action "onUpdate")}}

2. Calendar with input field

{{nucleus-datepicker-input onUpdate=(action "onUpdate")}}

3. Calendar range selection

May, 2025
June, 2025
S
M
T
W
T
F
S
S
M
T
W
T
F
S
{{nucleus-datepicker-range onUpdate=(action "onUpdate")}}

4. Calendar with input field- range selection

{{nucleus-datepicker-range-input onUpdate=(action "onUpdate")}}

5. Internationalization

maio, 2025
s
t
q
q
s
s
d
{{nucleus-datepicker locale="pt" onUpdate=(action "onUpdate")}}

Guidelines

Do's

  1. Provide clear visual hue for hover states over the dates.

🚫Dont's

  1. If the date to be selected is far away in time, providing a date and time picker is a bad practice. Then get input from textbox.

Accessibility

Date Grid

role=grid

Identifies the table element as a grid widget.

aria-label=IDREF

Defines the accessible name for the grid using the h2 that shows the month and year of the dates displayed in the grid.

tabindex="0"

Makes the button focusable and includes it in the dialog Tab sequence.

tabindex="-1"

Makes the button focusable and excludes it from the dialog Tab sequence.

aria-selected="true"

Identifies the button for the currently selected date, i.e., the date value present in the date input.

Previous
Tabs