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
18 lines
460 B
Rust
18 lines
460 B
Rust
//! Leptos port of shadcn/ui resizable
|
|
|
|
pub mod default;
|
|
pub mod new_york;
|
|
pub mod resizable;
|
|
|
|
pub use default::{ResizablePanelGroup, ResizablePanel, ResizableHandle};
|
|
pub use new_york::{ResizablePanelGroup as ResizablePanelGroupNewYork, ResizablePanel as ResizablePanelNewYork, ResizableHandle as ResizableHandleNewYork};
|
|
pub use resizable::{
|
|
ResizeDirection, ResizableState, ResizableConfig
|
|
};
|
|
|
|
#[cfg(test)]
|
|
mod tests;
|
|
|
|
#[cfg(test)]
|
|
mod resizable_tests;
|