@progress/kendo-angular-dialog
Version:
Dialog Package for Angular
14 lines (13 loc) • 722 B
TypeScript
/**-----------------------------------------------------------------------------------------
* Copyright © 2025 Progress Software Corporation. All rights reserved.
* Licensed under commercial license. See LICENSE.md in the project root for more information
*-------------------------------------------------------------------------------------------*/
/**
* Specifies the possible theme colors of the Dialog.
*
* The possible values are:
* * `primary` —Applies coloring based on the `primary` theme color.
* * `light`— Applies coloring based on the `light` theme color.
* * `dark`— Applies coloring based on the `dark` theme color.
*/
export type DialogThemeColor = 'primary' | 'light' | 'dark';