Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-06-05 13:34:21 -07:00
commit a1b43801c9
3 changed files with 38 additions and 0 deletions

View file

@ -85,6 +85,18 @@ export interface DataTableProps
*/
sortable?: boolean;
/**
* Specify the header key to sort by
* @default null
*/
sortKey?: DataTableKey;
/**
* Specify the sort direction
* @default "none"
*/
sortDirection?: "none" | "ascending" | "descending";
/**
* Set to `true` for the expandable variant
* Automatically set to `true` if `batchExpansion` is `true`