ngx-tags
Version:
To install this library, run:
17 lines (16 loc) • 445 B
TypeScript
import { EventEmitter, ElementRef } from '@angular/core';
export declare class TagComponent {
item: any;
tagLabel: string;
index: number;
tagEditable: boolean;
change: EventEmitter<{}>;
tagContent: ElementRef;
isEditable: boolean;
dbclick(e: Event): void;
keydownHandler(event: KeyboardEvent): void;
constructor();
toggleEditMode(): void;
save(e: Event): void;
blur(): void;
}