2024-05-08 11:40:44 +00:00
|
|
|
/**
|
|
|
|
*
|
|
|
|
* InputChips groups a collection of contents in tabs.
|
|
|
|
*
|
|
|
|
* [Live Demo](https://www.primevue.org/inputchips/)
|
|
|
|
*
|
|
|
|
* @module inputchipsstyle
|
|
|
|
*
|
|
|
|
*/
|
2024-04-18 14:18:40 +00:00
|
|
|
import { BaseStyle } from '../../base/style';
|
|
|
|
|
2024-05-08 11:40:44 +00:00
|
|
|
export enum InputChipsClasses {
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the root element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
root = 'p-inputchips',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the input element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
input = 'p-inputchips-input',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the chip item element
|
|
|
|
*/
|
2024-05-15 07:35:36 +00:00
|
|
|
chipItem = 'p-inputchips-chip-item',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the chip element
|
|
|
|
*/
|
2024-05-15 07:35:36 +00:00
|
|
|
pcChip = 'p-inputchips-chip-label',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the chip icon element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
chipIcon = 'p-inputchips-chip-icon',
|
2024-05-22 13:52:02 +00:00
|
|
|
/**
|
|
|
|
* Class name of the input item element
|
|
|
|
*/
|
2024-05-08 11:40:44 +00:00
|
|
|
inputItem = 'p-inputchips-input-item'
|
|
|
|
}
|
|
|
|
|
2024-04-18 14:18:40 +00:00
|
|
|
export interface InputChipsStyle extends BaseStyle {}
|