This commit is contained in:
Adria Navarro 2025-03-24 12:45:08 +01:00
parent 87b11f3c48
commit 2b2b6951f2
2 changed files with 2 additions and 1 deletions

View File

@ -3,7 +3,7 @@
import Icon from "../Icon/Icon.svelte"
const dispatch = createEventDispatcher()
const actionMenu = getContext("actionMenu") as { hideAll: () => void }
const actionMenu = getContext("actionMenu")
export let icon: string | undefined = undefined
export let disabled: boolean | undefined = undefined

View File

@ -1,3 +1,4 @@
export interface ActionMenu {
hide: () => void
hideAll: () => void
}