Import
import { ActionStatusModule } from '@backbase/ui-ang/action-status'
Usage
Use the bb-action-status-ui component to display an action status. The state input is required.
<!-- Basic action status usage with state -->
<bb-action-status-ui [state]="'success'"></bb-action-status-ui>
Inputs
|
Input |
Type |
Default |
|---|---|---|
|
state (required) |
ActionState . One of 'loading', 'success', 'info', 'warning', 'error' or 'message' |
'undefined' |
state
The state input sets the current state of the action. Possible values are 'loading', 'success', 'info', 'warning', 'error', or 'message'.
<!-- Action status with state set to success -->
<bb-action-status-ui [state]="'success'"></bb-action-status-ui>