LWT JavaScript API
    Preparing search index...

    Panel state interface for Alpine.js component.

    interface LocalDictPanelState {
        error: string | null;
        loading: boolean;
        panelElement: HTMLElement | null;
        results: LocalDictResult[];
        term: string;
        visible: boolean;
        hide(): void;
        show(langId: number, term: string): Promise<void>;
        toggle(): void;
    }
    Index

    Properties

    error: string | null
    loading: boolean
    panelElement: HTMLElement | null
    results: LocalDictResult[]
    term: string
    visible: boolean

    Methods