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 / src / new-forms / plugins / EmailPlugin.d.ts
Size: Mime:
/**
 * @todo @anto @sriaarthi
 * @todo renderIcon before @mohan
 */
import * as React from 'react';
import { Value } from '../typings';
import { InputProps } from '../inputs/typings';
import { InputState } from '../inputs/InputState';
declare class EmailPlugin extends React.Component<InputProps> {
    static isSatisfiedByProps(props: {
        type: string;
    }): boolean;
    static defaultState: (inputState: InputState<import("../inputs/typings").AnyObj>) => {
        validator: (value: Value) => string | true;
    };
    render(): JSX.Element;
}
export { EmailPlugin };
export default EmailPlugin;