Theia API Documentation v1.65.0
    Preparing search index...
    interface InputProps<T extends HTMLElement = HTMLElement> {
        defaultValue?: string;
        disabled?: boolean;
        id: string;
        label: string;
        onChange?: (event: ChangeEvent) => void;
        onKeyDown?: (event: KeyboardEvent) => void;
        passRef?: LegacyRef<T>;
        placeholder?: string;
        title?: string;
        value?: string;
    }

    Type Parameters

    • T extends HTMLElement = HTMLElement

    Hierarchy (View Summary)

    Index

    Properties

    defaultValue?: string
    disabled?: boolean
    id: string
    label: string
    onChange?: (event: ChangeEvent) => void
    onKeyDown?: (event: KeyboardEvent) => void
    passRef?: LegacyRef<T>
    placeholder?: string
    title?: string
    value?: string