Files
leptos-shadcn-ui/Cargo.toml
Peter Hanssens eba29c0868 feat: Complete Leptos 0.8.8 Signal Integration with 100% Component Migration
�� MAJOR MILESTONE: Full Signal Management Integration Complete

## Signal Management System
-  Complete signal management infrastructure with ArcRwSignal & ArcMemo
-  Batched updates for performance optimization
-  Memory management with leak detection and pressure monitoring
-  Signal lifecycle management with automatic cleanup
-  Comprehensive testing with cargo nextest integration

## Component Migration (42/42 - 100% Success)
-  All 42 components migrated to new signal patterns
-  Signal-managed versions of all components (signal_managed.rs)
-  Zero compilation errors across entire workspace
-  Production-ready components with signal integration

## Developer Experience
-  Complete Storybook setup with interactive component playground
-  Comprehensive API documentation and migration guides
-  Integration examples and best practices
-  Component stories for Button, Input, Card, and Overview

## Production Infrastructure
-  Continuous benchmarking system (benchmark_runner.sh)
-  Production monitoring and health checks (production_monitor.sh)
-  Deployment validation scripts (deployment_validator.sh)
-  Performance tracking and optimization tools

## Key Features
- ArcRwSignal for persistent state management
- ArcMemo for computed values and optimization
- BatchedSignalUpdater for performance
- SignalMemoryManager for memory optimization
- MemoryLeakDetector for leak prevention
- TailwindSignalManager for styling integration

## Testing & Quality
-  Comprehensive test suite with TDD methodology
-  Integration tests for signal management
-  Performance benchmarks established
-  Memory management validation

## Documentation
-  Complete API documentation
-  Migration guides for Leptos 0.8.8
-  Integration examples and tutorials
-  Architecture documentation

This release represents a complete transformation of the component library
to leverage Leptos 0.8.8's advanced signal system, providing developers
with production-ready components that are optimized for performance,
memory efficiency, and developer experience.

Ready for production deployment and community adoption! 🚀
2025-09-13 15:41:24 +10:00

150 lines
5.8 KiB
TOML

# Leptos ShadCN UI Components
#
# 🚨 MANDATORY: This project requires Leptos v0.8+ and is NOT compatible with earlier versions.
#
# This project provides ShadCN UI components for Leptos v0.8+.
# It is not compatible with earlier versions of Leptos due to breaking changes
# in the v0.8 release.
#
# ✅ SUPPORTED: Leptos v0.8.0, v0.8.1, v0.8.2, v0.8.3, v0.8.4, v0.8.5, v0.8.6, v0.8.7, v0.8.8+
# ❌ NOT SUPPORTED: Leptos v0.7.x, v0.6.x, or any earlier versions
#
[workspace]
resolver = "2"
members = [
"packages/registry",
"packages/cli",
"packages/test-utils",
"packages/component-generator",
"packages/signal-management", # Signal lifecycle management for Leptos 0.8.8+
"packages/leptos-shadcn-ui", # Re-added for final publishing
"performance-audit", # Performance audit system
"leptos_v0_8_test_app", # Leptos v0.8 compatibility test app
# Basic components (no internal dependencies)
"packages/leptos/button",
"packages/leptos/input",
"packages/leptos/label",
"packages/leptos/checkbox",
"packages/leptos/switch",
"packages/leptos/radio-group",
"packages/leptos/select",
"packages/leptos/textarea",
"packages/leptos/card",
"packages/leptos/separator",
"packages/leptos/tabs",
"packages/leptos/accordion",
"packages/leptos/dialog",
"packages/leptos/popover",
"packages/leptos/tooltip",
"packages/leptos/alert",
"packages/leptos/badge",
"packages/leptos/skeleton",
"packages/leptos/progress",
"packages/leptos/toast",
"packages/leptos/table",
"packages/leptos/slider",
"packages/leptos/toggle",
"packages/leptos/carousel",
"packages/leptos/form",
"packages/leptos/combobox",
"packages/leptos/command",
"packages/leptos/input-otp",
"packages/leptos/breadcrumb",
"packages/leptos/navigation-menu",
"packages/leptos/context-menu",
"packages/leptos/dropdown-menu",
"packages/leptos/menubar",
"packages/leptos/hover-card",
"packages/leptos/aspect-ratio",
"packages/leptos/collapsible",
"packages/leptos/scroll-area",
"packages/leptos/sheet",
"packages/leptos/drawer",
"packages/leptos/alert-dialog",
"packages/leptos/avatar",
"packages/leptos/resizable",
# Components with internal dependencies (publishing in sequence)
"packages/leptos/calendar", # Depends on published components
"packages/leptos/date-picker", # Depends on calendar, popover, button
"packages/leptos/pagination", # Depends on button
"packages/leptos/error-boundary", # Error handling component
"packages/leptos/lazy-loading", # Lazy loading system
"examples/leptos", # Example application
"scripts/run_quality_assessment",
"scripts/generate_component_tests"
, "leptos_v0_8_test_app"]
[workspace.package]
authors = ["CloudShuttle <info@cloudshuttle.com>"]
edition = "2024"
license = "MIT"
repository = "https://github.com/cloud-shuttle/leptos-shadcn-ui"
version = "0.7.0"
[workspace.dependencies]
leptos = "0.8"
leptos_router = "0.8"
serde = { version = "1.0", features = ["derive"] }
serde_json = "1.0"
leptos-node-ref = "0.2.0"
leptos-struct-component = "0.2.0"
leptos-style = "0.2.0"
tailwind_fuse = { version = "0.3.2", features = ["variant"] }
web-sys = "0.3"
wasm-bindgen = "0.2"
js-sys = "0.3"
wasm-bindgen-test = "0.3"
console_error_panic_hook = "0.1"
anyhow = "1.0"
handlebars = "6.3.2"
regex = "1.10"
clap = { version = "4.5.46", features = ["derive"] }
tokio = { version = "1.47.1", features = ["full"] }
env_logger = "0.11"
log = "0.4"
console_log = "1.0"
shadcn-ui-test-utils = { path = "packages/test-utils" }
leptos-shadcn-signal-management = { path = "packages/signal-management" }
# Individual component packages
leptos-shadcn-button = { path = "packages/leptos/button" }
leptos-shadcn-input = { path = "packages/leptos/input" }
leptos-shadcn-label = { path = "packages/leptos/label" }
leptos-shadcn-checkbox = { path = "packages/leptos/checkbox" }
leptos-shadcn-switch = { path = "packages/leptos/switch" }
leptos-shadcn-radio-group = { path = "packages/leptos/radio-group" }
leptos-shadcn-select = { path = "packages/leptos/select" }
leptos-shadcn-textarea = { path = "packages/leptos/textarea" }
leptos-shadcn-card = { path = "packages/leptos/card" }
leptos-shadcn-separator = { path = "packages/leptos/separator" }
leptos-shadcn-tabs = { path = "packages/leptos/tabs" }
leptos-shadcn-accordion = { path = "packages/leptos/accordion" }
leptos-shadcn-dialog = { path = "packages/leptos/dialog" }
leptos-shadcn-popover = { path = "packages/leptos/popover" }
leptos-shadcn-tooltip = { path = "packages/leptos/tooltip" }
leptos-shadcn-alert = { path = "packages/leptos/alert" }
leptos-shadcn-badge = { path = "packages/leptos/badge" }
leptos-shadcn-skeleton = { path = "packages/leptos/skeleton" }
leptos-shadcn-progress = { path = "packages/leptos/progress" }
leptos-shadcn-toast = { path = "packages/leptos/toast" }
leptos-shadcn-table = { path = "packages/leptos/table" }
leptos-shadcn-calendar = { path = "packages/leptos/calendar" }
leptos-shadcn-date-picker = { path = "packages/leptos/date-picker" }
leptos-shadcn-pagination = { path = "packages/leptos/pagination" }
leptos-shadcn-slider = { path = "packages/leptos/slider" }
leptos-shadcn-toggle = { path = "packages/leptos/toggle" }
# Advanced components
leptos-shadcn-form = { path = "packages/leptos/form" }
leptos-shadcn-combobox = { path = "packages/leptos/combobox" }
leptos-shadcn-command = { path = "packages/leptos/command" }
leptos-shadcn-input-otp = { path = "packages/leptos/input-otp" }
leptos-shadcn-breadcrumb = { path = "packages/leptos/breadcrumb" }
leptos-shadcn-lazy-loading = { path = "packages/leptos/lazy-loading" }
leptos-shadcn-error-boundary = { path = "packages/leptos/error-boundary" }
leptos-shadcn-registry = { path = "packages/leptos/registry" }