Skip to main content
Version: 1.0.3

Notification

Overview

The Notification component allows the user to display pop-up notifications.


Specification

Property

Here is a list of properties that can be used for modifying the component:

NameTypeDefaultDescriptionRemark
classNamestring""Component class name
textstring""Text to be displayed
typestring"danger"Background colorAvailable options:
"danger" : Red (#e74c3c)
"info" : Blue (#3498db)
"success" : Green (#91c36c)

Constructor

Notification(options)
Here is a list of available constructors:

Parameter

NameTypeDefaultDescriptionRemark
optionsobject{}Object that includes component properties

Method

Here is a list of available methods:

open()

Show the Notification

Parameter

none

Return

none

close()

Hide the Notification

Parameter

none

Return

none


Sample Code

Here is a sample code when all parameters are specified:

const notification = new Kuc.Notification({
text: 'Error occurred!',
type: 'danger',
className: 'options-class'
});
notification.open();
notification.close();