//! Import/analysis workflow modal screens: configure import, progress, tagging, analysis config, //! analysis progress, tag suggestion review, and error summary. mod configure; mod progress; mod summary; mod tagging; /// Shared wizard step labels for the import flow. The step rail renders on every /// screen of the flow (including the progress screens) so the "where am I / how /// much is left" cue never vanishes mid-flow (P5). pub(super) const WIZARD_STEPS: &[&str] = &["Configure", "Tag folders", "Analyze", "Review"]; pub use configure::{draw_configure_analysis, draw_configure_import}; pub use progress::{draw_analysis_progress, draw_cleanup_progress, draw_import_progress, draw_operation_cancelled}; pub use summary::draw_review_errors; pub use tagging::{draw_review_suggestions, draw_tag_folders};