input-rs 0.2.6

🔤 A highly customizable input component for WASM frameworks like Yew, Dioxus, and Leptos.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#![doc(
    html_logo_url = "https://raw.githubusercontent.com/opensass/input-rs/refs/heads/main/assets/logo-new.png",
    html_favicon_url = "https://raw.githubusercontent.com/opensass/input-rs/refs/heads/main/assets/favicon.png"
)]
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

pub(crate) mod countries;
#[cfg(feature = "dio")]
pub mod dioxus;
#[cfg(feature = "lep")]
pub mod leptos;
#[cfg(feature = "yew")]
pub mod yew;