fret-ui 0.1.0

Mechanism-layer UI engine for Fret with tree, layout, focus, routing, and interaction contracts.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//! Text subsystem modules for the UI runtime.
//!
//! These are retained/widget-like editing engines (IME/caret/selection) that need hard-to-change
//! behavior contracts and platform-facing hooks. UI policy should remain in ecosystem crates.

#[allow(dead_code)]
pub(crate) mod area;
pub(crate) mod coords;
pub(crate) mod edit;
#[allow(dead_code)]
pub(crate) mod input;
pub(crate) mod input_style;
pub(crate) mod props;
pub(crate) mod surface;

pub use area::TextAreaStyle;
pub use input_style::TextInputStyle;