@hmiproject/helio-sdk
    Preparing search index...

    Type Alias TextInputProps

    type TextInputProps = {
        autoFocus?: boolean;
        defaultValue?: string;
        disabled?: boolean;
        invalid?: boolean;
        leftItems?: ReactNode;
        placeholder?: string;
        readOnly?: boolean;
        rightItems?: ReactNode;
        style?: CSSProperties;
        type?: React.HTMLInputTypeAttribute;
        value?: string;
        onBlur?(event: FocusEvent): void;
        onChange(nextValue: string): void;
        onFocus?(event: FocusEvent): void;
    }
    Index

    Properties

    autoFocus?: boolean
    defaultValue?: string
    disabled?: boolean
    invalid?: boolean
    leftItems?: ReactNode
    placeholder?: string
    readOnly?: boolean
    rightItems?: ReactNode
    style?: CSSProperties
    type?: React.HTMLInputTypeAttribute
    value?: string

    Methods