fix(toolbar-batch-actions): active prop should be reactive (#1445)

Follow-up to #1440
This commit is contained in:
metonym 2022-08-14 14:55:38 -07:00 committed by GitHub
commit b04a281939
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 37 additions and 19 deletions

View file

@ -10,10 +10,10 @@ export interface ToolbarBatchActionsProps
formatTotalSelected?: (totalSelected: number) => string;
/**
* Set to `true` to show the toolbar regardless of row selection
* @default false
* Use a boolean to show or hide the toolbar
* @default undefined
*/
active?: boolean;
active?: undefined | boolean;
}
export default class ToolbarBatchActions extends SvelteComponentTyped<