Use icons for table row actions

This commit is contained in:
Ken Hibino
2020-12-23 14:38:24 -08:00
parent 50639cabb8
commit 1a3c3ffbdd
8 changed files with 271 additions and 114 deletions

View File

@@ -4,12 +4,17 @@ export enum SortDirection {
Desc = "desc",
}
// ColumnConfig is a config for a table column.
//
// T is the enum of sort keys.
export interface ColumnConfig<T> {
label: string;
// TableColumn is a config for a table column.
export interface TableColumn {
key: string;
sortBy: T;
label: string;
align: "left" | "right" | "center";
}
// SortableTableColumn is a config for a table column
// for table with sorting support.
//
// T is the enum of sort keys.
export interface SortableTableColumn<T> extends TableColumn {
sortBy: T;
}