npm_run_scripts/tui/widgets/mod.rs
1//! Custom widgets for the TUI.
2//!
3//! This module contains specialized widgets for rendering the nrs interface.
4
5mod description;
6mod filter;
7mod footer;
8mod header;
9mod scripts;
10
11pub use description::{Description, ErrorDisplay};
12pub use filter::{ArgsFilter, Filter};
13pub use footer::{Footer, MessageFooter};
14pub use header::{truncate_with_ellipsis, Header};
15pub use scripts::{EmptyScripts, ScriptsGrid};