1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
//! Core widgets module
//!
//! This module contains platform-agnostic widget types:
//! - Button: Unified button architecture (6 types, 19 variants)
//! - Container: Scrollable and plain containers
//! - Popup: Context menus, color pickers, custom popups
//! - Panel: Large container panels (toolbars, sidebars, modals, hideable)
//! - Overlay: Tooltips and info overlays
//! - TextInput: Text, Number, Search, Password inputs
//! - Dropdown: Standard, Grid, Layout dropdowns
//! - Slider: Single and dual-point sliders (new 5-level architecture)
//! - Toast: Info, Success, Warning, Error notifications
//! - IconButton: Icon-only buttons for toolbars
//! - Checkbox: Checkbox with label
//! - RadioGroup: Radio button group (single selection)
//! - Input: Text input fields with cursor and selection
//! - Scrollbar: Custom scrollbar with drag support
//! - Scrollable: Scrollable container with automatic scrollbar
//! - Toolbar: Toolbar containers
//! - ContextMenu: Right-click context menus
// New 5-level widget modules (migrated from terminal)
// Existing widget modules
// Re-export new widget main types
pub use ButtonType;
pub use ContainerType;
pub use PopupType;
pub use ;
pub use OverlayType;
pub use TextInputType;
pub use DropdownType;
pub use SliderType;
pub use ToastType;
// Re-export all existing widget types and functions
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
pub use *;
// Common widget state types used by render helpers
pub use crateScrollState;