2026-03-06 17:03:35 +01:00
|
|
|
<script lang="ts">
|
2026-03-07 10:49:35 +01:00
|
|
|
import { Popover as PopoverPrimitive } from "bits-ui";
|
|
|
|
|
import PopoverPortal from "./popover-portal.svelte";
|
|
|
|
|
import { cn, type WithoutChildrenOrChild } from "$lib/utils.js";
|
|
|
|
|
import type { ComponentProps } from "svelte";
|
2026-03-06 17:03:35 +01:00
|
|
|
|
2026-03-07 10:49:35 +01:00
|
|
|
let {
|
|
|
|
|
ref = $bindable(null),
|
|
|
|
|
class: className,
|
|
|
|
|
sideOffset = 4,
|
|
|
|
|
align = "center",
|
|
|
|
|
portalProps,
|
|
|
|
|
...restProps
|
|
|
|
|
}: PopoverPrimitive.ContentProps & {
|
|
|
|
|
portalProps?: WithoutChildrenOrChild<ComponentProps<typeof PopoverPortal>>;
|
|
|
|
|
} = $props();
|
2026-03-06 17:03:35 +01:00
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<PopoverPortal {...portalProps}>
|
2026-03-07 10:49:35 +01:00
|
|
|
<PopoverPrimitive.Content
|
|
|
|
|
bind:ref
|
|
|
|
|
data-slot="popover-content"
|
|
|
|
|
{sideOffset}
|
|
|
|
|
{align}
|
|
|
|
|
class={cn(
|
|
|
|
|
"bg-popover text-popover-foreground data-[state=open]:animate-in data-[state=closed]:animate-out data-[state=closed]:fade-out-0 data-[state=open]:fade-in-0 data-[state=closed]:zoom-out-95 data-[state=open]:zoom-in-95 data-[side=bottom]:slide-in-from-top-2 data-[side=left]:slide-in-from-end-2 data-[side=right]:slide-in-from-start-2 data-[side=top]:slide-in-from-bottom-2 z-50 w-72 origin-(--bits-popover-content-transform-origin) rounded-md border p-4 shadow-md outline-hidden",
|
|
|
|
|
className,
|
|
|
|
|
)}
|
|
|
|
|
{...restProps}
|
|
|
|
|
/>
|
2026-03-06 17:03:35 +01:00
|
|
|
</PopoverPortal>
|