fundamental-ngx
Version:
SAP Fiori Fundamentals, implemented in Angular
17 lines (16 loc) • 578 B
TypeScript
import { ElementRef, EventEmitter } from '@angular/core';
/**
* A token is used to represent contextualizing information.
* They can be useful to show applied filters, selected values for form fields or object metadata.
*/
export declare class TokenComponent {
private elRef;
/** @hidden */
contentContainer: ElementRef;
/** Emitted when the *x* icon is clicked. Specifically, any pseudo-element. */
readonly onCloseClick: EventEmitter<void>;
/** @hidden */
constructor(elRef: ElementRef);
/** @hidden */
clickHandler(event: any): void;
}