entviz — @entviz/core & @entviz/react API
    Preparing search index...

    Interface EntvizWalkProps

    interface EntvizWalkProps {
        className?: string;
        externalFigures?: boolean;
        fontSizePt?: number;
        layout?: EntvizLayout;
        mode?: WalkMode;
        note?: string | null;
        onComplete?: (status: WalkStatus) => void;
        onEvent?: (e: EntvizEvent) => void;
        onStep?: (step: WalkStep | null) => void;
        reference: string;
        rng?: () => number;
        style?: CSSProperties;
        targetAr?: number;
        value: string;
    }
    Index
    className?: string
    externalFigures?: boolean

    When true, DON'T render the two figures — the host draws them and overlays the rings itself (the comparator reuses its static pair). The walk still renders its controls/probe/verdict and reports the current step via onStep.

    fontSizePt?: number
    layout?: EntvizLayout

    Figure arrangement (default "side-by-side").

    mode?: WalkMode

    Pre-select a mode (skips the picker); otherwise the user declares one.

    note?: string | null
    onComplete?: (status: WalkStatus) => void
    onEvent?: (e: EntvizEvent) => void

    The typed event firehose (see events.ts). Notify-only, in addition to onStep/onComplete (walk.start / walk.step / walk.complete).

    onStep?: (step: WalkStep | null) => void

    Reports the feature currently being checked (or null), so a host using externalFigures can ring it on its own figures.

    reference: string

    The reference, as a value we can render (M2b: value-vs-value).

    rng?: () => number

    A [0,1) source standing in for the walk's unpredictable check ORDER — the platform CSPRNG by default; a seeded source in tests/repro demos. PROD GATE (§5.4): compiled out of production via safeRng — a prod bundle always uses the platform CSPRNG regardless of an injected rng, so a predictable order can't be shipped to defeat the unpredictable-sampling defense.

    style?: CSSProperties
    targetAr?: number
    value: string