@porscheinformatik/clr-addons
Version:
Addon components for Clarity Angular
16 lines (15 loc) • 716 B
TypeScript
import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
import { Subject } from 'rxjs';
import { ControlIdService } from './control-id.service';
import * as i0 from "@angular/core";
export declare class ClrAddonsLabel implements OnInit, OnDestroy {
private controlIdService;
private renderer;
private el;
destroyed$: Subject<void>;
constructor(controlIdService: ControlIdService, renderer: Renderer2, el: ElementRef);
ngOnInit(): void;
ngOnDestroy(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ClrAddonsLabel, [{ optional: true; }, null, null]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ClrAddonsLabel, "label", never, {}, {}, never, never, false, never>;
}