-
Notifications
You must be signed in to change notification settings - Fork 1
ui list react Overview
GitHub Action edited this page May 21, 2026
·
1 revision
This package provides high-level React components to display collections of Quatrain DataObjects in dynamic tables, lists, and grids.
-
Dynamic Columns: Automatically infers column headers and data types from the Quatrain
ModelClassproperties. -
Pagination & Filtering: Integrates tightly with the
@quatrain/api-clientto automatically handleoffset,batch, andwherequery operations via UI controls. -
Mantine Integration: Heavily utilizes
@quatrain/ui(Mantine) for beautiful, cohesive design right out of the box.
import { DynamicList } from '@quatrain/ui-list-react';
<DynamicList
modelId="user-model-123"
onRowClick={(item) => console.log('Clicked:', item)}
/>(Documentation will be expanded as the components are built out)