Member Junction
    Preparing search index...

    Event emitted when a user triggers a custom or built-in action button on a node card.

    interface NodeActionEvent<T = Record<string, unknown>> {
        Action: string;
        Node: HierarchyNodeData<T>;
    }

    Type Parameters

    • T = Record<string, unknown>
    Index

    Properties

    Properties

    Action: string

    The identifier of the action (e.g. 'open', 'add-child', 'focus', 'reparent').

    The node on which the action was invoked.