UNPKG

primeng

Version:

[![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT) [![npm version](https://badge.fury.io/js/primeng.svg)](https://badge.fury.io/js/primeng) [![Build Status](https://travis-ci.org/primefaces/primeng.

30 lines (29 loc) 809 B
import { ElementRef, OnDestroy, DoCheck, NgZone } from '@angular/core'; export declare class Password implements OnDestroy, DoCheck { el: ElementRef; zone: NgZone; promptLabel: string; weakLabel: string; mediumLabel: string; strongLabel: string; feedback: boolean; showPassword: boolean; panel: HTMLDivElement; meter: any; info: any; filled: boolean; constructor(el: ElementRef, zone: NgZone); ngDoCheck(): void; onInput(e: any): void; updateFilledState(): void; createPanel(): void; onFocus(e: any): void; onBlur(e: any): void; onKeyup(e: any): void; testStrength(str: string): number; normalize(x: any, y: any): number; readonly disabled: boolean; ngOnDestroy(): void; } export declare class PasswordModule { }