Zur Navigation Zum Inhalt Kontakt Menu Trova un componente Descrizione generale Lyne Principi Base Accessibilité Sistema di design Guidelines Deutsch Français Italiano English I nostri principi di design Soluzioni focalizzate sull’utente Riconoscibilità Inclusione Riduzione Olistico Autoesplicativo Orientamento all’attività Adeguatezza Portale della marca FFS Logo Orologio digitale Diritti di utilizzazione Colori die base Colori funzionali Colori Off Brand Icone Icone dell'orario Pittogrammi Informazioni sull’accessibilità Über diesen Guide Contatti Letture consigliate Product Owner User Research Interaction Design Visual Design Development Content Design Testing What is a design system? Designing Coding FAQ Aiuto Processo Contribution Contatto Introduzione Base Componenti Introduzione Base Componenti Introduzione Base Componenti Introduzione Design Tokens Componenti Introduzione Base Informazioni Senso & scopo Community Assets Istruzioni Power-Apps Banner pubblicitari digitali SAP Icone delle app
Trova un componente

Lyne

Basics Animation

Animation

Border

Border

Grid

Grid

Spacings

Spacings

Typografie

Typografie

Components Action-Group

Action-Group

Alert

Alert

Alert-Group

Alert-Group

Autocomplete

Autocomplete

Button

Button

Calendar

Calendar

Card

Card

Card-Badge

Card-Badge

Checkbox

Checkbox

Checkbox-Group

Checkbox-Group

Chip

Chip

Clock

Clock

Datepicker

Datepicker

Dialog

Dialog

Divider

Divider

Footer

Footer

Form-Error

Form-Error

Form-Field

Form-Field

Header

Header

Header-Action

Header-Action

Icon

Icon

Image

Image

Journey-Header

Journey-Header

Link

Link

Link-List

Link-List

Logo

Logo

Menu

Menu

Menu-Action

Menu-Action

Radio-Button

Radio-Button

Radio-Button-Group

Radio-Button-Group

Selection-Panel

Selection-Panel

Signet

Signet

Slider

Slider

Tab-Group

Tab-Group

Tab Title

Tab Title

Tag

Tag

Tag-Group

Tag-Group

Teaser

Teaser

Teaser-Hero

Teaser-Hero

Time-Input

Time-Input

Title

Title

Toggle

Toggle

Toggle-Check

Toggle-Check

Tooltip

Tooltip

Tooltip-Trigger

Tooltip-Trigger

Questa pagina non è disponibile nella lingua desiderata. Lingue disponibili: Deutsch English

Form-Field Implementation

The sbb-form-field component is intended to be used as a form input wrapper with label and errors.

<sbb-form-field label="Example">
<input />
</sbb-form-field>

<sbb-form-field>
<label>Example</label>
<input required />
<sbb-form-error>This field is required!</sbb-form-error>
</sbb-form-field>

In this document, "form field" refers to the wrapper component sbb-form-field and
"form field control" refers to the component that the sbb-form-field is wrapping
(e.g., the input, select, etc.)

The following components are designed to work inside a sbb-form-field:

Slots

Label

Either use a <label> or the label attribute to provide a label for a form input. The
sbb-form-field will automatically assign the correct id reference between label and input.

It's possible to use the floatingLabel property to display the label inside the input.
When using it and setting the value programmatically to empty or from empty to a specific value,
it's mandatory to call the reset() method of the sbb-form-field to update the state of the floating label.

<sbb-form-field label="Example" floating-label>
<input required />
<sbb-form-error>This field is required!</sbb-form-error>
</sbb-form-field>

Error messages

Error messages can be shown under the form field by adding sbb-form-error elements inside the form field.
The component will automatically assign them to the slot='error'.

<sbb-form-field label="Example">
<input />
</sbb-form-field>

In order to avoid the layout from "jumping" when an error is shown, the option of setting error-space="reserve"
on the sbb-form-field will reserve space for a single line of an error message.

Prefix & Suffix

It is possible to add content as a prefix or suffix in a sbb-form-field.
This can be done via the prefix and suffix slots.

Some components, like the sbb-form-field-clear or the
sbb-slider, when used within the form field, will automatically occupy
one or both of these slots.
Please refer to their documentation for more details.

<sbb-form-field label="Example">
<sbb-icon slot="prefix" name="pie-small"></sbb-icon>
<input />
<sbb-icon slot="suffix" name="circle-information-small"></sbb-icon>
</sbb-form-field>

Style

By default, the component has a defined width and min-width. However, this behavior can be overridden by setting
the width property to collapse: in this way the component adapts its width to the inner slotted input component.
This is useful, for example, for the sbb-time-input component.
However, as the width-styles are exposed to the host,
it's possible to apply any desired width by setting just the width and min-width CSS properties.

<sbb-form-field width="collapse">
<input value="13:30" />
<sbb-time-input></sbb-time-input>
</sbb-form-field>

Accessibility

By itself, the sbb-form-field does not apply any additional accessibility treatment to a form
element. However, several of the form field's optional features interact with the form element
contained within the form field.

When you provide a label via <label> or the label attribute, the sbb-form-field automatically
associates this label with the field's form element via a native <label> element, using the for
attribute to reference the control's ID.
When using a non-native form element (e.g. sbb-select), the aria-labelledby is used to connect the
form element with the label, by setting an id on the label and referencing this id in the
aria-labelledby attribute placed on the form element.
Please note that only one <label> element is supported. Additionally, if you place the <label>
element outside the sbb-form-field, the automatic assignment is skipped, and it is up to the
consumer to use the correct id references.

When you provide informational text via sbb-form-error, it automatically adds these elements' IDs
to the form element's aria-describedby attribute.
Additionally, sbb-form-error is slotted to an element having aria-live="polite" so that assistive
technology will announce errors when they appear.

Properties

Name Attribute Privacy Type Default Description
errorSpace error-space public 'none' | 'reserve' | undefined 'none' Whether to reserve space for an error message. none does not reserve any space. reserve does reserve one row for an error message.
label label public string Label text for the input which is internally rendered as <label>.
optional optional public boolean | undefined Indicates whether the input is optional.
size size public 'l' | 'm' | undefined 'm' Size variant, either l or m.
borderless borderless public boolean false Whether to display the form field without a border.
width width public 'default' | 'collapse' 'default' Defines the width of the component: - default: the component has defined width and min-width; - collapse: the component adapts itself to its inner input content.
floatingLabel floating-label public boolean false Whether the label should float. If activated, the placeholder of the input is hidden.
negative negative public boolean false Negative coloring variant flag.
inputElement - public HTMLInputElement | HTMLSelectElement | HTMLElement Returns the input element.

Methods

Name Privacy Description Parameters Return Inherited From
reset public Manually reset the form field. Currently, this only resets the floating label. void
clear public Manually clears the input value. It only works for inputs, selects are not supported. void
getInputElement public Returns the input element. HTMLInputElement | HTMLSelectElement | HTMLElement

Slots

Name Description
Use this slot to render an input/select or a supported non-native element.
label Use this slot to render a label.
prefix Use this slot to render an icon on the left side of the input.
suffix Use this slot to render an icon on the right side of the input.
error Use this slot to render an error.
Demo
This is a required field.
Prefix Nein Ja Suffix Nein Ja Hängende Labels Nein Ja Ohne Rahmen Nein Ja Grössen M L Optional Ja Nein Error Nein Ja Hintergrund White Milk Iron Charcoal Black Mehr Beispiele auf Storybook
Impressum Contatto Impostazioni dei cookie