blessed-components - v1.20.0
    Preparing search index...

    Interface RenderComboboxOptions<TItem>

    Options accepted by renderCombobox.

    interface RenderComboboxOptions<TItem extends ComboboxItem = ComboboxItem> {
        activeId?: string;
        characters?: ComboboxCharacters;
        emptyText?: string;
        height: number;
        items: readonly TItem[];
        offset?: number;
        open?: boolean;
        placeholder?: string;
        query?: string;
        value?: string;
        width: number;
    }

    Type Parameters

    Index

    Properties

    activeId?: string
    characters?: ComboboxCharacters
    emptyText?: string
    height: number
    items: readonly TItem[]
    offset?: number
    open?: boolean
    placeholder?: string
    query?: string
    value?: string
    width: number