Files
leptos-shadcn-ui/packages/leptos/combobox/Cargo.toml
Peter Hanssens 83f3ebad83 feat: Update all component crates to v0.8.0 with signal management integration
🎉 MAJOR UPDATE: All 49 Component Crates Updated to v0.8.0

## What's New in v0.8.0
-  Complete signal management integration with ArcRwSignal & ArcMemo
-  Signal-managed versions of all components (signal_managed.rs)
-  Performance optimizations with batched updates
-  Memory management and leak detection
-  Enhanced APIs with backward compatibility
-  Updated dependencies to use published signal management crate

## Updated Components (49 total)
- All individual component crates bumped from 0.7.0 → 0.8.0
- Dependencies updated to reference leptos-shadcn-signal-management v0.1.0
- Ready for publication to crates.io

## Breaking Changes
- None! All existing APIs remain backward compatible
- New signal-managed APIs are additive features

## Ready for Publication
- All crates validated and ready for crates.io
- Signal management features now available to community
- Production-ready components with advanced signal integration

This release represents the culmination of the Leptos 0.8.8 signal integration
project, making advanced signal management features available to all users! 🚀
2025-09-13 15:55:57 +10:00

33 lines
921 B
TOML

[package]
name = "leptos-shadcn-combobox"
description = "Leptos port of shadcn/ui Combobox component"
homepage = "https://shadcn-ui.rustforweb.org/components/combobox.html"
authors.workspace = true
edition.workspace = true
license.workspace = true
repository.workspace = true
version = "0.8.0"
[dependencies]
leptos.workspace = true
leptos-style = "0.2"
web-sys = { version = "0.3", features = ["HtmlInputElement", "HtmlElement", "Element", "Node", "NodeList", "Event", "EventTarget", "MouseEvent", "KeyboardEvent", "FocusEvent"] }
wasm-bindgen = "0.2"
tailwind_fuse = "0.1"
gloo-timers = "0.3"
leptos-struct-component = "0.2"
leptos-shadcn-signal-management = "0.1.0"
[dev-dependencies]
shadcn-ui-test-utils = { path = "../../test-utils" }
wasm-bindgen-test = { workspace = true }
[lib]
name = "leptos_shadcn_combobox"
path = "src/lib.rs"
[[example]]
name = "combobox_example"
path = "examples/combobox_example.rs"