Fix popover click outside handler when clicking siblings

This commit is contained in:
Maxime Fafard 2022-12-01 11:06:06 -05:00
commit 3a52b5b903
4 changed files with 46 additions and 3 deletions

View file

@ -60,6 +60,6 @@ export interface PopoverProps
export default class Popover extends SvelteComponentTyped<
PopoverProps,
{ ["click:outside"]: CustomEvent<null> },
{ ["click:outside"]: CustomEvent<{ target: HTMLElement }> },
{ default: {} }
> {}