rnk 0.17.3

A React-like declarative terminal UI framework for Rust, inspired by Ink
Documentation
//! Core types and abstractions

mod color;
mod component;
mod element;
mod style;
mod vnode;

pub use color::{
    AdaptiveColor, Color, adaptive_colors, detect_background, init_background_detection,
    is_dark_background, set_dark_background,
};
pub use component::{Component, ComponentInstance, StatelessComponent};
pub use element::{Children, Element, ElementId, ElementType};
pub use style::{
    AlignItems, AlignSelf, BorderStyle, Dimension, Display, Edges, FlexDirection, JustifyContent,
    Overflow, Position, Style, TextWrap,
};
pub use vnode::{NodeKey, Props, VNode, VNodeType};