·
48 commits
to master
since this release
Minor Changes
-
8df363c: feat: add column visibility as an opt-in feature
- Introduced new
reactiveColumnVisibilityfunction - Added ability to manage column visibility (when enabled) through the table's
columnVisibilityproperty with methods for toggling, showing, and hiding columns
BREAKING: Column visibility API has changed -
visibleproperty has been removed from column definitions, visibility methods are now moved to thecolumnVisibilityobject, and some property names have been changed - Introduced new
-
5b60ac5: refactor: simplify API by exposing paginated rows through table.rows and prepare for future features
This refactoring improves the pagination API by moving row management from the pagination component into the core table. Instead of accessing rows through
table.pagination.rows, users now consistently usetable.rowsregardless of active features.Key changes:
- Refactored internal pagination architecture to better separate concerns
- Created a more unified and intuitive API for accessing table rows
- Maintained all pagination functionality and state management
- Updated documentation and examples to reflect the new approach
BREAKING CHANGE: Applications using
table.pagination.rowsmust now usetable.rowsinstead.