@primeuix/themes
Version:
Themes for PrimeUI Libraries
67 lines (61 loc) • 1.44 kB
TypeScript
/**
*
* PickList Design Tokens
*
* @module picklist
*
*/
import type { ColorScheme as CS, DesignTokens, ExtendedCSS, ExtendedTokens } from '..';
/**
* Design Token Sections
*/
export declare namespace PickListTokenSections {
interface Root {
/**
* Gap of root
*
* @designToken picklist.gap
*/
gap?: string;
}
interface Controls {
/**
* Gap of controls
*
* @designToken picklist.controls.gap
*/
gap?: string;
}
/* Static Sections */
type ColorScheme = CS<PickListDesignTokens>;
type CSS = ExtendedCSS;
type Extend = ExtendedTokens;
}
/**
*
* _PickList Design Tokens_
*
* @group components
* @module picklist
* @see
* --- ---
* **Compatible Libraries**
*
* [](https://primeng.org/theming/styled)
* [](https://primevue.org/theming/styled)
* --- ---
* **Figma UI Kit**
*
* [PrimeNG](https://primeng.org/uikit) | [PrimeVue](https://primevue.org/uikit)
*
*/
export interface PickListDesignTokens extends DesignTokens<PickListDesignTokens> {
/**
* Used to pass tokens of the root section
*/
root?: PickListTokenSections.Root;
/**
* Used to pass tokens of the controls section
*/
controls?: PickListTokenSections.Controls;
}