Snackbar is a web component, inspired by Material Design, behaving like a customizable notification system, that can display messages in different positions with various styles.
<snack-bar position=""></snack-bar>
<snack-bar></snack-bar>
<snack-bar popover="manual"></snack-bar>
snackbar.add('Message', 'info', 0);
popover="manual"
<snack-item message="Message" part="info" duration="0">
<snack-item part="info"></snack-item>
Custom styling can be applied using CSS custom properties.
snack-bar::part(custom-error) {
--snack-item-bg: #f44336; // background
--snack-item-c: #ffffff; // color
--snack-item-ac: lightcoral; // action
}
<snack-item part="custom-error"></snack-item>
Note: snack items use exportparts
, so these custom properties can be applied to the snack bar itself.