No Preview

Sorry, but you either have no stories or none are selected somehow.

If the problem persists, check the browser console, or the terminal you've run Storybook from.

Svelte Bootstrap Alerts

Svelte Alerts - Bootstrap 4 & Material Design

With the right use of colors, they add some emotional weight to our information, ranging from a simple warning to critical system failure or from an operation success to a neutral information.

Bootstrap alerts are feedback messages which are displayed after specific actions preceded by the user. Length of the text is not limited.

Basic examples

Alerts are available for any length of text, as well as an optional dismiss button. For proper styling, use one of the eight contextual props (e.g., color="success"). For inline dismissal, use the dismiss prop.

<script>
  import {MDBAlert, MDBContainer} from "mdbsvelte";
</script>
<MDBContainer>
  <MDBAlert color="primary">
    A simple primary alert—check it out!
  </MDBAlert>
  <MDBAlert color="secondary">
    A simple secondary alert—check it out!
  </MDBAlert>
  <MDBAlert color="success">
    A simple success alert—check it out!
  </MDBAlert>
  <MDBAlert color="danger">
    A simple success alert—check it out!
  </MDBAlert>
  <MDBAlert color="warning">
    A simple warning alert—check it out!
  </MDBAlert>
  <MDBAlert color="info">
    A simple info alert—check it out!
  </MDBAlert>
  <MDBAlert color="light">
    A simple light alert—check it out!
  </MDBAlert>
  <MDBAlert color="dark">
    A simple dark alert—check it out!
  </MDBAlert>
</MDBContainer>

Link color

Use the .alert-link utility class to quickly provide matching colored links within any alert.

<script>
  import {MDBAlert, MDBContainer} from "mdbsvelte";
</script>
<MDBContainer>
  <MDBAlert color="primary">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
  <MDBAlert color="secondary">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
  <MDBAlert color="success">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
  <MDBAlert color="danger">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
  <MDBAlert color="warning">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
  <MDBAlert color="info">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
  <MDBAlert color="light">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
  <MDBAlert color="dark">
    A simple primary alert with <a href="#!" class="alert-link">an example link</a>. Give it a click if you like.
  </MDBAlert>
</MDBContainer>

Additional content

Alerts can also contain additional HTML elements like headings, paragraphs and dividers.

<script>
  import {MDBAlert, MDBContainer} from "mdbsvelte";
</script>
<MDBContainer>
  <MDBAlert color="success">
    <h4 class="alert-heading">Well done!</h4>
    <p>Aww yeah, you successfully read this important alert message. This example text is going to run a bit longer so
      that you can see how spacing within an alert works with this kind of content.</p>
    <hr/>
    <p class="mb-0">Whenever you need to, be sure to use margin utilities to keep things nice and tidy.</p>
  </MDBAlert>
</MDBContainer>

Dismissing

Using the Svelte Alert component, it’s possible to dismiss any alert inline. You can see this in action with a live demo:

<script>
  import {MDBAlert, MDBContainer} from "mdbsvelte";
</script>
<MDBContainer>
  <MDBAlert color="warning" dismiss>
    <strong>Holy guacamole!</strong> You should check in on some of those fields below.
  </MDBAlert>
</MDBContainer>