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 / 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: undefined;
    identity: string;
    name: undefined;
    label: undefined;
    placeholderText: undefined;
    shouldAlignRight: undefined;
    labelText: undefined;
    className: undefined;
    errorMessage: undefined;
    errorMessageFor: undefined;
    maxLength: number;
    animatePlaceholder: undefined;
    value: string;
    isEnabled: boolean;
    isFocused: boolean;
    isSelected: boolean;
    isValidInput: boolean;
    validationType: string;
    type: string;
    elementList: never[];
};
/**
 * @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: undefined;
    type: string;
};