32 lines
643 B
TypeScript
32 lines
643 B
TypeScript
|
|
/**
|
||
|
|
*
|
||
|
|
* Checkbox is an extension to standard checkbox element with theming.
|
||
|
|
*
|
||
|
|
* [Live Demo](https://www.primevue.org/checkbox/)
|
||
|
|
*
|
||
|
|
* @module checkboxstyle
|
||
|
|
*
|
||
|
|
*/
|
||
|
|
import type { BaseStyle } from '@primevue/core/base/style';
|
||
|
|
|
||
|
|
export enum CheckboxClasses {
|
||
|
|
/**
|
||
|
|
* Class name of the root element
|
||
|
|
*/
|
||
|
|
root = 'p-checkbox',
|
||
|
|
/**
|
||
|
|
* Class name of the box element
|
||
|
|
*/
|
||
|
|
box = 'p-checkbox-box',
|
||
|
|
/**
|
||
|
|
* Class name of the input element
|
||
|
|
*/
|
||
|
|
input = 'p-checkbox-input',
|
||
|
|
/**
|
||
|
|
* Class name of the icon element
|
||
|
|
*/
|
||
|
|
icon = 'p-checkbox-icon'
|
||
|
|
}
|
||
|
|
|
||
|
|
export interface CheckboxStyle extends BaseStyle {}
|