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 / TextAreaPlugin / TextAreaPlugin.d.ts
Size: Mime:
import * as React from 'react';
import { InputProps, InputRenderProps, InputState } from '../../inputs';
import { Value } from '../../typings';
export declare class TextAreaPlugin extends React.Component<InputProps> {
    static isSatisfiedByProps(props: {
        type: string;
    }): boolean;
    static defaultState: (inputState: InputState<import("../../inputs/typings").AnyObj>) => {
        validator: (value: Value) => string | true;
    };
    renderWrap: (props: InputRenderProps) => JSX.Element;
    renderInput: (props: InputRenderProps) => JSX.Element;
    render(): JSX.Element;
}