jellyflow-runtime 0.1.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
//! Renderer-neutral node dragging helpers.
//!
//! These helpers turn canvas-space drag intent into normal graph transactions without depending on
//! pointer capture, DOM state, windowing, or renderer APIs.

mod activation;
mod candidates;
mod constraints;
mod parent_expansion;
mod planner;
mod pointer_gesture;
mod store;
mod types;

pub use activation::{NodeDragActivationInput, node_drag_threshold_met};
pub use planner::{plan_node_drag, plan_node_nudge};
pub use pointer_gesture::{
    PointerGestureClaim, PointerGestureClaimInput, resolve_pointer_gesture_claim,
};
pub use types::{
    NODE_DRAG_TRANSACTION_LABEL, NODE_NUDGE_TRANSACTION_LABEL, NodeDragItem, NodeDragPlan,
    NodeDragRequest, NodeNudgeDirection, NodeNudgePlan, NodeNudgeRequest,
};