jellyflow-runtime 0.2.0

Headless store, rules, schema, profile, and change pipeline for Jellyflow.
Documentation
//! B-layer runtime building blocks.
//!
//! This module is intentionally **headless-safe**: it must not depend on `fret-ui`.
//! The goal is to provide a stable, ergonomic "runtime/store" surface without coupling to
//! a specific rendering or widget layer. XyFlow-compatible projections live in [`xyflow`].

pub mod auto_pan;
pub mod binding;
pub mod commit;
pub mod conformance;
pub mod connection;
pub mod create_node;
pub mod delete;
pub mod drag;
pub mod events;
pub mod fit_view;
pub mod geometry;
pub mod gesture;
pub mod keyboard;
pub mod layout;
pub mod lookups;
pub mod measurement;
pub mod middleware;
pub mod policy;
pub(crate) mod query;
pub mod rendering;
pub mod resize;
pub mod selection;
pub mod store;
pub mod utils;
pub mod viewport;
pub mod xyflow;

#[cfg(test)]
mod tests;