/** * * PanelMenu Design Tokens * * @module panelmenu * */ import type { ColorScheme as CS, DesignTokens, ExtendedCSS, ExtendedTokens } from '..'; /** * Design Token Sections */ export declare namespace PanelMenuTokenSections { interface Root { /** * Gap of root * * @designToken panelmenu.gap */ gap?: string; /** * Transition duration of root * * @designToken panelmenu.transition.duration */ transitionDuration?: string; } interface Panel { /** * Background of panel * * @designToken panelmenu.panel.background */ background?: string; /** * Border color of panel * * @designToken panelmenu.panel.border.color */ borderColor?: string; /** * Border width of panel * * @designToken panelmenu.panel.border.width */ borderWidth?: string; /** * Color of panel * * @designToken panelmenu.panel.color */ color?: string; /** * Padding of panel * * @designToken panelmenu.panel.padding */ padding?: string; /** * Border radius of panel * * @designToken panelmenu.panel.border.radius */ borderRadius?: string; /** * First of panel */ first?: { /** * First border width of panel * * @designToken panelmenu.panel.first.border.width */ borderWidth?: string; /** * First top border radius of panel * * @designToken panelmenu.panel.first.top.border.radius */ topBorderRadius?: string; }; /** * Last of panel */ last?: { /** * Last border width of panel * * @designToken panelmenu.panel.last.border.width */ borderWidth?: string; /** * Last bottom border radius of panel * * @designToken panelmenu.panel.last.bottom.border.radius */ bottomBorderRadius?: string; }; } interface Item { /** * Focus background of item * * @designToken panelmenu.item.focus.background */ focusBackground?: string; /** * Color of item * * @designToken panelmenu.item.color */ color?: string; /** * Focus color of item * * @designToken panelmenu.item.focus.color */ focusColor?: string; /** * Gap of item * * @designToken panelmenu.item.gap */ gap?: string; /** * Padding of item * * @designToken panelmenu.item.padding */ padding?: string; /** * Border radius of item * * @designToken panelmenu.item.border.radius */ borderRadius?: string; /** * Icon of item */ icon?: { /** * Icon color of item * * @designToken panelmenu.item.icon.color */ color?: string; /** * Icon focus color of item * * @designToken panelmenu.item.icon.focus.color */ focusColor?: string; }; } interface Submenu { /** * Indent of submenu * * @designToken panelmenu.submenu.indent */ indent?: string; } interface SubmenuIcon { /** * Color of submenu icon * * @designToken panelmenu.submenu.icon.color */ color?: string; /** * Focus color of submenu icon * * @designToken panelmenu.submenu.icon.focus.color */ focusColor?: string; } /* Static Sections */ type ColorScheme = CS; type CSS = ExtendedCSS; type Extend = ExtendedTokens; } /** * * _PanelMenu Design Tokens_ * * @group components * @module panelmenu * @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 PanelMenuDesignTokens extends DesignTokens { /** * Used to pass tokens of the root section */ root?: PanelMenuTokenSections.Root; /** * Used to pass tokens of the panel section */ panel?: PanelMenuTokenSections.Panel; /** * Used to pass tokens of the item section */ item?: PanelMenuTokenSections.Item; /** * Used to pass tokens of the submenu section */ submenu?: PanelMenuTokenSections.Submenu; /** * Used to pass tokens of the submenu icon section */ submenuIcon?: PanelMenuTokenSections.SubmenuIcon; }