UNPKG

primevue

Version:

PrimeVue is an open source UI library for Vue featuring a rich set of 80+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBloc

40 lines (37 loc) 871 B
/** * * InputChips groups a collection of contents in tabs. * * [Live Demo](https://www.primevue.org/inputchips/) * * @module inputchipsstyle * */ import type { BaseStyle } from '@primevue/core/base/style'; export enum InputChipsClasses { /** * Class name of the root element */ root = 'p-inputchips', /** * Class name of the input element */ input = 'p-inputchips-input', /** * Class name of the chip item element */ chipItem = 'p-inputchips-chip-item', /** * Class name of the chip element */ pcChip = 'p-inputchips-chip-label', /** * Class name of the chip icon element */ chipIcon = 'p-inputchips-chip-icon', /** * Class name of the input item element */ inputItem = 'p-inputchips-input-item' } export interface InputChipsStyle extends BaseStyle {}