primevue
Version:
[](https://opensource.org/licenses/MIT) [](https://badge.fury.io/js/primevue) [ • 2.58 kB
TypeScript
/**
*
* 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/)
* --- ---
* 
*
* @group Component
*/
declare class Tag extends ClassComponent<TagProps, TagSlots, TagEmits> {}
declare module '@vue/runtime-core' {
interface GlobalComponents {
Tag: GlobalComponentConstructor<Tag>;
}
}
export default Tag;