Alerts

To use Alerts, first import SharedModule in your module.

import {SharedModule} from '@gaxon/modules';

@NgModule({
  ...
  imports: [SharedModule, ...],
  ...
})
export class YourAppModule {
}

Basic Alert

Bootstrap provides styles for the following types: 'success', 'info', 'warning', 'danger', 'primary', 'secondary', 'light' and 'dark'

For more information about options, check the Ng-Bootstrap

Closable Alert

For more information about options, check the Ng-Bootstrap

Custom Alert

Last updated