Run "yarn build:docs"

This commit is contained in:
Eric Liu 2022-08-17 07:29:45 -07:00
commit 61f0f9a2ee
3 changed files with 10 additions and 0 deletions

View file

@ -191,6 +191,10 @@ export default class DataTable extends SvelteComponentTyped<
header: DataTableHeader;
sortDirection?: "ascending" | "descending" | "none";
}>;
["click:header--select"]: CustomEvent<{
indeterminate: boolean;
selected: boolean;
}>;
["click:row"]: CustomEvent<DataTableRow>;
["mouseenter:row"]: CustomEvent<DataTableRow>;
["mouseleave:row"]: CustomEvent<DataTableRow>;