Principles Foundation Accessibility Design System Guidelines Deutsch Français Italiano English Our design principles User-centred Recognisable Inclusive Reduced Holistic Self-explanatory Task-oriented Appropriate SBB Brand portal Logo Digital clock Rights of use Base colors Additional colors Off brand colors Icons Timetable icons Pictograms About accessibility Über diesen Guide Contact Further information Product Owner User Research Interaction Design Visual Design Development Content Design Testing What is a design system? Designing Coding FAQ Help Process Contribution Contact Overview Base Components Overview Releases Design Tokens Components Overview Base Informations Overview Base Components Overview App Icons Power-Apps Digital banner ads SAP Design Guidelines AI Design: Basics Datepicker Info

What does the component do?

A date picker is an input component that allows users to select a date from a calendar view.

When should the component be used?

  • To make it easier for users to select a specific date.
  • To ensure accuracy and consistency of date entry.
  • To provide a user-friendly alternative to manual date entry.

Rules

  • If possible, the date picker should display a default value, e.g. today's date.
  • The date picker can be displayed with or without back and forward buttons.
  • The date picker should be localised and respect the user's date format.
  • Error messages (e.g. invalid date) should be displayed with a clear and understandable error message.
Datepicker-Next-Day Datepicker-Previous-Day Datepicker-Toggle Form-Field
Anatomy

Anatomy of the component


Number Type Description Optional Info
1 Component sbb-form-field No
1a Standard-HTML input No
1b Standard-HTML label No
1c Component sbb-datepicker-previous-day Yes
1d Component sbb-datepicker-toggle Yes
1e Component sbb-datepicker-next-day Yes
2 Component sbb-datepicker No
Demo

Playground

Wide No Yes Sizes S M L Mode (System Setting) Light Dark Background White Midnight Milk Charcoal Cloud Iron Midnight White Charcoal Milk Iron Cloud
In Form Field
In Form Field Disabled
In Form Field Readonly
In Form Field Negative
In Form Field Disabled Negative
In Form Field Readonly Negative
In Form Field Wide
In Form Field With Min And Max
In Form Field With Date Filter
In Form Field Small
In Form Field Large
In Form Field Optional
In Form Field Borderless
Without Form Field
Copy HTML to clipboard.
Implementation

The <sbb-datepicker> is a component which can be used together with
an <sbb-date-input> element to attach a dropdown to select a date
from a calendar.

It's also possible to display a two-months view using the wide property.

The component and the <sbb-date-input> can be connected using the
input property, which accepts the id of the native input, or directly
its reference.

<sbb-date-input id="datepicker-input"></sbb-date-input>
<sbb-datepicker-toggle input="datepicker-input" datepicker="datepicker"></sbb-datepicker-toggle>
<sbb-datepicker input="datepicker-input" id="datepicker"></sbb-datepicker>

It is however recommend to use it in an <sbb-form-field>, which will
automatically take care of connecting the corresponding components.

In sbb-form-field

If the <sbb-datepicker> is used within a sbb-form-field
with an <sbb-date-input>, they are automatically linked. This also
applies to the <sbb-datepicker-previous-day> and
<sbb-datepicker-next-day> components.

<sbb-form-field>
  <sbb-date-input></sbb-date-input>
  <sbb-datepicker></sbb-datepicker>
</sbb-form-field>
<!-- Component's usage with all the related components. -->
<sbb-form-field>
  <sbb-datepicker-previous-day></sbb-datepicker-previous-day>
  <sbb-date-input value="2023-01-01" min="2000-01-01" max="2050-12-31"></sbb-date-input>
  <sbb-datepicker-toggle></sbb-datepicker-toggle>
  <sbb-datepicker-next-day></sbb-datepicker-next-day>
  <sbb-datepicker></sbb-datepicker>
</sbb-form-field>

Custom current date

For testing purposes you might want to set a fixed date as today.
This can be achieved by using the underlying date adapter that
the date components use.
By default, the defaultDateAdapter is used in the background.
You can e.g. stub the today() method and return your fixed date.

import { defaultDateAdapter } from '@sbb-esta/lyne-elements/datetime.js';
import { stub, type SinonStub } from 'sinon';

// Have defaultDateAdapter.today() return 2022-05-01
todayStub = stub(defaultDateAdapter, 'today').returns(new Date(2022, 4, 1, 0, 0, 0, 0));
// Restore the original method
todayStub.restore();

Properties

Name Attribute Privacy Type Default Description
input input public SbbDateInputElement<T> | null null Reference to the sbb-date-input instance or the native input connected to the datepicker. For attribute usage, provide an id reference.
isOpen - public boolean Whether the element is open.
trigger trigger public HTMLElement | null null The element that will trigger the popover overlay. For attribute usage, provide an id reference.
view view public CalendarView 'day' The initial view of calendar which should be displayed on opening.
wide wide public boolean false If set to true, two months are displayed.

Methods

Name Privacy Description Parameters Return Inherited From
close public Closes the popover. target: HTMLElement void SbbOpenCloseBaseElement
escapeStrategy public The method which is called on escape key press. Defaults to calling close() void SbbOpenCloseBaseElement
open public Opens the popover on trigger click. void SbbOpenCloseBaseElement

Events

Name Type Description Inherited From
beforeclose CustomEvent<{ closeTarget: HTMLElement | null }> Emits whenever the component begins the closing transition. Can be canceled. SbbOpenCloseBaseElement
beforeopen Event Emits whenever the component starts the opening transition. Can be canceled. SbbOpenCloseBaseElement
close CustomEvent<{ closeTarget: HTMLElement | null }> Emits whenever the component is closed. SbbOpenCloseBaseElement
dateselected CustomEvent<T> Event emitted on date selection.
open Event Emits whenever the component is opened. SbbOpenCloseBaseElement