2024-04-29 17:03:23 +02:00
|
|
|
<script lang="ts">
|
|
|
|
|
import { ContextMenu as ContextMenuPrimitive } from "bits-ui";
|
2025-06-08 16:32:41 +02:00
|
|
|
import { cn } from "$lib/utils.js";
|
2024-04-29 17:03:23 +02:00
|
|
|
|
2025-06-08 16:32:41 +02:00
|
|
|
let {
|
|
|
|
|
ref = $bindable(null),
|
|
|
|
|
portalProps,
|
|
|
|
|
class: className,
|
|
|
|
|
...restProps
|
|
|
|
|
}: ContextMenuPrimitive.ContentProps & {
|
|
|
|
|
portalProps?: ContextMenuPrimitive.PortalProps;
|
|
|
|
|
} = $props();
|
2024-04-29 17:03:23 +02:00
|
|
|
</script>
|
|
|
|
|
|
2025-06-08 16:32:41 +02:00
|
|
|
<ContextMenuPrimitive.Portal {...portalProps}>
|
|
|
|
|
<ContextMenuPrimitive.Content
|
|
|
|
|
bind:ref
|
|
|
|
|
class={cn(
|
|
|
|
|
"bg-popover text-popover-foreground z-50 min-w-[8rem] rounded-md border p-1 shadow-md focus:outline-none",
|
|
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
{...restProps}
|
|
|
|
|
/>
|
|
|
|
|
</ContextMenuPrimitive.Portal>
|