Axinom Mosaic Libraries
    Preparing search index...

    Interface FiltersHandle

    Imperative handle exposed to consumers of the Filters component through a ref, allowing them to control the component programmatically.

    interface FiltersHandle {
        collapse: () => void;
        isExpanded: boolean;
        toggleExpanded: () => void;
    }
    Index

    Properties

    collapse: () => void

    Collapses the currently expanded filter, if any.

    isExpanded: boolean

    Returns whether any filter is currently expanded.

    toggleExpanded: () => void

    Toggles the expanded state of the filter.