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
//! Event handling system for Leptos Forms
//!
//! This module provides a comprehensive event handling system for form management,
//! including form submission, reset, field changes, and validation events.

pub mod event_handlers;
pub mod event_system;
pub mod event_types;
pub mod field_event_handlers;

// Re-export public API
pub use event_handlers::*;
pub use event_system::*;
pub use event_types::*;
pub use field_event_handlers::*;