The breadcrumb action creators.

interface BreadcrumbActionCreators {
    deselectAllBreadcrumbs(): { payload: void; type: string };
    deselectAllNonBreadcrumbs(): { payload: void; type: string };
}

Methods

  • Deselects active breadcrumb values across all facets and static filters.

    Returns { payload: void; type: string }

    A dispatchable action.

  • Deselects active filters that are not listed in breadcrumbs across facets and static filters which have the option hasBreadcrumbs set to false.

    Returns { payload: void; type: string }

    A dispatchable action.