LWT JavaScript API
    Preparing search index...

    Step 3 component data interface.

    interface FeedWizardStep3Data {
        config: Step3Config;
        currentXPath: string;
        filterSelectors: { id: string; isHighlighted: boolean; xpath: string }[];
        hideImages: boolean;
        hostStatus: string;
        isMinimized: boolean;
        markActionOptions: XPathOption[];
        selectedFeedIndex: number;
        selectionMode: string;
        settingsOpen: boolean;
        store: FeedWizardStoreState;
        bindContentClickHandler(): void;
        cancel(): void;
        cancelAdvanced(): void;
        changeHideImages(): void;
        changeSelectedFeed(): void;
        changeSelectMode(): void;
        deleteSelector(id: string): void;
        destroy(): void;
        filterSelection(): void;
        generateOptionsForElement(element: HTMLElement): void;
        getAdvanced(): void;
        goBack(): void;
        goNext(): void;
        handleContentClick(event: MouseEvent): void;
        handleMarkActionChange(event: Event): void;
        handleSelectedClick(target: HTMLElement): void;
        init(): void;
        openAdvancedMode(element: HTMLElement): void;
        toggleMinimize(): void;
        toggleSelectorHighlight(id: string): void;
        updateHighlighting(): void;
    }
    Index

    Properties

    config: Step3Config
    currentXPath: string
    filterSelectors: { id: string; isHighlighted: boolean; xpath: string }[]
    hideImages: boolean
    hostStatus: string
    isMinimized: boolean
    markActionOptions: XPathOption[]
    selectedFeedIndex: number
    selectionMode: string
    settingsOpen: boolean

    Methods