/** * * Dialog Design Tokens * * @module dialog * */ import type { ColorScheme as CS, DesignTokens, ExtendedCSS, ExtendedTokens } from '..'; /** * Design Token Sections */ export declare namespace DialogTokenSections { interface Root { /** * Background of root * * @designToken dialog.background */ background?: string; /** * Border color of root * * @designToken dialog.border.color */ borderColor?: string; /** * Color of root * * @designToken dialog.color */ color?: string; /** * Border radius of root * * @designToken dialog.border.radius */ borderRadius?: string; /** * Shadow of root * * @designToken dialog.shadow */ shadow?: string; } interface Header { /** * Padding of header * * @designToken dialog.header.padding */ padding?: string; /** * Gap of header * * @designToken dialog.header.gap */ gap?: string; } interface Title { /** * Font size of title * * @designToken dialog.title.font.size */ fontSize?: string; /** * Font weight of title * * @designToken dialog.title.font.weight */ fontWeight?: string; } interface Content { /** * Padding of content * * @designToken dialog.content.padding */ padding?: string; } interface Footer { /** * Padding of footer * * @designToken dialog.footer.padding */ padding?: string; /** * Gap of footer * * @designToken dialog.footer.gap */ gap?: string; } /* Static Sections */ type ColorScheme = CS; type CSS = ExtendedCSS; type Extend = ExtendedTokens; } /** * * _Dialog Design Tokens_ * * @group components * @module dialog * @see * --- --- * **Compatible Libraries** * * [![PrimeNG](https://i.postimg.cc/63f7jVST/primeng-icon-24.png)](https://primeng.org/theming/styled) * [![PrimeVue](https://i.postimg.cc/cC1vVgyh/primevue-icon-24.png)](https://primevue.org/theming/styled) * --- --- * **Figma UI Kit** * * [PrimeNG](https://primeng.org/uikit) | [PrimeVue](https://primevue.org/uikit) * */ export interface DialogDesignTokens extends DesignTokens { /** * Used to pass tokens of the root section */ root?: DialogTokenSections.Root; /** * Used to pass tokens of the header section */ header?: DialogTokenSections.Header; /** * Used to pass tokens of the title section */ title?: DialogTokenSections.Title; /** * Used to pass tokens of the content section */ content?: DialogTokenSections.Content; /** * Used to pass tokens of the footer section */ footer?: DialogTokenSections.Footer; }