A popover is a small overlay that displays additional context or interactive content when users click or focus on an element.

| Number | Type | Description | Optional | Info |
|---|---|---|---|---|
| 1 | Slot | Beliebiger Inhalt erlaubt | No | |
| 2 | Component | sbb-secondary-button | No | |
| 3 | Component | sbb-popover-trigger oder beliebiger Inhalt | No | Wenn kein Icon oder anderer Inhalt angegeben wird, wird das Info-Icon angezeigt. |
The <sbb-popover> component can be useful for displaying contextual and additional information on mouse hover or click of a trigger element.
The component could be used:
The component must be connected with the trigger element using the trigger property,
which accepts the id of the element, or directly its reference;
the sbb-menu-button is meant to be used as trigger.
<sbb-mini-button icon-name="circle-information-small" id="popover-trigger"></sbb-mini-button>
<sbb-popover id="popover" trigger="popover-trigger">
<sbb-popover-close-button></sbb-popover-close-button>
<sbb-title level="2" visual-level="6" style="margin-block-start: 0">Popover Title.</sbb-title>
<p id="popover-content">Popover content.</p>
</sbb-popover>
The open and close delays can be configured via global configuration. This values will be used as default, unless explicitly set on the element.
import { mergeConfig } from '@sbb-esta/lyne-elements/core.js';
mergeConfig({
popover: {
openDelay: 0, // ms before the popover opens
closeDelay: 0, // ms before the popover closes
},
});
The <sbb-popover> can be dismissed by clicking on an interactive element within its content,
by clicking on the close button or by performing another action on the page.
You can also indicate that an element within the popover content should close the <sbb-popover> when clicked
by marking it with the sbb-popover-close attribute.
To display a close button, place the <sbb-popover-close-button> inside the popover.
For accessibility reasons, the close button should be the first focusable element in the popover,
so it is recommended to place it at the beginning of the content.
<sbb-mini-button id="popover-trigger"></sbb-mini-button>
<sbb-popover id="popover" trigger="popover-trigger">
<sbb-popover-close-button></sbb-popover-close-button>
<sbb-title level="2" visual-level="6" style="margin-block-start: 0">Popover Title.</sbb-title>
<p id="popover-content">
Popover content. <sbb-link id="popover-link" sbb-popover-close>Link</sbb-link>
</p>
</sbb-popover>
You can also indicate that the <sbb-popover> should be shown on hover with the property hoverTrigger
and set a custom delay for the open and close animations (defaults to 0).
When using hoverTrigger, it is the consumer's responsibility to omit the <sbb-popover-close-button>,
as a close button is not appropriate in hover-triggered popovers.
If hover is not supported by the current device, the component will be triggered on click/tap as default.
The <sbb-popover> will automatically disappear after the hiding delay
if neither the trigger element nor the popover are on hover or if another action is performed on the page.
<sbb-mini-button id="popover-trigger"></sbb-mini-button>
<sbb-popover
id="popover"
trigger="popover-trigger"
hover-trigger
open-delay="500"
close-delay="750"
>
<sbb-title level="2" visual-level="6" style="margin-block-start: 0">Popover Title.</sbb-title>
<p id="popover-content">Popover content. <sbb-link id="popover-link">Link</sbb-link></p>
</sbb-popover>
The <sbb-popover> automatically calculates where it should place itself, based on available space. Default is below and center.
As the popover opens, the focus will automatically be set to the first focusable item within the component.
If the close button is not hidden, it's the first element and therefore gets focused (unless manually specified, see below).
Overlays should always contain a heading level 2 title. It can be visually hidden if necessary.
The first element with the attribute sbb-focus-initial will receive focus on opening.
If the attribute is not used, the first focusable element receives focus (recommended).
<sbb-popover>
<sbb-link href="#">Link</sbb-link>
<sbb-link sbb-focus-initial href="#">Link 2</sbb-link>
</sbb-popover>
SbbPopoverCloseButtonElement, sbb-popover-close-button.| Name | Attribute | Privacy | Type | Default | Description |
|---|---|---|---|---|---|
disabled | disabled | public | boolean | false | Whether the component is disabled. |
disabledInteractive | disabled-interactive | public | boolean | false | Whether the button should be aria-disabled but stay interactive. |
form | form | public | HTMLFormElement | null | The <form> element to associate the button with. | |
iconName | icon-name | public | string | '' | The icon name we want to use, choose from the small icon variants from the ui-icons category from here https://icons.app.sbb.ch. |
loading | loading | public | boolean | false | Whether the button indicates a loading state. The animation kicks in after a delay of 300ms, configurable with --sbb-button-loading-delay CSS variable. |
name | name | public | string | Name of the form element. Will be read from name attribute. | |
negative | negative | public | boolean | false | Negative coloring variant flag. |
size | size | public | 's' | 'm' | 'l' | null | 's' | Size variant, either s (lean theme default), m (standard theme default) or l. |
type | type | public | 'button' | 'reset' | 'submit' | 'button' | The type attribute to use for the button. |
validationMessage | - | public | string | Returns the current error message, if available, which corresponds to the current validation state. Please note that only one message is returned at a time (e.g. if multiple validity states are invalid, only the chronologically first one is returned until it is fixed, at which point the next message might be returned, if it is still applicable). Also, a custom validity message (see below) has precedence over native validation messages. | |
validity | - | public | ValidityState | Returns the ValidityState object for this element. | |
value | value | public | string | '' | Value of the form element. |
willValidate | - | public | boolean | Returns true if this element will be validated when the form is submitted; false otherwise. |
| Name | Privacy | Description | Parameters | Return | Inherited From |
|---|---|---|---|---|---|
checkValidity | public | Returns true if this element has no validity problems; false otherwise. Fires an invalid event at the element in the latter case. | boolean | SbbFormAssociatedMixin | |
reportValidity | public | Returns true if this element has no validity problems; otherwise, returns false, fires an invalid event at the element, and (if the event isn't canceled) reports the problem to the user. | boolean | SbbFormAssociatedMixin | |
setCustomValidity | public | Sets the custom validity message for this element. Use the empty string to indicate that the element does not have a custom validity error. | message: string | void | SbbFormAssociatedMixin |
| Name | Default | Description |
|---|---|---|
--sbb-button-loading-delay | 300ms | The delay before the loading animation starts, when setting the button into loading state. |
| Name | Description |
|---|---|
| Use the unnamed slot to add content to the popover-close-button. Not intended to be used in this context. | |
icon | Slot used to display the icon, if one is set. Not intended to be used in this context. |
SbbPopoverElement, sbb-popover.| Name | Attribute | Privacy | Type | Default | Description |
|---|---|---|---|---|---|
closeDelay | close-delay | public | number | 0 | Close the popover after a given delay in milliseconds. Global configuration is used as default, if not set. |
hoverTrigger | hover-trigger | public | boolean | false | Whether the popover should be triggered on hover. |
isOpen | - | public | boolean | Whether the element is open. | |
openDelay | open-delay | public | number | 0 | Open the popover after a given delay in milliseconds. Global configuration is used as default, if not set. |
trigger | trigger | public | HTMLElement | null | null | The element that will trigger the popover overlay. For attribute usage, provide an id reference. |
| 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 |
| Name | Type | Description | Inherited From |
|---|---|---|---|
beforeclose | SbbPopoverCloseEvent | 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 | SbbPopoverCloseEvent | Emits whenever the component is closed. | SbbOpenCloseBaseElement |
open | Event | Emits whenever the component is opened. | SbbOpenCloseBaseElement |
| Name | Default | Description |
|---|---|---|
--sbb-popover-z-index | var(--sbb-overlay-default-z-index) | To specify a custom stack order, the z-index can be overridden by defining this CSS variable. The default z-index of the component is set to var(--sbb-overlay-default-z-index) with a value of 1000. |
| Name | Description |
|---|---|
Use the unnamed slot to add the sbb-popover-close-button and content into the popover. |