Skip to content

Commit

Permalink
feat: revamp && init add WASM frameworks support && add all MDN `inpu…
Browse files Browse the repository at this point in the history
…t` attributes (#11)
  • Loading branch information
wiseaidev committed Dec 6, 2024
1 parent 43fe98f commit a0f9ae2
Show file tree
Hide file tree
Showing 47 changed files with 1,960 additions and 1,959 deletions.
31 changes: 21 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,27 +1,38 @@
[package]
name = "input_yew"
version = "0.1.10"
description = "A feature-rich, accessible, highly customizable, functional, reusable input component for the Yew framework."
name = "input-rs"
version = "0.2.0"
edition = "2021"
rust-version = "1.79"
description = "A feature-rich, accessible, highly customizable, functional, reusable input component for Wasm Frameworks."
license = "Apache-2.0"
keywords = ["input", "yew", "rust", "input_yew"]
repository = "https://github.com/wiseaidev/input-yew"
documentation = "https://docs.rs/input_yew/"
keywords = ["input", "yew", "dioxus", "leptos", "input-rs"]
categories = ["web-programming", "science"]
repository = "https://github.com/opensass/input-rs"
documentation = "https://docs.rs/input-rs/"
authors = ["Mahmoud Harmouch <[email protected]>"]
edition = "2021"
exclude = ["/assets", "/examples"]
exclude = ["assets", "examples"]

# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html

[dependencies]
web-sys = { version = "0.3.64", default-features = false }
yew = { version = "0.21.0", default-features = false }
yew = { version = "0.21.0", default-features = false, optional = true }

[dev-dependencies]
regex = "1.10.2"
serde = { version = "1.0.193", features = ["derive"] }

[features]
yew = ["dep:yew"]

[profile.release]
codegen-units = 1
opt-level = "z"
debug = false
lto = "thin"
codegen-units = 1
panic = "abort"
strip = "symbols"
incremental = false

[badges]
maintenance = { status = "actively-developed" }
233 changes: 137 additions & 96 deletions README.md

Large diffs are not rendered by default.

Binary file added assets/favicon.ico
Binary file not shown.
Binary file modified assets/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
185 changes: 0 additions & 185 deletions examples/tailwind/src/components/contact_form_one.rs

This file was deleted.

Loading

0 comments on commit a0f9ae2

Please sign in to comment.