@clr/angular
Version:
Angular components for Clarity
23 lines (22 loc) • 1.08 kB
TypeScript
import { ElementRef, OnDestroy, OnInit, Renderer2 } from '@angular/core';
import { ControlIdService } from './providers/control-id.service';
import { LayoutService } from './providers/layout.service';
import { NgControlService } from './providers/ng-control.service';
import * as i0 from "@angular/core";
export declare class ClrLabel implements OnInit, OnDestroy {
private controlIdService;
private layoutService;
private ngControlService;
private renderer;
private el;
forAttr: string;
private enableGrid;
private subscriptions;
constructor(controlIdService: ControlIdService, layoutService: LayoutService, ngControlService: NgControlService, renderer: Renderer2, el: ElementRef);
get labelText(): string;
ngOnInit(): void;
ngOnDestroy(): void;
disableGrid(): void;
static ɵfac: i0.ɵɵFactoryDeclaration<ClrLabel, [{ optional: true; }, { optional: true; }, { optional: true; }, null, null]>;
static ɵdir: i0.ɵɵDirectiveDeclaration<ClrLabel, "label", never, { "forAttr": "for"; }, {}, never, never, false, never>;
}