Zur Navigation Zum Inhalt Kontakt Menu Find component Overview Lyne 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 Functional 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 Base Components Overview Base Components Overview Design Tokens Components Overview Base Informationen Sense & Purpose Community Assets Instructions Power-Apps Digital banner ads SAP Design Guidelines App Icons
Find component

Lyne

Basics Animation

Animation

Border

Border

Grid

Grid

Spacings

Spacings

Typography

Typography

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

Tab-Group Implementation

Tab groups are used to organize and gather tabs that the user can navigate through.
Use tabs when you want to provide navigation within blocks of content, instead of showing everything
in one place or requiring the user to navigate between several different views.

Usage

In order to display a tab label within the tab bar, provide an sbb-tab-title right before the related tab content.
The content element should be wrapped in a div, a section or an article and placed right after its relative tab title.
Tab groups can also be nested, this means that a tab's content block can be represented by another sbb-tab-group,
as shown in the "Nested Tab Groups" example.

Each tab has a related content, distinct from other tabs' content.
Tab panels can present different sections of content and include text, images, forms, other tab groups, etc.

<sbb-tab-title>Tab Label</sbb-tab-title>
<div>Tab content...</div>

A tab can be selected, unselected, or disabled. Disable a tab to mark it as unavailable.
Disabled tabs cannot be focused and may be invisible to assistive technologies such as screen readers.

Tab buttons can show an icon on the left side of the label; use the icon-name property of the sbb-tab-title or
provide an sbb-icon component within the sbb-tab-title tag using the slot="icon" to include the icon.
They can also show numbers on the right side of the label by setting the amount on sbb-tab-title tag
or using the amount slot of the sbb-tab-title.

<!-- Icon - remember to use the 'small' version of the icon to make it fit correctly into the tab button -->
<sbb-tab-title icon-name="app-icon-small">
Tab Label
</sbb-tab-title>

<!-- Amount -->
<sbb-tab-title amount="123">
Tab Label
</sbb-tab-title>

<!-- Icon and amount -->
<sbb-tab-title amount="123" icon-name="app-icon-small">
Tab Label
</sbb-tab-title>

Properties

Property Attribute Description Type Default
initialSelectedIndex initial-selected-index Sets the initial tab. If it matches a disabled tab or exceeds the length of the tab group, the first enabled tab will be selected. number 0

Events

Event Description Type
did-change Emits an event on selected tab change CustomEvent<void>

Methods

activateTab(tabIndex: number) => Promise<void>

Activates a tab by index.

Returns

Type: Promise<void>

disableTab(tabIndex: number) => Promise<void>

Disables a tab by index.

Returns

Type: Promise<void>

enableTab(tabIndex: number) => Promise<void>

Enables a tab by index.

Returns

Type: Promise<void>

Slots

Slot Description
"tab-bar" When you provide the sbb-tab-title tag through the unnamed slot, it will be automatically moved to this slot. You do not need to use it directly.
"unnamed" Provide html-content to show as tab content. Wrap the content in a div, a section, an article or provide a nested sbb-tab-group: This is correct: <div>Some text <p>Some other text</p></div> This is not correct: <span>Some text</span><p>Some other text</p>

Demo
Siehe Seite.
Imprint Contact Cookie settings