jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
//! On-disk wrapper formats, view state, and editor configuration.

mod config;
mod files;
mod tuning;
mod view_state;

pub use config::{
    NodeGraphBoxSelectEdges, NodeGraphConnectionInteraction, NodeGraphDeleteInteraction,
    NodeGraphDeleteKey, NodeGraphEditorConfig, NodeGraphFrameViewInteraction,
    NodeGraphInteractionConfig, NodeGraphInteractionState, NodeGraphKeyCode,
    NodeGraphKeyboardInteraction, NodeGraphNodeDragInteraction, NodeGraphNodeOrigin,
    NodeGraphNudgeStepMode, NodeGraphPanInteraction, NodeGraphPanOnDragButtons,
    NodeGraphPanOnScrollMode, NodeGraphRenderingInteraction, NodeGraphSelectionInteraction,
    NodeGraphSelectionMode, NodeGraphViewportEase, NodeGraphZoomInteraction,
};
pub use files::{
    EDITOR_STATE_FILE_VERSION, GRAPH_FILE_VERSION, GraphFileError, GraphFileV1,
    NodeGraphEditorStateFile, NodeGraphEditorStateFileError,
};
pub use jellyflow_core::interaction::{
    NodeGraphConnectionMode, NodeGraphDragHandleMode, NodeGraphModifierKey, NodeGraphModifiers,
};
pub use tuning::{
    NodeGraphAutoPanTuning, NodeGraphPaintCachePruneTuning, NodeGraphPanInertiaTuning,
    NodeGraphRuntimeTuning, NodeGraphSpatialIndexTuning,
};
pub use view_state::{NodeGraphPureViewState, NodeGraphViewState};

#[cfg(test)]
mod tests;