feat(ui-shell): add preventCloseOnClickOutside to HeaderAction (#1625)

Closes #1624
This commit is contained in:
Nestor Orest Plysyuk 2023-07-13 16:37:21 +02:00 committed by GitHub
commit ea9b261b60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 36 additions and 9 deletions

View file

@ -43,6 +43,12 @@ export interface HeaderActionProps
*/
transition?: false | import("svelte/transition").SlideParams;
/**
* Set to `true` to prevent the panel from closing when clicking outside
* @default false
*/
preventCloseOnClickOutside?: boolean;
[key: `data-${string}`]: any;
}