leptos-forms-rs 1.2.0

🚀 Type-safe, reactive form handling library for Leptos applications. Production-ready with 100% test success rate, cross-browser compatibility, and comprehensive validation. Built with Rust/WASM for high performance.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Form Wizard Example Module - Example implementation of form wizard
//!
//! This module provides a comprehensive example of how to use the FormWizard
//! component with step-by-step form navigation, validation, and completion handling.

pub mod form_types;
pub mod step_components;
pub mod styles;
pub mod wizard_component;

// Re-export public API
pub use form_types::*;
pub use step_components::*;
pub use styles::*;
pub use wizard_component::*;