Files
leptos-shadcn-ui/packages/leptos/table/src/lib.rs
Peter Hanssens 454ffa0274 Bump all component versions to 0.4.0
- 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
2025-09-04 20:24:34 +10:00

20 lines
403 B
Rust

//! Leptos port of shadcn/ui table
pub mod default;
pub mod new_york;
pub mod data_table;
pub use default::{Table};
pub use new_york::{Table as TableNewYork};
pub use data_table::{
DataTable, DataRow, DataColumn, DataTableState,
SortDirection, FilterType, FilterOperator, SelectionMode, ExportFormat,
ColumnFilter, RowAction
};
#[cfg(test)]
mod tests;
#[cfg(test)]
mod data_table_tests;