Datepickers
Datepickers
- HTML/CSS:Dev Ready
- Layout:Desktop Only
A datepicker is a text input to capture a date. You can select a single date, date range or date and time.
Base
Preview
About Datepickers
Implementation Notes and Requirements
The datepicker has the following markup requirements:
Desktop
- Add
.slds-is-opento the element with.slds-dropdown-triggerto invoke the dropdown that contains the datepicker. - The
.slds-is-selectedmodifier class is required on thetdelement that has the selected day. - The
.slds-is-todaymodifier class is required on thetdelement that is the current day. - The
.slds-has-multi-selectionmodifier class is required on thetrelement that contains multiple days selected in the same week. - The
.slds-has-multi-row-selectionmodifier class is required on anytrelement that contains multiple days selected in the multiple weeks. - The
.slds-is-selected-multimodifier class is required on thetdelement that contains a selected day within a range.
Mobile
- When on mobile, we want to leverage the native date picker by changing the
inputtype fromtexttodate - The
input type="date"will create an input field allowing a date and time to be easily entered — this includes year, month, day. - When switching
input type="text"toinput type="date"for mobile, we need to remove the ARIA attributes. The native rendering doesn't require these.- On the element with the class
slds-combobox, please removerole="combobox",aria-expanded, andaria-haspopup. - On the
inputthat we just addedtype="date"to, please removearia-controls,aria-autocomplete, androle="textbox".
- On the element with the class
Accessibility
Expected Markup
Dialog
- Should act as a focus trap so the user only cycles through the datepicker
dialogwhen the datepicker is open
Grid
- Table must be labelled with
role="grid"and be appropriately labelled witharia-labelledby - Use
aria-multiselectable="true"to allow for selection of multiple days - Should act as a single focus stop
Gridcell
- All dates should have
role="gridcell"andaria-selected="false"on thegridcellby default - If a date is selected,
aria-selectedshould be set totrueon the correspondinggridcell aria-currentis used to indicate which day is today and should be set toaria-current="date"
Opening the Datepicker
- Mouse user: open the datepicker when a mouse user clicks on the input
- Keyboard user: only open the datepicker when a keyboard user presses
enterorspaceon the datepicker button- Do not open the datepicker when user focus is on the input
Expected Keyboard Interactions
- When the datepicker opens, place user focus on either the currently selected date in the grid or if no date is selected the current day
leftandrightarrow keys to navigate rowupanddownarrow keys to navigate between weeks on the same dayhomeandendkeys to jump to beginning or end of current rowpagedownandpageupto naviate between monthsalt + pagedownandalt + pageupto navigate between yearsenterto select date and close datepickerescto close datepicker without choosing a date
Overview of CSS Classes
- Selector
- The CSS class being referred to.
- Summary
- A description of what the class does.
- Support
- Whether the class name is dev-ready (meaning it's fully vetted and tested and safe to use) or prototype (which means it's not fully vetted yet).
- Restrict
- The selector that the class name is allowed to be used on.
- Variant
- The base level pattern for a component. A variant can be extended to create another variant of that component, for example, a stateful button is a derivative of the base button.
- Modifier
- A single class that can be added to an HTML element of a component to modify its output. Typically these will be colors, sizing and positioning.
| Selector | .slds-datepicker |
|---|---|
| Summary | Initiates a datepicker component |
| Support | dev-ready |
| Restrict | div |
| Variant | True |
| Selector | .slds-day |
|---|---|
| Summary | Style for calendar days |
| Restrict | .slds-datepicker td span |
| Selector | .slds-is-today |
|---|---|
| Summary | Indicates today |
| Restrict | .slds-datepicker td |
| Selector | .slds-is-selected |
|---|---|
| Summary | Indicates selected days |
| Restrict | .slds-datepicker td |
| Selector | .slds-datepicker__filter |
|---|---|
| Summary | Aligns filter items horizontally |
| Restrict | .slds-datepicker div |
| Selector | .slds-datepicker__month_filter |
|---|---|
| Summary | Spaces out month filter |
| Restrict | .slds-datepicker div |
| Selector | .slds-datepicker__month |
|---|---|
| Summary | Container of the month table |
| Restrict | .slds-datepicker table |
| Selector | .slds-disabled-text |
|---|---|
| Summary | Indicates days that are in previous/next months |
| Restrict | .slds-datepicker td |
| Selector | .slds-has-multi-selection |
|---|---|
| Summary | Class on row to notify that more than one date will be selected within the week |
| Support | dev-ready |
| Restrict | .slds-datepicker tr |
| Variant | True |
| Selector | .slds-has-multi-row-selection |
|---|---|
| Summary | Class on row to notify that more than one date will be selected with multiple weeks |
| Restrict | .slds-datepicker tr |
| Selector | .slds-is-selected-multi |
|---|---|
| Summary | Indicates if the selected days are apart of a date range |
| Restrict | .slds-datepicker td |