UNPKG

primereact

Version:

PrimeReact is an open source UI library for React featuring a rich set of 90+ components, a theme designer, various theme alternatives such as Material, Bootstrap, Tailwind, premium templates and professional support. In addition, it integrates with Prime

345 lines (336 loc) 10.4 kB
/** * * Password displays strength indicator for password fields. * * [Live Demo](https://www.primereact.org/password/) * * @module password * */ import * as React from 'react'; import { CSSTransitionProps as ReactCSSTransitionProps } from 'react-transition-group/CSSTransition'; import { ComponentHooks } from '../componentbase/componentbase'; import { CSSTransitionProps } from '../csstransition'; import { InputText } from '../inputtext'; import { KeyFilterType } from '../keyfilter/keyfilteroptions'; import { PassThroughOptions } from '../passthrough'; import { TooltipOptions } from '../tooltip/tooltipoptions'; import { IconType, PassThroughType } from '../utils/utils'; export declare type PasswordPassThroughType<T> = PassThroughType<T, PasswordPassThroughMethodOptions>; export declare type PasswordPassThroughTransitionType = ReactCSSTransitionProps | ((options: PasswordPassThroughMethodOptions) => ReactCSSTransitionProps) | undefined; /** * Custom passthrough(pt) option method. */ export interface PasswordPassThroughMethodOptions { props: PasswordProps; state: PasswordState; } /** * Custom passthrough(pt) options. * @see {@link PasswordProps.pt} */ export interface PasswordPassThroughOptions { /** * Uses to pass attributes to the root's DOM element. */ root?: PasswordPassThroughType<React.HTMLAttributes<HTMLDivElement>>; /** * Uses to pass attributes to the InputText component. * @see {@link InputTextPassThroughType} */ input?: PasswordPassThroughType<React.HTMLAttributes<HTMLDivElement>>; /** * Uses to pass attributes to the hide icon's DOM element. */ hideIcon?: PasswordPassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement>>; /** * Uses to pass attributes to the show icon's DOM element. */ showIcon?: PasswordPassThroughType<React.SVGProps<SVGSVGElement> | React.HTMLAttributes<HTMLSpanElement>>; /** * Uses to pass attributes to the panel's DOM element. */ panel?: PasswordPassThroughType<React.HTMLAttributes<HTMLDivElement>>; /** * Uses to pass attributes to the meter's DOM element. */ meter?: PasswordPassThroughType<React.HTMLAttributes<HTMLDivElement>>; /** * Uses to pass attributes to the meter label's DOM element. */ meterLabel?: PasswordPassThroughType<React.HTMLAttributes<HTMLDivElement>>; /** * Uses to pass attributes to the info's DOM element. */ info?: PasswordPassThroughType<React.HTMLAttributes<HTMLDivElement>>; /** * Used to manage all lifecycle hooks * @see {@link ComponentHooks} */ hooks?: ComponentHooks; /** * Used to control React Transition API. */ transition?: PasswordPassThroughTransitionType; /** * Uses to pass attributes to the IconField component */ iconField?: PasswordPassThroughType<React.HTMLAttributes<HTMLDivElement>>; } /** * Defines current inline state in Password component. */ export interface PasswordState { /** * Current overlay visible state as a boolean. * @defaultValue false */ overlayVisible: boolean; /** * Current overlay visible state as a boolean. * @see {@link PasswordMeterStateOptions} */ meter: PasswordMeterStateOptions; /** * Current info test state as a string. */ infoText: string; /** * Current focused state as a boolean. * @defaultValue false */ focused: boolean; /** * Current unmasked state as a boolean. * @defaultValue false */ unmasked: boolean; } export interface PasswordMeterStateOptions { /** * Current strength of the meter state as a string. */ strength: string; /** * Current width of the meter state as a string. */ width: string; } /** * Custom icon event * @see {@link PasswordProps.icon} * @event */ interface PasswordIconEvent { /** * Click event for the default element. */ onClick(): void; /** * Style class of the default element. */ className: string; /** * Default element created by the component. */ element: JSX.Element; /** * All component props. */ props: PasswordProps; } /** * Defines valid properties in Password component. In addition to these, all properties of HTMLDivElement can be used in this component. * @group Properties */ export interface PasswordProps extends Omit<React.DetailedHTMLProps<React.InputHTMLAttributes<HTMLInputElement>, HTMLInputElement>, 'onInput' | 'ref' | 'content' | 'pt'> { /** * Identifier of the input element. */ inputId?: string | undefined; /** * Reference of the input element. */ inputRef?: React.Ref<HTMLInputElement> | undefined; /** * Inline style of the input field. */ inputStyle?: React.CSSProperties | undefined; /** * Style class of the input field. */ inputClassName?: string | undefined; /** * When present, it specifies that the component should have invalid state style. * @defaultValue false */ invalid?: boolean | undefined; /** * Specifies the input variant of the component. * @defaultValue outlined */ variant?: 'outlined' | 'filled' | undefined; /** * Hide icon template. */ hideIcon?: IconType<PasswordProps> | undefined; /** * Show icon template. */ showIcon?: IconType<PasswordProps> | undefined; /** * Text to prompt password entry. * @defaultValue Please enter a password */ promptLabel?: string | undefined; /** * Text for a weak password. * @defaultValue Weak */ weakLabel?: string | undefined; /** * Text for a medium password. * @defaultValue Medium */ mediumLabel?: string | undefined; /** * Text for a strong password. * @defaultValue Strong */ strongLabel?: string | undefined; /** * Regex for a medium level password. * @defaultValue ^(((?=.*[a-z])(?=.*[A-Z]))|((?=.*[a-z])(?=.*[0-9]))|((?=.*[A-Z])(?=.*[0-9])))(?=.&#123;6,&#125;). */ mediumRegex?: string | undefined; /** * Regex for a strong level password. * @defaultValue ^(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])(?=.&#123;8,&#125;) */ strongRegex?: string | undefined; /** * Whether to show the strength indicator or not. * @defaultValue true */ feedback?: boolean | undefined; /** * Whether to show an icon to display the password as plain text. * @defaultValue false */ toggleMask?: boolean | undefined; /** * DOM element instance where the overlay panel should be mounted. Valid values are any DOM Element and 'self'. The self value is used to render a component where it is located. * @defaultValue document.body */ appendTo?: 'self' | HTMLElement | undefined | null | (() => HTMLElement); /** * Template of panel header if "feedback" is enabled. */ header?: React.ReactNode | ((props: PasswordProps) => React.ReactNode); /** * Template of panel content if "feedback" is enabled. */ content?: React.ReactNode | ((props: PasswordProps) => React.ReactNode); /** * Template of panel footer if "feedback" is enabled. */ footer?: React.ReactNode | ((props: PasswordProps) => React.ReactNode); /** * Template of mask icon if "toggleMask" is enabled. */ icon?: React.ReactNode | ((event: PasswordIconEvent) => React.ReactNode); /** * Content of the tooltip. */ tooltip?: string | undefined; /** * Configuration of the tooltip, refer to the tooltip documentation for more information. */ tooltipOptions?: TooltipOptions | undefined; /** * Format definition of the keys to block. */ keyfilter?: KeyFilterType | undefined; /** * Inline style of the overlay panel element. */ panelStyle?: React.CSSProperties | undefined; /** * Style class of the overlay panel element. */ panelClassName?: string | undefined; /** * The properties of CSSTransition can be customized, except for "nodeRef" and "in" properties. */ transitionOptions?: CSSTransitionProps | undefined; /** * Callback to invoke on input event of input field. * @param {React.FormEvent<HTMLInputElement>} event - Browser event * @param {boolean} validatePattern - Whether to validate the value */ onInput?(event: React.FormEvent<HTMLInputElement>, validatePattern: boolean): void; /** * Callback to invoke when overlay becomes visible. */ onShow?(): void; /** * Callback to invoke when overlay becomes hidden. */ onHide?(): void; /** * Used to get the child elements of the component. * @readonly */ children?: React.ReactNode | undefined; /** * Uses to pass attributes to DOM elements inside the component. * @type {PasswordPassThroughOptions} */ pt?: PasswordPassThroughOptions; /** * Used to configure passthrough(pt) options of the component. * @type {PassThroughOptions} */ ptOptions?: PassThroughOptions; /** * When enabled, it removes component related styles in the core. * @defaultValue false */ unstyled?: boolean; } /** * **PrimeReact - Password** * * _Password displays strength indicator for password fields._ * * [Live Demo](https://www.primereact.org/password/) * --- --- * ![PrimeReact](https://primefaces.org/cdn/primereact/images/logo-100.png) * * @group Component */ export declare class Password extends React.Component<PasswordProps, any> { /** * Used to focus the component. */ public focus(): void; /** * Toggle the mask on or off. */ public toggleMask(): void; /** * Used to get container element. * @return {HTMLDivElement | null} Container element */ public getElement(): HTMLDivElement | null; /** * Used to get input element. * @return {HTMLInputElement | null} Input element */ public getInput(): typeof InputText | null; /** * Used to get overlay element. * @return {HTMLElement | null} Overlay element */ public getOverlay(): HTMLElement | null; }