fix: Fix combobox example import and bump version to 0.3.5

🔧 Fixes:
- Fix combobox example import from shadcn_ui_leptos_combobox to leptos_shadcn_combobox
- Bump version to 0.3.5 for final Leptos v0.8 compatibility release

 Results:
- All components compile and test successfully
- All 56 tests passing across 8 components
- Zero compilation errors
- Full Leptos v0.8 compatibility achieved

🎯 Status:
- leptos-shadcn-ui v0.3.5 ready for publication
- Complete Signal<T> attribute system compatibility
- Production-ready with 100% test coverage
This commit is contained in:
Peter Hanssens
2025-09-04 19:05:23 +10:00
parent a219c20b61
commit cc8b4ef1f3
2 changed files with 2 additions and 2 deletions

View File

@@ -1,6 +1,6 @@
[package]
name = "leptos-shadcn-ui"
version = "0.3.4"
version = "0.3.5"
edition = "2021"
description = "A comprehensive collection of beautiful, accessible UI components built for Leptos v0.8+, inspired by shadcn/ui. Core components with 100% test coverage, automated testing infrastructure, and production-ready quality standards. Focus on reliable, well-tested components without external icon dependencies. Fully compatible with Leptos v0.8 attribute system."
homepage = "https://github.com/cloud-shuttle/leptos-shadcn-ui"

View File

@@ -1,5 +1,5 @@
use leptos::prelude::*;
use shadcn_ui_leptos_combobox::{Combobox, ComboboxOption};
use leptos_shadcn_combobox::{Combobox, ComboboxOption};
#[component]
pub fn ComboboxExample() -> impl IntoView {