AlertApi

interface
Methods
close

close(): void

Triggers alert closing programmatically (same as clicking on the close button (×)).

Returns

void


open

open(): void

Triggers the alert to be displayed for the user.

Returns

void


AlertBodyDirective

class
Constructors
new AlertBodyDirective

new AlertBodyDirective(): AlertBodyDirective

Returns

AlertBodyDirective

Properties
templateRef

templateRef: TemplateRef<any>

Methods
ngTemplateContextGuard

static ngTemplateContextGuard(dir, context): context is AlertContext

Parameters

dir: AlertBodyDirective

context: unknown

Returns

context is AlertContext


AlertComponent

class
Implements
Constructors
new AlertComponent

new AlertComponent(): AlertComponent

Returns

AlertComponent

Properties
_widget

readonly _widget: AngularWidget<AlertWidget>


animated

animated: undefined | boolean

If true, alert closing will be animated.

Animation is triggered when clicked on the close button (×), via the .close() function or the visible prop is changed

Default Value

true


animatedOnInit

animatedOnInit: undefined | boolean

If true, alert opening will be animated.

Animation is triggered when the .open() function is called or the visible prop is changed

Default Value

false


ariaCloseButtonLabel

ariaCloseButtonLabel: undefined | string

Accessibility close button label

Default Value

'Close'


children

children: SlotContent<AlertContext>

Template for the alert content


className

className: undefined | string

CSS classes to be applied on the widget main container

Default Value

''


defaultSlots

readonly defaultSlots: WritableSignal<Partial<AlertProps>, Partial<AlertProps>>


dismissible

dismissible: undefined | boolean

If true, alert can be dismissed by the user. The close button (×) will be displayed and you can be notified of the event with the (close) output.

Default Value

true


hidden

hidden: EventEmitter<void>

Callback called when the alert is hidden.

Default Value
() => {}

shown

shown: EventEmitter<void>

Callback called when the alert is shown.

Default Value
() => {}

slotDefaultFromContent

slotDefaultFromContent: undefined | AlertBodyDirective


slotStructureFromContent

slotStructureFromContent: undefined | AlertStructureDirective


structure

structure: SlotContent<AlertContext>

Global template for the alert component


transition

transition: undefined | TransitionFn

The transition function will be executed when the alert is displayed or hidden.

Depending on the value of animatedOnInit, the animation can be optionally skipped during the showing process.

Default Value

fadeTransition


type

type: undefined | BSContextualClass

Type of the alert, following bootstrap types.

Default Value

'primary'


visible

visible: undefined | boolean

If true the alert is visible to the user

Default Value

true


visibleChange

visibleChange: EventEmitter<boolean>

Callback called when the alert visibility changed.

Default Value
() => {}
Accessors
api

get api(): W["api"]

Returns

W["api"]


state

get state(): Signal<WidgetState<W>>

Returns

Signal<WidgetState<W>>


widget

get widget(): ContextWidget<W>

Returns

ContextWidget<W>

Methods
ngAfterContentChecked

ngAfterContentChecked(): void

A callback method that is invoked immediately after the default change detector has completed checking all of the directive's content.

Returns

void

Implementation of

AfterContentChecked.ngAfterContentChecked


ngOnChanges

ngOnChanges(changes): void

Parameters

changes: SimpleChanges

Returns

void

Inherit Doc

ngOnInit

ngOnInit(): void

Returns

void

Inherit Doc

AlertContext

type alias

AlertContext: WidgetSlotContext<AlertWidget>


AlertDefaultSlotsComponent

class
Constructors
new AlertDefaultSlotsComponent

new AlertDefaultSlotsComponent(): AlertDefaultSlotsComponent

Returns

AlertDefaultSlotsComponent

Properties
structure

structure: TemplateRef<AlertContext>


alertDefaultSlotStructure

constant

const alertDefaultSlotStructure: ComponentTemplate<unknown, "structure", AlertDefaultSlotsComponent>


AlertDirectives

interface
Properties
transitionDirective

transitionDirective: Directive

the transition directive, piloting what is the visual effect of going from hidden to visible


AlertProps

interface
Properties
animated

animated: boolean

If true, alert closing will be animated.

Animation is triggered when clicked on the close button (×), via the .close() function or the visible prop is changed

Default Value

true


animatedOnInit

animatedOnInit: boolean

If true, alert opening will be animated.

Animation is triggered when the .open() function is called or the visible prop is changed

Default Value

false


ariaCloseButtonLabel

ariaCloseButtonLabel: string

Accessibility close button label

Default Value

'Close'


children

children: SlotContent<AlertContext>

Template for the alert content


className

className: string

CSS classes to be applied on the widget main container

Default Value

''


dismissible

dismissible: boolean

If true, alert can be dismissed by the user. The close button (×) will be displayed and you can be notified of the event with the (close) output.

Default Value

true


onHidden

onHidden: () => void

Callback called when the alert is hidden.

Returns

void

Default Value
() => {}

onShown

onShown: () => void

Callback called when the alert is shown.

Returns

void

Default Value
() => {}

onVisibleChange

onVisibleChange: (visible) => void

Callback called when the alert visibility changed.

Parameters

visible: boolean

Returns

void

Default Value
() => {}

structure

structure: SlotContent<AlertContext>

Global template for the alert component


transition

transition: TransitionFn

The transition function will be executed when the alert is displayed or hidden.

Depending on the value of animatedOnInit, the animation can be optionally skipped during the showing process.

Default Value

fadeTransition


type

type: BSContextualClass

Type of the alert, following bootstrap types.

Default Value

'primary'


visible

visible: boolean

If true the alert is visible to the user

Default Value

true


AlertState

interface
Properties
ariaCloseButtonLabel

ariaCloseButtonLabel: string

Accessibility close button label

Default Value

'Close'


children

children: SlotContent<AlertContext>

Template for the alert content


className

className: string

CSS classes to be applied on the widget main container

Default Value

''


dismissible

dismissible: boolean

If true, alert can be dismissed by the user. The close button (×) will be displayed and you can be notified of the event with the (close) output.

Default Value

true


hidden

hidden: boolean

Is true when the alert is hidden. Compared to visible, this is updated after the transition is executed.


structure

structure: SlotContent<AlertContext>

Global template for the alert component


type

type: BSContextualClass

Type of the alert, following bootstrap types.

Default Value

'primary'


visible

visible: boolean

If true the alert is visible to the user

Default Value

true


AlertStructureDirective

class
Constructors
new AlertStructureDirective

new AlertStructureDirective(): AlertStructureDirective

Returns

AlertStructureDirective

Properties
templateRef

templateRef: TemplateRef<any>

Methods
ngTemplateContextGuard

static ngTemplateContextGuard(dir, context): context is AlertContext

Parameters

dir: AlertStructureDirective

context: unknown

Returns

context is AlertContext


AlertWidget

type alias

AlertWidget: Widget<AlertProps, AlertState, AlertApi, object, AlertDirectives>


createAlert

function

createAlert(props?): AlertWidget

Create an AlertWidget with given config props

Parameters

props?: PropsConfig<AlertProps>

Returns

AlertWidget

an AlertWidget


getAlertDefaultConfig

function

getAlertDefaultConfig(): AlertProps

Retrieve a shallow copy of the default Alert config

Returns

AlertProps

the default Alert config


PartialAlertProps

type alias

PartialAlertProps: Partial<AlertProps>