Skip to main content

MessageStrip

The ui5-message-strip component enables the embedding of app-related messages. It displays 4 designs of messages, each with corresponding semantic color and icon: Information, Positive, Critical and Negative. Each message can have a Close button, so that it can be removed from the UI, if needed.

Usage​

For the ui5-message-strip component, you can define whether it displays an icon in the beginning and a close button. Moreover, its size and background can be controlled with CSS.

Keyboard Handling​

Fast Navigation​

This component provides a build in fast navigation group which can be used via [F6] / [Shift] + [F6] / [Ctrl] + [Alt/Option] / [Down] or [Ctrl] + [Alt/Option] + [Up]. In order to use this functionality, you need to import the following module: import "@ui5/webcomponents-base/dist/features/F6Navigation.js"

ES6 Module Import​

import "@ui5/webcomponents/dist/MessageStrip.js";

Basic Sample​

Properties​

design​

DescriptionDefines the component type.
Type"Information" | "Positive" | "Negative" | "Critical" | "ColorSet1" | "ColorSet2"
Default"Information"
Since1.0.0-rc.15

colorScheme​

DescriptionDefines the color scheme of the component. There are 10 predefined schemes. To use one you can set a number from "1" to "10". The colorScheme "1" will be set by default.
Typestring
Default"1"
Since2.0.0

hideIcon​

DescriptionDefines whether the MessageStrip will show an icon in the beginning. You can directly provide an icon with the icon slot. Otherwise, the default icon for the type will be used.
* Note: If MessageStripDesign.ColorSet1 or MessageStripDesign.ColorSet2 value is set to the design property, default icon will not be presented.
Typeboolean
Defaultfalse
Since1.0.0-rc.15

hideCloseButton​

DescriptionDefines whether the MessageStrip renders close button.
Typeboolean
Defaultfalse

Slots​

default​

DescriptionDefines the text of the component.
Note: Although this slot accepts HTML Elements, it is strongly recommended that you only use text in order to preserve the intended design.
TypeArray<Node>

icon​

DescriptionDefines the content to be displayed as graphical element within the component.
Note: If no icon is given, the default icon for the component type will be used. The SAP-icons font provides numerous options.
See all the available icons in the Icon Explorer.
TypeArray<IIcon>

Events​

close​

DescriptionFired when the close button is pressed either with a click/tap or by using the Enter or Space key.
TypeCustomEvent

Methods​

No methods available for this component.

CSS Parts​

No CSS parts available for this component.

More Samples​

Design​

Hide Icon and Close Button​

Use hideIcon and hideCloseButton properties to hide some parts of the MessageStrip.

Custom Icon​

Custom visualisation​