Interface HonuaInteractionControlComponentExperimental

A control addressed as control:{id}. A control's change event is read off the shared exploration filter slice keyed by the control's id — that is the same seam bindFilterControlsToExploration writes through, so a filter bar wired with that primitive needs no extra adapter here.

interface HonuaInteractionControlComponent {
    setFilter?(clause: undefined | FilterClause): void;
    setVisibility?(visible: boolean): void;
}

Methods