2024-08-12 11:00:25 +02:00
|
|
|
<script lang="ts">
|
2025-01-19 15:41:16 +01:00
|
|
|
import { DropdownMenu as DropdownMenuPrimitive } from 'bits-ui';
|
|
|
|
|
import { cn } from '$lib/utils/style.js';
|
2024-08-12 11:00:25 +02:00
|
|
|
|
|
|
|
|
type $$Props = DropdownMenuPrimitive.ItemProps & {
|
|
|
|
|
inset?: boolean;
|
|
|
|
|
};
|
|
|
|
|
type $$Events = DropdownMenuPrimitive.ItemEvents;
|
|
|
|
|
|
2025-01-19 15:41:16 +01:00
|
|
|
let className: $$Props['class'] = undefined;
|
|
|
|
|
export let inset: $$Props['inset'] = undefined;
|
2024-08-12 11:00:25 +02:00
|
|
|
export { className as class };
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<DropdownMenuPrimitive.Item
|
|
|
|
|
class={cn(
|
2025-01-28 19:22:29 +01:00
|
|
|
'relative flex select-none items-center rounded-sm px-2 py-1.5 text-sm outline-none data-[disabled]:pointer-events-none data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground data-[disabled]:opacity-50',
|
2025-01-19 15:41:16 +01:00
|
|
|
inset && 'pl-8',
|
2024-08-12 11:00:25 +02:00
|
|
|
className
|
|
|
|
|
)}
|
|
|
|
|
{...$$restProps}
|
|
|
|
|
on:click
|
|
|
|
|
on:keydown
|
|
|
|
|
on:focusin
|
|
|
|
|
on:focusout
|
|
|
|
|
on:pointerdown
|
|
|
|
|
on:pointerleave
|
|
|
|
|
on:pointermove
|
|
|
|
|
>
|
|
|
|
|
<slot />
|
|
|
|
|
</DropdownMenuPrimitive.Item>
|