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/ui / dist / forms / input / plugins / Text / TextInput.d.ts
Size: Mime:
import { InputChain } from 'src/forms/input/InputChain';
declare class TextBoxInput extends InputChain {
    /**
     * this handles all text inputs, and is the default
     * @note !!!! added || true so it is always the fallback
     */
    static isSatisfiedByProps(props: any): boolean;
    validate: () => void;
    render(): JSX.Element;
}
export { TextBoxInput };
export default TextBoxInput;