Skip to content

Release v3.1.0

Choose a tag to compare

@github-actions github-actions released this 16 Aug 16:19
fa4cb4a

Added

  • DataTableCore is now exported from @cratis/components/DataTables, so an application can render rows it already holds — fetched by hand, computed, or assembled from several sources — with Column children, selection, filtering and scrolling, without driving a query through DataTableForQuery or DataTableForObservableQuery.

This matters for the PrimeReact 11 migration. Version 10's DataTable took a value array with Column children; version 11 replaces it with a headless compound surface (Root, Table, THead, Row, Cell) and removes Column entirely, so every array-driven table would otherwise have to be reassembled by hand at each call site.

The component is unchanged — it is what both query wrappers already render internally, and was simply never re-exported.