Member Junction
    Preparing search index...

    Interface WhiteboardWidgetInteractionRecord

    One recorded in-widget interaction, as posted by the injected recorder.

    interface WhiteboardWidgetInteractionRecord {
        kind: WhiteboardWidgetInteractionKind;
        tag?: string;
        target: string;
        value?: string;
    }
    Index

    Properties

    Properties

    What happened.

    tag?: string

    The clicked element's tag name (click only).

    target: string

    Best label of the interacted element (aria-label || name || id || text, ≤40 chars).

    value?: string

    The field's value after the event (change/input only; checkbox → 'checked'/'unchecked').