Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
@skava/forms / build / dist / new-forms / plugins / PasswordPlugin / PasswordPlugin.d.ts
Size: Mime:
import * as React from 'react';
import { InputProps } from '../../inputs';
export declare type PasswordAutoComplete = 'current-password' | 'new-password' | 'password';
declare class PasswordPlugin extends React.Component<InputProps> {
    static isSatisfiedByProps(props: {
        type: string;
    }): boolean;
    /**
     * @todo can also do this 1 level up and toggle for both confirm and normal
     */
    handleToggle: (event?: any) => void;
    componentWillUnmount(): void;
    render(): JSX.Element;
}
export { PasswordPlugin };
export default PasswordPlugin;