ShowcaseDocs and examples

One surface, one shared state, two column configs: the table renders the full column set with headers while the list renders a condensed card config (order, customer, status, total) with no visible field labels — the labels move to meta.hiddenHeaderLabel, so they stay screen-reader-only in the list. Sort a shared column in the table, toggle to the list, and the sort keeps applying.

Minimal example

<!-- One surface, one state — a different column config per renderer. -->
<nat-table-surface [enableSorting]="true" [(state)]="state">
  @if (view() === 'table') {
    <nat-table [columns]="tableColumns" [data]="rows" accessibleName="Orders" />
  } @else {
    <nat-list [columns]="listColumns" [data]="rows" accessibleName="Orders" />
  }
</nat-table-surface>
// component.ts — the list gets a condensed config with the same column ids,
// so shared state (sorting on a shared column) keeps applying. Moving the
// visible label to meta.hiddenHeaderLabel removes the field labels from the
// list only (they stay screen-reader-only); the table keeps its headers.
protected readonly tableColumns = orderColumns;
protected readonly listColumns = orderColumns
  .filter((column) => ['id', 'customer', 'status', 'total'].includes(column.accessorKey))
  .map((column) => ({
    ...column,
    meta: { ...column.meta, label: undefined, hiddenHeaderLabel: column.meta?.label }
  }));

Showing 12 rows across 9 visible columns.

Use arrow keys to move between cells. A cell whose only content is a single button or link focuses it directly. In cells with several controls, press Enter to interact with them, Tab to move forward between them, Shift+Tab to move backward, and Escape to return to the cell.

ORD-10000 Summit Crest Summit Crest Logistics Online West Ready 5 Jun 1 $1,500
ORD-10001 Beacon Tech Beacon Tech Labs Retail Midwest Review 12 Jun 2 $5,400
ORD-10002 Horizon Ventures Horizon Ventures Group Wholesale Northeast Queued 19 Jun 3 $11,400
ORD-10003 Vanguard Systems Vanguard Systems Corp Online South Ready 26 Jun 4 $19,500
ORD-10004 Zenith Logistics Zenith Logistics Services Retail West Review 33 Jun 5 $29,700
ORD-10005 Quantum Energy Quantum Energy Group Wholesale Midwest Queued 40 Jun 6 $42,000
ORD-10006 Pacific Trade Pacific Trade & Supply Online Northeast Ready 47 Jun 7 $56,400
ORD-10007 Caliber Manufacturing Caliber Manufacturing Co Retail South Review 9 Jun 8 $12,150
ORD-10008 Summit Crest Summit Crest Logistics Wholesale West Queued 16 Jun 9 $24,000
ORD-10009 Beacon Tech Beacon Tech Labs Online Midwest Ready 23 Jun 10 $37,950
ORD-10010 Horizon Ventures Horizon Ventures Group Retail Northeast Review 30 Jun 11 $9,000
ORD-10011 Vanguard Systems Vanguard Systems Corp Wholesale South Queued 37 Jun 12 $16,650