Fix lint and build

This commit is contained in:
Adria Navarro 2025-03-13 16:19:33 +01:00
parent aec137525e
commit c98cfd519b
2 changed files with 4 additions and 1 deletions

View File

@ -2,7 +2,7 @@
import { setContext, getContext } from "svelte"
import Popover from "../Popover/Popover.svelte"
import Menu from "../Menu/Menu.svelte"
import { PopoverAlignment } from "../constants"
import type { PopoverAlignment } from "../constants"
export let disabled: boolean = false
export let align: `${PopoverAlignment}` = "left"

View File

@ -3,3 +3,6 @@ import { ActionMenu } from "./types"
declare module "svelte" {
export function getContext(key: "actionMenu"): ActionMenu | undefined
}
export const Modal = "bbui-modal"
export const PopoverRoot = "bbui-popover-root"