Interface HonuaSelectionProviderPropsExperimental

interface HonuaSelectionProviderProps {
    children?: ReactNode;
    onSelectionChange?: ((selected: readonly SourceQualifiedFeatureSelectionTarget[]) => void);
    store?: HonuaSelectionStore;
}

Properties

children?: ReactNode
onSelectionChange?: ((selected: readonly SourceQualifiedFeatureSelectionTarget[]) => void)

Observe every selection change (fires after the state updates).

Optional externally-owned store — share one across providers or pre-seed it in tests. Omit to let the provider own a fresh store.