UNPKG

@progress/kendo-angular-dialog

Version:
15 lines (14 loc) 805 B
/**----------------------------------------------------------------------------------------- * Copyright © 2025 Progress Software Corporation. All rights reserved. * Licensed under commercial license. See LICENSE.md in the project root for more information *-------------------------------------------------------------------------------------------*/ /** * Represents the possible theme colors for the Dialog. * * Use the `DialogThemeColor` type to set the color theme for Dialog components. 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';