ShowcaseDocs and examples

The smallest list composition: a surface for the state scope and the list itself — no table involved. Fields render stacked in column order with labels resolved from the column defs.

Minimal example

<!-- Minimal composition: the surface provides the state scope, the list renders. -->
<nat-table-surface>
  <nat-list [columns]="columns" [data]="rows" accessibleName="Orders" />
</nat-table-surface>
// component.ts — columns are the same TanStack ColumnDefs the table uses;
// field labels come from meta.label (falling back to a string header).
protected readonly rows = orderRows;
protected readonly columns: ColumnDef<Order, unknown>[] = [
  { accessorKey: 'id', header: 'Order', meta: { label: 'Order' } },
  { accessorKey: 'customer', header: 'Customer', meta: { label: 'Customer' } }
  // ...
];

Showing 8 items across 9 visible fields.

  • Order ORD-10000
    Customer Summit Crest
    Company Summit Crest Logistics
    Channel Online
    Region West
    Status Ready
    Items 5
    Updated Jun 1
    Total $1,500
  • Order ORD-10001
    Customer Beacon Tech
    Company Beacon Tech Labs
    Channel Retail
    Region Midwest
    Status Review
    Items 12
    Updated Jun 2
    Total $5,400
  • Order ORD-10002
    Customer Horizon Ventures
    Company Horizon Ventures Group
    Channel Wholesale
    Region Northeast
    Status Queued
    Items 19
    Updated Jun 3
    Total $11,400
  • Order ORD-10003
    Customer Vanguard Systems
    Company Vanguard Systems Corp
    Channel Online
    Region South
    Status Ready
    Items 26
    Updated Jun 4
    Total $19,500
  • Order ORD-10004
    Customer Zenith Logistics
    Company Zenith Logistics Services
    Channel Retail
    Region West
    Status Review
    Items 33
    Updated Jun 5
    Total $29,700
  • Order ORD-10005
    Customer Quantum Energy
    Company Quantum Energy Group
    Channel Wholesale
    Region Midwest
    Status Queued
    Items 40
    Updated Jun 6
    Total $42,000
  • Order ORD-10006
    Customer Pacific Trade
    Company Pacific Trade & Supply
    Channel Online
    Region Northeast
    Status Ready
    Items 47
    Updated Jun 7
    Total $56,400
  • Order ORD-10007
    Customer Caliber Manufacturing
    Company Caliber Manufacturing Co
    Channel Retail
    Region South
    Status Review
    Items 9
    Updated Jun 8
    Total $12,150