A dialogue is an overlay that overlays the main content of the page and presents a focused interaction or important information until users have completed the action or closed the dialogue.
Number | Type | Description | Optional | Info |
---|---|---|---|---|
1 | Component | sbb-dialog-title | No | |
1a | Component | sbb-secondary-button | Yes | Back-Button |
1b | Component | sbb-secondary-button | No | |
1c | Component | sbb-secondary-button | Yes | Close-Action |
2 | Component | sbb-title | No | |
2a | Slot | Beliebiger Inhalt erlaubt | No | |
3 | Component | sbb-dialog-actions | Yes | |
3a | Component | sbb-secondary-button | Yes | Auch Block-Links sind erlaubt |
3b | Component | sbb-button | Yes | Auch Block-Links sind erlaubt |
Dialog content
Dialog content
The sbb-dialog
component provides a way to present content on top of the app's content.
It offers the following features:
<sbb-dialog>
<sbb-dialog-title>Title</sbb-dialog-title>
<sbb-dialog-content>Dialog content.</sbb-dialog-content>
</sbb-dialog>
There are three slots: title
, content
and actions
, which can respectively be used to provide an sbb-dialog-title
, sbb-dialog-content
and an sbb-dialog-actions
.
<sbb-dialog>
<sbb-dialog-title>Title</sbb-dialog-title>
<sbb-dialog-content>Dialog content.</sbb-dialog-content>
<sbb-dialog-actions>
<sbb-block-link sbb-dialog-close>Link</sbb-block-link>
<sbb-secondary-button sbb-dialog-close> Cancel </sbb-secondary-button>
<sbb-button sbb-dialog-close> Confirm </sbb-button>
</sbb-dialog-actions>
</sbb-dialog>
In order to show the dialog, you need to call the open(event?: PointerEvent)
method on the sbb-dialog
component.
It is necessary to pass the event object to the open()
method to allow the dialog to detect
whether it has been opened by click or keyboard, so that the focus can be better handled.
<sbb-button
label="Open dialog"
click="openDialog(event, 'my-dialog')"
aria-haspopup="dialog"
aria-controls="my-dialog"
></sbb-button>
<sbb-dialog id="my-dialog">
<sbb-dialog-title>Title</sbb-dialog-title>
<sbb-dialog-content>Dialog content.</sbb-dialog-content>
</sbb-dialog>
<script>
const openDialog = (event, id) => {
const dialog = document.getElementById(id);
dialog.open(event);
};
</script>
To dismiss the dialog, you need to get a reference to the sbb-dialog
element and call
the close(result?: any, target?: HTMLElement)
method, which will close the dialog element and
emit a close event with an optional result as a payload.
The component can also be dismissed by clicking on the close button, clicking on the backdrop, pressing the Esc
key,
or, if an element within the sbb-dialog
has the sbb-dialog-close
attribute, by clicking on it.
You can also set the property backButton
on the sbb-dialog-title
component to display the back button in the title section which will emit the event requestBackAction
when clicked.
It's possible to display the component in negative
variant using the self-named property.
<sbb-dialog negative>
<sbb-dialog-title>Title</sbb-dialog-title>
<sbb-dialog-content>Dialog content.</sbb-dialog-content>
</sbb-dialog>
When using a button to trigger the dialog, ensure to manage the appropriate ARIA attributes on the button element itself. This includes: aria-haspopup="dialog"
that signals to assistive technologies that the button controls a dialog element,
aria-controls="dialog-id"
that connects the button to the dialog by referencing the dialog's ID. Consider using aria-expanded
to indicate the dialog's current state (open or closed).
The sbb-dialog
component may visually hide the title thanks to the hideOnScroll
property of the sbb-dialog-title to create more space for content, this is useful especially on smaller screens. Screen readers and other assistive technologies will still have access to the title information for context.
Name | Attribute | Privacy | Type | Default | Description |
---|---|---|---|---|---|
accessibilityLabel | accessibility-label | public | string | '' | This will be forwarded as aria-label to the relevant nested element to describe the purpose of the overlay. |
backdropAction | backdrop-action | public | 'close' | 'none' | 'close' | Backdrop click action. |
isOpen | - | public | boolean | Whether the element is open. | |
negative | negative | public | boolean | false | Negative coloring variant flag. |
Name | Privacy | Description | Parameters | Return | Inherited From |
---|---|---|---|---|---|
close | public | Closes the component. | result: any, target: HTMLElement | any | SbbOpenCloseBaseElement |
open | public | Opens the component. | void | SbbOpenCloseBaseElement |
Name | Type | Description | Inherited From |
---|---|---|---|
didClose | CustomEvent<SbbOverlayCloseEventDetails> | Emits whenever the sbb-dialog is closed. | SbbOpenCloseBaseElement |
didOpen | CustomEvent<void> | Emits whenever the sbb-dialog is opened. | SbbOpenCloseBaseElement |
willClose | CustomEvent<void> | Emits whenever the sbb-dialog begins the closing transition. Can be canceled. | SbbOpenCloseBaseElement |
willOpen | CustomEvent<void> | Emits whenever the sbb-dialog starts the opening transition. Can be canceled. | SbbOpenCloseBaseElement |
Name | Default | Description |
---|---|---|
--sbb-dialog-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 provide a sbb-dialog-title , sbb-dialog-content and an optional sbb-dialog-actions . |