Inputs
| Argument | Type | Description | Default Value |
| startVisible | boolean | Set whether the component is visible since its creation or not. | false |
| style (Theme Attribute) | string | Alert color style. See available styles at Bootstrap documentation. | null (no style) |
| showCloseButton (Theme Attribute) | boolean | Display a button to close the alert. | null (no button) |
Outputs
| Argument | Type | Description | Default Value |
| onShow | EventEmitter<void> | Define a certain behaviour to take place whenever the component is shown. |
| onHide | EventEmitter<void> | Define a certain behaviour to take place whenever the component is hidden. |
Example
<bs-alert #alert
[style]="'warning'"
[showCloseButton]="true">
Alert {{options | json}}
</bs-alert>