UNPKG

@progress/kendo-angular-notification

Version:

Kendo UI Notification for Angular

31 lines (30 loc) 1.38 kB
/**----------------------------------------------------------------------------------------- * Copyright © 2026 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Specifies the Notification type * ([see example](https://www.telerik.com/kendo-angular-ui/components/notification/types)). */ export type Type = { /** * Specifies the styling of the Notification. * * The possible values are: * * `none` (Default)—Applies no predefined styling. * * `base`—Applies base styling. * * `primary`—Applies primary styling. * * `secondary`—Applies secondary styling. * * `tertiary`—Applies tertiary styling. * * `info`—Applies info styling. * * `success`—Applies success styling. * * `warning`—Applies warning styling. * * `error`—Applies error styling. * * `inverse`—Applies inverse styling. */ style?: 'none' | 'base' | 'primary' | 'secondary' | 'tertiary' | 'info' | 'success' | 'warning' | 'error' | 'inverse'; /** * Specifies whether to render an icon next to the Notification content. Defaults to `false`. */ icon?: boolean; };