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
16
//! DevTools module - Development tools for form debugging and monitoring
//!
//! This module provides comprehensive development tools for debugging, monitoring,
//! and inspecting forms during development. It includes form state inspection,
//! performance monitoring, and debug utilities.

pub mod debug;
pub mod inspector;
pub mod performance;
pub mod types;

// Re-export public API
pub use debug::*;
pub use inspector::*;
pub use performance::*;
pub use types::*;