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

    Interface NavigationListHandle<TItem>

    Imperative handle returned by navigationList.

    interface NavigationListHandle<
        TItem extends NavigationListItem = NavigationListItem,
    > {
        activateFocused(): string | undefined;
        focus(): void;
        focusItem(id: string): string | undefined;
        focusedId(): string | undefined;
        first(): string | undefined;
        last(): string | undefined;
        next(): string | undefined;
        pageBackward(): string | undefined;
        pageForward(): string | undefined;
        previous(): string | undefined;
        value(): string | undefined;
        element: BoxElement;
        destroy(): void;
        setData(data: NavigationListData): void;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index

    Properties

    element: BoxElement

    Underlying Blessed element available for standard element operations.

    Methods