UNPKG

primeng

Version:

PrimeNG is a premium UI library for Angular featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with PrimeBlock,

159 lines (155 loc) 5.6 kB
import { ChipPassThrough, ChipProps } from 'primeng/types/chip'; export * from 'primeng/types/chip'; import * as _angular_core from '@angular/core'; import { TemplateRef } from '@angular/core'; import { BaseComponent } from 'primeng/basecomponent'; import * as i1 from 'primeng/bind'; import { Bind } from 'primeng/bind'; import { BaseStyle } from 'primeng/base'; import * as i2 from 'primeng/api'; /** * * Chip represents people using icons, labels and images. * * [Live Demo](https://www.primeng.org/chip) * * @module chipstyle * */ declare enum ChipClasses { /** * Class name of the root element */ root = "p-chip", /** * Class name of the image element */ image = "p-chip-image", /** * Class name of the icon element */ icon = "p-chip-icon", /** * Class name of the label element */ label = "p-chip-label", /** * Class name of the remove icon element */ removeIcon = "p-chip-remove-icon" } declare class ChipStyle extends BaseStyle { name: string; style: string; classes: { root: ({ instance }: { instance: any; }) => (string | { 'p-disabled': any; })[]; image: string; icon: string; label: string; removeIcon: string; }; inlineStyles: { root: ({ instance }: { instance: any; }) => { display: string | false; }; }; static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChipStyle, never>; static ɵprov: _angular_core.ɵɵInjectableDeclaration<ChipStyle>; } interface ChipStyle extends BaseStyle { } /** * Chip represents people using icons, labels and images. * @group Components */ declare class Chip extends BaseComponent<ChipPassThrough> { componentName: string; $pcChip: Chip | undefined; bindDirectiveInstance: Bind; onAfterViewChecked(): void; /** * Defines the text to display. * @group Props */ label: _angular_core.InputSignal<string | undefined>; /** * Defines the icon to display. * @group Props */ icon: _angular_core.InputSignal<string | undefined>; /** * Defines the image to display. * @group Props */ image: _angular_core.InputSignal<string | undefined>; /** * Alt attribute of the image. * @group Props */ alt: _angular_core.InputSignal<string | undefined>; /** * When present, it specifies that the element should be disabled. * @group Props */ disabled: _angular_core.InputSignalWithTransform<boolean, unknown>; /** * Whether to display a remove icon. * @group Props */ removable: _angular_core.InputSignalWithTransform<boolean, unknown>; /** * Icon of the remove element. * @group Props */ removeIcon: _angular_core.InputSignal<string | undefined>; /** * Used to pass all properties of the chipProps to the Chip component. * @group Props */ chipProps: _angular_core.InputSignal<ChipProps | undefined>; /** * Callback to invoke when a chip is removed. * @param {MouseEvent} event - Mouse event. * @group Emits */ onRemove: _angular_core.OutputEmitterRef<MouseEvent>; /** * This event is triggered if an error occurs while loading an image file. * @param {Event} event - Browser event. * @group Emits */ onImageError: _angular_core.OutputEmitterRef<Event>; /** * Custom remove icon template. * @group Templates */ removeIconTemplate: _angular_core.Signal<TemplateRef<void> | undefined>; visible: _angular_core.WritableSignal<boolean>; _componentStyle: ChipStyle; _label: _angular_core.Signal<string | undefined>; _icon: _angular_core.Signal<string | undefined>; _image: _angular_core.Signal<string | undefined>; _alt: _angular_core.Signal<string | undefined>; _removable: _angular_core.Signal<boolean>; _removeIcon: _angular_core.Signal<string | undefined>; removeAriaLabel: _angular_core.Signal<any>; removeIconTabindex: _angular_core.Signal<-1 | 0>; dataP: _angular_core.Signal<string>; close(event: MouseEvent | KeyboardEvent): void; onKeydown(event: KeyboardEvent): void; imageError(event: Event): void; static ɵfac: _angular_core.ɵɵFactoryDeclaration<Chip, never>; static ɵcmp: _angular_core.ɵɵComponentDeclaration<Chip, "p-chip", never, { "label": { "alias": "label"; "required": false; "isSignal": true; }; "icon": { "alias": "icon"; "required": false; "isSignal": true; }; "image": { "alias": "image"; "required": false; "isSignal": true; }; "alt": { "alias": "alt"; "required": false; "isSignal": true; }; "disabled": { "alias": "disabled"; "required": false; "isSignal": true; }; "removable": { "alias": "removable"; "required": false; "isSignal": true; }; "removeIcon": { "alias": "removeIcon"; "required": false; "isSignal": true; }; "chipProps": { "alias": "chipProps"; "required": false; "isSignal": true; }; }, { "onRemove": "onRemove"; "onImageError": "onImageError"; }, ["removeIconTemplate"], ["*"], true, [{ directive: typeof i1.Bind; inputs: {}; outputs: {}; }]>; } declare class ChipModule { static ɵfac: _angular_core.ɵɵFactoryDeclaration<ChipModule, never>; static ɵmod: _angular_core.ɵɵNgModuleDeclaration<ChipModule, never, [typeof Chip, typeof i2.SharedModule], [typeof Chip, typeof i2.SharedModule]>; static ɵinj: _angular_core.ɵɵInjectorDeclaration<ChipModule>; } export { Chip, ChipClasses, ChipModule, ChipStyle };