Member Junction
    Preparing search index...

    Interface QueryParamChangeEvent

    Event emitted when query params change on a tab (e.g., from browser back/forward). Includes the tab ID so that only the component in the affected tab reacts, preventing cross-tab leakage in multi-tab scenarios.

    interface QueryParamChangeEvent {
        Force?: boolean;
        Params: Record<string, string>;
        TabId: string;
    }
    Index

    Properties

    Properties

    Force?: boolean

    Bypass the receiving component's duplicate-delivery guard. Set by explicit restore navigations (e.g. the origin crumb): the component's state may have DRIFTED from the last-delivered params, in which case a restore to those same params would otherwise be dropped as a duplicate.

    Params: Record<string, string>
    TabId: string