33 lines
1.0 KiB
Svelte
33 lines
1.0 KiB
Svelte
<script lang="ts">
|
|
import { cn } from "$lib/utils.js";
|
|
import { Popover as PopoverPrimitive } from "bits-ui";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
sideOffset = 4,
|
|
align = "center",
|
|
portalProps,
|
|
...restProps
|
|
}: PopoverPrimitive.ContentProps & {
|
|
portalProps?: PopoverPrimitive.PortalProps;
|
|
} = $props();
|
|
</script>
|
|
|
|
<PopoverPrimitive.Portal {...portalProps}>
|
|
<PopoverPrimitive.Content
|
|
bind:ref
|
|
data-slot="popover-content"
|
|
{sideOffset}
|
|
{align}
|
|
class={cn(
|
|
"bg-based text-text outline-hidden z-50 w-72 rounded-md border border-surface-1 p-4 shadow-md",
|
|
|
|
// Animation
|
|
"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-right-2 data-[side=right]:slide-in-from-left-2 data-[side=top]:slide-in-from-bottom-2 origin-(--bits-popover-content-transform-origin)",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
/>
|
|
</PopoverPrimitive.Portal>
|