Release v3.1.0
Added
DataTableCoreis now exported from@cratis/components/DataTables, so an application can render rows it already holds — fetched by hand, computed, or assembled from several sources — withColumnchildren, selection, filtering and scrolling, without driving a query throughDataTableForQueryorDataTableForObservableQuery.
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.