skill-web 0.3.0

Web interface for Skill Engine - built with Yew and WebAssembly
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Run page components module

mod skill_selector;
mod tool_selector;
mod wizard_stepper;
mod command_palette;
mod inline_parameter_editor;
mod terminal_output;

pub use skill_selector::SkillSelector;
pub use tool_selector::ToolSelector;
pub use wizard_stepper::WizardStepper;
pub use command_palette::{CommandPalette, SuggestionItem};
pub use inline_parameter_editor::InlineParameterEditor;
pub use terminal_output::TerminalOutput;

// Re-export WizardStep from hooks for convenience
pub use crate::hooks::WizardStep;