UNPKG

@porsche-design-system/components-angular

Version:

Porsche Design System is a component library designed to help developers create the best experience for software or services distributed by Dr. Ing. h.c. F. Porsche AG.

30 lines (29 loc) 2.19 kB
import { EventEmitter } from '@angular/core'; import { BaseComponentWithTheme } from '../../utils'; import type { InputPasswordAutoComplete, BreakpointCustomizable, InputPasswordState, Theme } from '../types'; import * as i0 from "@angular/core"; export declare class PInputPassword extends BaseComponentWithTheme { autoComplete?: InputPasswordAutoComplete; compact?: boolean; description?: string; disabled?: boolean; form?: string; hideLabel?: BreakpointCustomizable<boolean>; label?: string; maxLength?: number; message?: string; minLength?: number; name: string; placeholder?: string; readOnly?: boolean; required?: boolean; state?: InputPasswordState; theme?: Theme; toggle?: boolean; value?: string; blur: EventEmitter<CustomEvent<Event>>; change: EventEmitter<CustomEvent<Event>>; input: EventEmitter<CustomEvent<InputEvent>>; static ɵfac: i0.ɵɵFactoryDeclaration<PInputPassword, never>; static ɵcmp: i0.ɵɵComponentDeclaration<PInputPassword, "p-input-password,[p-input-password]", never, { "autoComplete": { "alias": "autoComplete"; "required": false; }; "compact": { "alias": "compact"; "required": false; }; "description": { "alias": "description"; "required": false; }; "disabled": { "alias": "disabled"; "required": false; }; "form": { "alias": "form"; "required": false; }; "hideLabel": { "alias": "hideLabel"; "required": false; }; "label": { "alias": "label"; "required": false; }; "maxLength": { "alias": "maxLength"; "required": false; }; "message": { "alias": "message"; "required": false; }; "minLength": { "alias": "minLength"; "required": false; }; "name": { "alias": "name"; "required": false; }; "placeholder": { "alias": "placeholder"; "required": false; }; "readOnly": { "alias": "readOnly"; "required": false; }; "required": { "alias": "required"; "required": false; }; "state": { "alias": "state"; "required": false; }; "theme": { "alias": "theme"; "required": false; }; "toggle": { "alias": "toggle"; "required": false; }; "value": { "alias": "value"; "required": false; }; }, { "blur": "blur"; "change": "change"; "input": "input"; }, never, ["*"], false, never>; }