updating docs

This commit is contained in:
Naegelin 2022-08-12 10:53:52 +02:00
commit 10a0fde3c8
3 changed files with 22 additions and 3 deletions

View file

@ -8,6 +8,12 @@ export interface ToolbarBatchActionsProps
* @default (totalSelected) => `${totalSelected} item${totalSelected === 1 ? "" : "s"} selected`
*/
formatTotalSelected?: (totalSelected: number) => string;
/**
* Set to `true` to show the toolbar regardless of row selection
* @default false
*/
active?: boolean;
}
export default class ToolbarBatchActions extends SvelteComponentTyped<