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 chrome;
10pub mod commit;
11pub mod conformance;
12pub mod connection;
13pub mod create_node;
14pub mod delete;
15pub mod drag;
16pub mod events;
17pub mod fit_view;
18pub mod geometry;
19pub mod gesture;
20pub mod keyboard;
21pub mod layout;
22pub mod lookups;
23pub mod measurement;
24pub mod middleware;
25pub mod policy;
26pub(crate) mod query;
27pub mod rendering;
28pub mod resize;
29pub mod selection;
30pub mod store;
31pub mod utils;
32pub mod viewport;
33pub mod xyflow;
34
35#[cfg(test)]
36mod tests;