mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-03-27 17:56:36 +00:00
31 lines
801 B
Svelte
31 lines
801 B
Svelte
<script lang="ts">
|
|
import { DropdownMenu as DropdownMenuPrimitive } from "bits-ui";
|
|
import { cn, flyAndScale } from "$lib/utils/style.js";
|
|
|
|
type $$Props = DropdownMenuPrimitive.SubContentProps;
|
|
type $$Events = DropdownMenuPrimitive.SubContentEvents;
|
|
|
|
let className: $$Props["class"] = undefined;
|
|
export let transition: $$Props["transition"] = flyAndScale;
|
|
export let transitionConfig: $$Props["transitionConfig"] = {
|
|
x: -10,
|
|
y: 0,
|
|
};
|
|
export { className as class };
|
|
</script>
|
|
|
|
<DropdownMenuPrimitive.SubContent
|
|
{transition}
|
|
{transitionConfig}
|
|
class={cn(
|
|
"z-50 min-w-[8rem] rounded-md border bg-popover p-1 text-popover-foreground shadow-lg focus:outline-none",
|
|
className
|
|
)}
|
|
{...$$restProps}
|
|
on:keydown
|
|
on:focusout
|
|
on:pointermove
|
|
>
|
|
<slot />
|
|
</DropdownMenuPrimitive.SubContent>
|