alf_tui 0.5.0

A smolderingly-nimble Rust TUI to rediscover your custom shell.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! State management modules

pub mod data;
pub mod filter;
pub mod input;
pub mod navigation;
pub mod scroll;
pub mod search;
pub mod ui;

// Re-export commonly used types for convenience
pub use data::EntryData;
pub use filter::{EntryFilter, FilterState, GroupMode, SortOrder};
pub use input::{InputMode, InputState};
pub use navigation::NavigationState;
pub use scroll::ScrollManager;
pub use search::SearchState;
pub use ui::{Panel, UiState};