torque-pro-assistant - v1.0.0
    Preparing search index...
    interface PickStageProps {
        colors: readonly string[];
        max: number;
        onPick: (ids: readonly string[]) => void;
        seededIds: readonly string[];
        sessions: readonly Session[];
        testId?: string;
        units: UnitsPreference;
    }
    Index

    Properties

    colors: readonly string[]

    Hex / CSS var palette per chip color, indexed by selection order.

    max: number

    Hard cap on the number of sessions that can be picked.

    onPick: (ids: readonly string[]) => void

    Caller commits the picked ids (writes them to the URL).

    seededIds: readonly string[]

    Currently-picked ids — used to seed the local selection so the picker survives a re-render driven by a URL change.

    sessions: readonly Session[]

    All sessions in the library, in display order.

    testId?: string