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    
ui-component-library / dist / typings / src / forms / input / _fixture.d.ts
Size: Mime:
export declare const toggleTypes: ReadonlyArray<string>;
export declare const validTypes: ReadonlyArray<string>;
/**
 * @todo - should add .toObj like we did in oneproduct
 */
export declare const types: {
    _identifier: any;
    identity: string;
    name: any;
    label: any;
    placeholderText: any;
    shouldAlignRight: any;
    labelText: any;
    className: any;
    errorMessage: any;
    errorMessageFor: any;
    maxLength: number;
    animatePlaceholder: any;
    value: string;
    isEnabled: boolean;
    isFocused: boolean;
    isSelected: boolean;
    isValidInput: boolean;
    validationType: string;
    type: string;
    elementList: any[];
};
/**
 * @todo - Object.freeze if not changing
 * @todo - lint type if it is not in here
 * @name inputTypeMap
 */
export declare const inputTypes: {
    groupElement: string;
};
export declare const defaultProps: {
    className: string;
    classList: {
        wrap: string;
        input: string;
    };
    placeholderText: string;
    state: any;
    type: string;
};