UNPKG

baked-recipe-admin

Version:

Baked is an opinionated framework for .NET in backend and Nuxt in frontend. This is a recipe package that brings together all the components one needs for an Admin UI.

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 {}