@kushki/ng-suka
Version:
<p align="center"> <h1 align="center">Suka Components Angular</h1> <p align="center"> An Angular implementation of the Suka Design System </p> </p>
23 lines (22 loc) • 717 B
TypeScript
import { AfterContentInit, ElementRef, TemplateRef } from '@angular/core';
export declare class Label implements AfterContentInit {
/**
* Used to build the id of the input item associated with the `Label`.
*/
static labelCounter: number;
/**
* Sets the unique ID. Defaults to `input-${total count of selects instantiated}`
*/
id: string;
labelState: 'success' | 'warning' | 'error' | '';
skeleton: boolean;
helperText: string;
invalidText: string | TemplateRef<any>;
invalid: boolean;
valid: boolean;
wrapper: ElementRef<HTMLDivElement>;
labelClass: boolean;
constructor();
ngAfterContentInit(): void;
isTemplate(value: any): boolean;
}