mirror of https://github.com/TZGyn/shortener
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
30 lines
784 B
Svelte
30 lines
784 B
Svelte
<script lang="ts">
|
|
import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui'
|
|
import { cn, flyAndScale } from '$lib/utils'
|
|
|
|
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>
|