leptos-forms-rs 1.3.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
//! Form Analysis Module - Form metadata and statistics utilities
//!
//! This module provides utilities for analyzing forms including
//! field metadata, statistics, and form structure analysis.

pub mod field_metadata;
pub mod form_statistics;

// Re-export public API
pub use field_metadata::*;
pub use form_statistics::*;