mirror of
https://github.com/cloud-shuttle/leptos-shadcn-ui.git
synced 2025-12-22 22:00:00 +00:00
- Updated all 49 sub-component crates to version 0.4.0 - Updated all internal dependencies to use 0.4.0 versions - Prepared for batch publishing to crates.io This version includes: - Sonner toast notifications with TDD - Advanced data table with sorting/filtering - Resizable panel component - Enhanced date picker integration - Full Leptos v0.8 compatibility - 100% test coverage for all components
34 lines
893 B
TOML
34 lines
893 B
TOML
[package]
|
|
name = "leptos-shadcn-form"
|
|
description = "Leptos port of shadcn/ui Form component"
|
|
homepage = "https://shadcn-ui.rustforweb.org/components/form.html"
|
|
|
|
authors.workspace = true
|
|
edition.workspace = true
|
|
license.workspace = true
|
|
repository.workspace = true
|
|
version = "0.4.0"
|
|
|
|
[dependencies]
|
|
leptos.workspace = true
|
|
leptos-style = "0.2"
|
|
web-sys = { version = "0.3", features = ["HtmlFormElement", "HtmlInputElement", "HtmlElement", "Element", "Node", "Event", "EventTarget", "SubmitEvent"] }
|
|
wasm-bindgen = "0.2"
|
|
tailwind_fuse = "0.1"
|
|
leptos-shadcn-input = "0.2.0"
|
|
leptos-shadcn-button = "0.2.0"
|
|
gloo-timers = "0.3"
|
|
leptos-struct-component = "0.2"
|
|
|
|
[dev-dependencies]
|
|
shadcn-ui-test-utils = { path = "../../test-utils" }
|
|
wasm-bindgen-test = { workspace = true }
|
|
|
|
[lib]
|
|
name = "leptos_shadcn_form"
|
|
path = "src/lib.rs"
|
|
|
|
[[example]]
|
|
name = "form_example"
|
|
path = "examples/form_example.rs"
|