schemaui 0.10.2

A Rust library for generating TUI and Web UIs from JSON Schemas for configuration management.
Documentation
1
2
3
4
5
6
7
8
9
10
11
mod builder;
mod bundle;
pub(crate) mod defaults;
pub mod index;
pub(crate) mod layout;
mod types;

pub use builder::build_ui_ast;
pub use bundle::{UiAstBundle, build_ui_ast_bundle};
pub use layout::{LayoutRoot, LayoutSection, UiLayout};
pub use types::{CompositeMode, ScalarKind, UiAst, UiNode, UiNodeKind, UiVariant};