jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
//! Interaction configuration and resolved editor policy.

mod defaults;
mod interaction;
mod keys;
mod state;
mod types;

pub use self::interaction::{NodeGraphEditorConfig, NodeGraphInteractionConfig};
pub use self::keys::{NodeGraphDeleteKey, NodeGraphKeyCode};
pub use self::state::{
    NodeGraphConnectionInteraction, NodeGraphDeleteInteraction, NodeGraphFrameViewInteraction,
    NodeGraphInteractionState, NodeGraphKeyboardInteraction, NodeGraphNodeDragInteraction,
    NodeGraphPanInteraction, NodeGraphRenderingInteraction, NodeGraphSelectionInteraction,
    NodeGraphZoomInteraction,
};
pub use self::types::{
    NodeGraphBoxSelectEdges, NodeGraphNodeOrigin, NodeGraphNudgeStepMode,
    NodeGraphPanOnDragButtons, NodeGraphPanOnScrollMode, NodeGraphSelectionMode,
    NodeGraphViewportEase,
};