Member Junction
    Preparing search index...

    Interface AfterEventHoverArgs<T>

    Arguments for the afterEventHover event. Emitted after hover state changes on a timeline event card.

    interface AfterEventHoverArgs<T = any> {
        domEvent?: Event;
        errorMessage?: string;
        event: MJTimelineEvent<T>;
        group: TimelineGroup<T>;
        hoverState: "enter" | "leave";
        index: number;
        success: boolean;
    }

    Type Parameters

    • T = any

      The type of the source record

    Hierarchy (View Summary)

    Index

    Properties

    domEvent?: Event

    The original DOM event, if applicable. May be undefined for programmatic triggers.

    errorMessage?: string

    Error message if the operation failed. Only populated when success is false.

    The timeline event being interacted with.

    The source group this event belongs to.

    hoverState: "enter" | "leave"

    The hover state that was applied.

    index: number

    Index of this event within the flattened events array.

    success: boolean

    Whether the operation completed successfully. Will be false if an error occurred during the operation.