rnk 0.17.3

A React-like declarative terminal UI framework for Rust, inspired by Ink
Documentation
mod alert;
mod cursor;
mod devtools;
mod help;
mod modal;
mod notification;
mod popover;
mod spinner;
mod status_bar;
mod stepper;
mod tooltip;

pub use alert::{Alert, AlertLevel};
pub use cursor::{Cursor, CursorShape, CursorState, CursorStyle};
pub use devtools::{DevTools, DevToolsTab};
pub use help::{
    Help, HelpMode, HelpStyle, KeyBinding, editor_help, navigation_help, vim_navigation_help,
};
pub use modal::{Dialog, DialogState, Modal, ModalAlign};
pub use notification::{
    Notification, NotificationBorder, NotificationItem, NotificationLevel, NotificationPosition,
    NotificationState, NotificationStyle, Toast,
};
pub use popover::{Popover, PopoverArrow, PopoverBorder, PopoverPosition, PopoverStyle};
pub use spinner::{Spinner, SpinnerBuilder};
pub use status_bar::StatusBar;
pub use stepper::{Step, StepStatus, Stepper, StepperOrientation, StepperStyle};
pub use tooltip::{Tooltip, TooltipPosition};