Documentation - v0.0.19
    Preparing search index...

    Interface IInputProps

    interface IInputProps {
        className?: string;
        defaultValue?: string;
        disabled?: boolean;
        maxLength?: number;
        onBlur?: FocusEventHandler<HTMLInputElement>;
        onChange?: ChangeEventHandler<HTMLInputElement>;
        onFocus?: FocusEventHandler<HTMLInputElement>;
        onKeyDown?: KeyboardEventHandler<HTMLInputElement>;
        onPressEnter?: KeyboardEventHandler<HTMLInputElement>;
        placeholder?: string;
        size?: "small" | "middle" | "large";
        style?: CSSProperties;
        type?: "number" | "search" | "url" | "text" | "email" | "tel" | "password";
        value?: string;
    }
    Index

    Properties

    className?: string
    defaultValue?: string
    disabled?: boolean
    maxLength?: number

    Max character length

    onBlur?: FocusEventHandler<HTMLInputElement>
    onChange?: ChangeEventHandler<HTMLInputElement>
    onFocus?: FocusEventHandler<HTMLInputElement>
    onKeyDown?: KeyboardEventHandler<HTMLInputElement>
    onPressEnter?: KeyboardEventHandler<HTMLInputElement>
    placeholder?: string
    size?: "small" | "middle" | "large"

    Visual size of the input

    style?: CSSProperties
    type?: "number" | "search" | "url" | "text" | "email" | "tel" | "password"

    Input type attribute

    value?: string