UI Headless Runtime API - v1.0.0
    Preparing search index...

    Interface CommandPaletteSnapshot

    Immutable Command Palette snapshot.

    interface CommandPaletteSnapshot {
        activeId: string | null;
        commands: readonly Readonly<CommandItem>[];
        empty: boolean;
        open: boolean;
        openControlled: boolean;
        query: string;
        queryControlled: boolean;
    }
    Index

    Properties

    activeId: string | null

    Keyboard-active command ID.

    commands: readonly Readonly<CommandItem>[]

    Score-ordered matching commands.

    empty: boolean

    Whether no enabled command matches the query.

    open: boolean

    Modal dialog open state.

    openControlled: boolean

    Whether open state is consumer-owned.

    query: string

    Current search query.

    queryControlled: boolean

    Whether query state is consumer-owned.