refactor(web): trim data table hook return API

- return only the TanStack table instance from useDataTable.
- keep internal state handling private because callers do not consume it directly.
This commit is contained in:
QuentinHsu
2026-06-10 09:11:12 +08:00
parent 503447103c
commit 2d978cc314
-10
View File
@@ -227,15 +227,5 @@ export function useDataTable<TData>(options: UseDataTableOptions<TData>) {
return {
table,
sorting,
onSortingChange,
columnVisibility,
onColumnVisibilityChange,
rowSelection,
onRowSelectionChange,
expanded,
onExpandedChange,
pagination,
onPaginationChange,
}
}