UNPKG

primevue

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primevue.svg)](https://badge.fury.io/js/primevue) [![Discord Chat](https://img.shields.io/discord/55794023

116 lines (105 loc) 2.58 kB
/** * * Tag component is used to categorize content. * * [Live Demo](https://www.primevue.org/tag) * * @module tag * */ import { VNode } from 'vue'; import { ClassComponent, GlobalComponentConstructor } from '../ts-helpers'; export declare type TagPassThroughOptionType = TagPassThroughAttributes | ((options: TagPassThroughMethodOptions) => TagPassThroughAttributes) | null | undefined; /** * Custom passthrough(pt) option method. */ export interface TagPassThroughMethodOptions { props: TagProps; } /** * Custom passthrough(pt) options. * @see {@link TagProps.pt} */ export interface TagPassThroughOptions { /** * Uses to pass attributes to the root's DOM element. */ root?: TagPassThroughOptionType; /** * Uses to pass attributes to the icon's DOM element. */ icon?: TagPassThroughOptionType; /** * Uses to pass attributes to the value's DOM element. */ value?: TagPassThroughOptionType; } /** * Custom passthrough attributes for each DOM elements */ export interface TagPassThroughAttributes { [key: string]: any; } /** * Defines valid properties in Tag component. */ export interface TagProps { /** * Value to display inside the tag. */ value?: any; /** * Severity type of the tag. */ severity?: 'success' | 'info' | 'warning' | 'danger' | string | undefined; /** * Whether the corners of the tag are rounded. * @defaultValue false */ rounded?: boolean | undefined; /** * Icon of the tag to display next to the value. * @deprecated since v3.27.0. Use 'icon' slot. */ icon?: string | undefined; /** * Uses to pass attributes to DOM elements inside the component. * @type {TagPassThroughOptions} */ pt?: TagPassThroughOptions; } /** * Defines valid slots in Tag component. */ export interface TagSlots { /** * Custom content template */ default(): VNode[]; /** * Custom icon template */ icon(): VNode[]; } /** * Defines valid emits in Tag component. */ export interface TagEmits {} /** * **PrimeVue - Tag** * * _Tag component is used to categorize content._ * * [Live Demo](https://www.primevue.org/tag/) * --- --- * ![PrimeVue](https://primefaces.org/cdn/primevue/images/logo-100.png) * * @group Component */ declare class Tag extends ClassComponent<TagProps, TagSlots, TagEmits> {} declare module '@vue/runtime-core' { interface GlobalComponents { Tag: GlobalComponentConstructor<Tag>; } } export default Tag;