Skip to content

Notification

The Notification component is a lightweight and easily customizable alert message. It is designed to mimic the push notifications that have been popularized by mobile and desktop operating systems.

Examples

Base

Variants

Different styles can be achieved with the variant prop.

Use types

The type prop in combination with the variant prop adds specific icons to the notification.

Add custom buttons

Programmatically

This component provides a programmatic interface that can be accessed by the useOruga() composable.

Notification component

Bold notification blocks to alert your users of something.

html
<o-notification></o-notification>

Props

Prop nameDescriptionTypeValuesDefault
activeWhether modal is active or not, use v-model:active to make it two-way bindingboolean-true
animationCustom animation (transition name)string-
From config:
notification: {
  animation: "fade"
}
ariaCloseLabelAccessibility label for the close buttonstring-
From config:
notification: {
  ariaCloseLabel: "Close"
}
closableAdd close button to the item that closes the notificationboolean-false
closeIconClose icon namestring-
From config:
notification: {
  closeIcon: "close"
}
closeIconSizeSize of close iconstringsmall, medium, large
From config:
notification: {
  closeIconSize: undefined
}
iconIcon name to usestring-
iconPackIcon pack to usestringmdi, fa, fas and any other custom icon pack
From config:
notification: {
  iconPack: undefined
}
iconSizeIcon sizestringsmall, medium, large
From config:
notification: {
  iconSize: "large"
}
messageMessage text, unnecessary when default slot is usedstring-
overrideOverride existing theme classes completelyboolean-
positionWhich position the notification will appear when programmatically"bottom-left" | "bottom-right" | "bottom" | "top-left" | "top-right" | "top"top-right, top, top-left, bottom-right, bottom, bottom-left
From config:
notification: {
  position: "top"
}
typeType (color) of the notificationstringinfo, success, warning, danger
variantColor of the controlstringprimary, info, success, warning, danger, and any other custom color
From config:
notification: {
  variant: undefined
}

Events

Event namePropertiesDescription
update:activevalue boolean - updated active propactive prop two-way binding
closevalue unknown - close event dataon component close event

Slots

NameDescriptionBindings
innerNotification inner content, outside of the message containerclose (...args): void - function to close the notification
defaultNotification default content, default is message propclose (...args): void - function to close the notification

NotificationNotice component

Notification Notice is an extension of the Notification component and is used for the programmatic usage.

html
<o-notification-notice></o-notification-notice>

Props

Prop nameDescriptionTypeValuesDefault
componentComponent to be injected.
Close the component by emitting a 'close' event — $emit('close')
Component-
durationHide notification after duration (in miliseconds)number-
From config:
notification: {
  duration: 2000
}
eventsEvents to be binded to the injected component{}-
infiniteShow the Notification infinitely until it is dismissed.boolean-false
overrideOverride existing theme classes completelyboolean-
positionWhich position the notification will appear."bottom-left" | "bottom-right" | "bottom" | "top-left" | "top-right" | "top"top-right, top, top-left, bottom-right, bottom, bottom-left
From config:
notification: {
  position: "top"
}
propsProps to be binded to the injected componentany-
queueIf notice should queue with others notices (snackbar/toast/notification).boolean-
From config:
notification: {
  queue: undefined
}
variantColor of the controlstringprimary, info, success, warning, danger, and any other custom color
From config:
notification: {
  variant: undefined
}

Events

Event namePropertiesDescription
closevalue unknown - close event dataon component close event

Slots

NameDescriptionBindings
default

Class Inspector

Classes applied to the element:
Class propDescriptionPropsSuffixes
rootClassClass of the root element.
👉 You have to declare a class when override mode.
positionClassClass of the root element when positioned.
👉 You have to declare a class for top and bottom position when override mode.
positiontop-right
top
top-left
bottom-right
bottom
bottom-left
variantClassClass of the root element with variant.variantprimary
info
warning
danger
wrapperClassClass of the wrapper element.
iconClassClass of the icon element on the left.type
contentClassClass of the content element.
closeClassClass of the close button element.closable
noticeClassClass of the notice wrapper element.
noticePositionClassClass of the notice wrapper element when positioned.positiontop-right
top
top-left
bottom-right
bottom
bottom-left
noticeContainerClassClass of the notice container element.

Sass variables

Current theme ➜ Oruga

SASS VariableDefault
$notification-background-colorvar(--#{$prefix}primary)
$notification-border-radius4px
$notification-padding1.75em 1.75em
$notification-margin-bottom1.5rem
$notification-animantionappend-animate 0.3s linear
$notification-colorvar(--#{$prefix}white)
$notification-close-border-radiusvar( --#{$prefix}base-border-radius-rounded)
$notification-close-right0.5rem
$notification-close-top0.5rem
$notification-close-size20px
$notification-close-colorvar(--#{$prefix}white)
$notification-close-background-colorhsla(0, 0%, 4%, 0.2)
$notification-icon-margin-right1rem
$notification-notices-padding2em
$notification-notices-zindex1000

See ➜ 📄 Full scss file

Current theme ➜ Bulma

SASS VariableDefault
$notification-margin-bottom1.5rem
$notification-notices-padding2em
$notification-notices-z1000

See ➜ 📄 Full scss file

Current theme ➜ Bootstrap

SASS VariableDefault
$notification-close-btn-position1rem
$notification-notices-padding2em
$notification-notices-zindex$zindex-toast
$notification-notices-max-width600px
$notification-notices-space1.5rem
$notification-icon-margin-right0.5rem

See ➜ 📄 Full scss file

Released under the MIT License.