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
//! Contextual help system with tooltips and guided tours.
//!
//! This module provides tooltip widgets and a guided tour system that
//! integrate with the focus system to display contextual help.
//!
//! # Features
//!
//! - **Tooltips**: Floating help text near focused widgets with configurable
//! positioning, delay, and auto-dismiss behavior.
//!
//! - **Guided Tours**: Step-by-step onboarding walkthroughs with spotlight
//! highlighting, progress tracking, and completion persistence.
//!
//! # Example
//!
//! ```ignore
//! use ftui_extras::help::{Tour, TourStep, TourState, Spotlight};
//!
//! // Define a tour
//! let tour = Tour::new("onboarding")
//! .add_step(TourStep::new("Welcome").content("Let's get started!"))
//! .add_step(TourStep::new("Search").content("Find items here.").target_widget(1));
//!
//! // Start the tour
//! let mut state = TourState::new();
//! state.start(tour);
//!
//! // Render spotlight for current step
//! if let Some(step) = state.current_step() {
//! let spotlight = Spotlight::new()
//! .title(&step.title)
//! .content(&step.content);
//! // spotlight.render(...)
//! }
//! ```
pub use ;
pub use ;
pub use ;