Documentation / @zerotal/admin / index / CellAlign
Type Alias: CellAlign
CellAlign =
"start"|"center"|"end"
Defined in: admin/src/table/Column.ts:14
Fluent table-column builder.
text("name").label("Full name").sortable().searchable() text("status").badge((v) => v === "active" ? "success" : "muted") text("created_at").since()
A Column is a declarative description; the list page turns it into a
@zerotal/flow-ui TableColumn (with a cell renderer) at render time.