@webilix/ngx-helper-m3
Version:
Helper library for Angular and Material 3
23 lines (22 loc) • 1.22 kB
TypeScript
import { OnChanges, SimpleChanges } from '@angular/core';
import { Router } from '@angular/router';
import { ComponentService, IValueComponentData } from '../../component.service';
import { INgxHelperValue } from '../ngx-helper-value.interface';
import * as i0 from "@angular/core";
export declare class NgxHelperValueListComponent implements OnChanges {
private readonly router;
private readonly componentService;
private className;
values: INgxHelperValue[];
titleWidth: string;
emptyText: string;
data: IValueComponentData[];
copyIndex?: number;
private copyTimeout;
constructor(router: Router, componentService: ComponentService);
ngOnChanges(changes: SimpleChanges): void;
onClick(action?: () => string[] | void): void;
onCopy(event: Event, index: number): void;
static ɵfac: i0.ɵɵFactoryDeclaration<NgxHelperValueListComponent, never>;
static ɵcmp: i0.ɵɵComponentDeclaration<NgxHelperValueListComponent, "ngx-helper-value-list", never, { "values": { "alias": "values"; "required": true; }; "titleWidth": { "alias": "titleWidth"; "required": false; }; "emptyText": { "alias": "emptyText"; "required": false; }; }, {}, never, never, true, never>;
}