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 / AddressPlugins / AddressLinePlugin.d.ts
Size: Mime:
/**
 * @file @todo 2 lines depending on type or props
 */
import * as React from 'react';
import { Value } from '../../typings';
import { InputProps } from '../../inputs/typings';
import { InputState } from '../../inputs/InputState';
export declare type AutoCompleteAddress = 'address-line1' | 'address-line2' | 'address-line3' | 'address-level4' | 'address-level3' | 'address-level2' | 'address-level1' | 'street-address';
declare class AddressLinePlugin extends React.Component<InputProps> {
    static isSatisfiedByProps(props: {
        type: string;
    }): boolean;
    static defaultState: (inputState: InputState<import("../../inputs/typings").AnyObj>) => {
        label: string;
        tooltip: string;
        validator: (value: Value) => string | true;
    };
    render(): JSX.Element;
}
export { AddressLinePlugin };
export default AddressLinePlugin;