Skip to main content

jellyflow_runtime/runtime/
mod.rs

1//! B-layer runtime building blocks.
2//!
3//! This module is intentionally **headless-safe**: it must not depend on `fret-ui`.
4//! The goal is to provide a stable, ergonomic "runtime/store" surface without coupling to
5//! a specific rendering or widget layer. XyFlow-compatible projections live in [`xyflow`].
6
7pub mod auto_pan;
8pub mod binding;
9pub mod commit;
10pub mod conformance;
11pub mod connection;
12pub mod create_node;
13pub mod delete;
14pub mod drag;
15pub mod events;
16pub mod fit_view;
17pub mod geometry;
18pub mod gesture;
19pub mod keyboard;
20pub mod layout;
21pub mod lookups;
22pub mod measurement;
23pub mod middleware;
24pub mod policy;
25pub(crate) mod query;
26pub mod rendering;
27pub mod resize;
28pub mod selection;
29pub mod store;
30pub mod utils;
31pub mod viewport;
32pub mod xyflow;
33
34#[cfg(test)]
35mod tests;