primevue-mirror/components/lib/themes/nora/inputtext/index.d.ts

45 lines
871 B
TypeScript
Raw Normal View History

2024-05-13 21:48:50 +00:00
/**
*
* InputText renders a text field to enter data.
*
* [Live Demo](https://www.primevue.org/inputtext/)
*
* @module nora/inputtext
*
*/
/**
* Defines all sections of design tokens
*/
export namespace InputTextDesignToken {
/**
* Tokens of the root section
*/
export interface Root {
/**
* Background of an input field
*
* @designToken inputtext.background
*/
background?: string;
}
}
/**
* **PrimeVue - InputText**
*
* _InputText renders a text field to enter data._
*
* [Live Demo](https://www.primevue.org/inputtext/)
* --- ---
* ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png)
*
* @group DesignTokens
*/
export interface InputTextDesignTokens {
/**
* Used to pass tokens of the root section
*/
root?: InputTextDesignToken.Root;
}