41 lines
1.4 KiB
Svelte
41 lines
1.4 KiB
Svelte
<script lang="ts">
|
|
import { Menubar as MenubarPrimitive } from "bits-ui";
|
|
import CheckIcon from "@lucide/svelte/icons/check";
|
|
import MinusIcon from "@lucide/svelte/icons/minus";
|
|
import { cn, type WithoutChildrenOrChild } from "@/lib/utils.js";
|
|
import type { Snippet } from "svelte";
|
|
|
|
let {
|
|
ref = $bindable(null),
|
|
class: className,
|
|
checked = $bindable(false),
|
|
indeterminate = $bindable(false),
|
|
children: childrenProp,
|
|
...restProps
|
|
}: WithoutChildrenOrChild<MenubarPrimitive.CheckboxItemProps> & {
|
|
children?: Snippet;
|
|
} = $props();
|
|
</script>
|
|
|
|
<MenubarPrimitive.CheckboxItem
|
|
bind:ref
|
|
bind:checked
|
|
bind:indeterminate
|
|
data-slot="menubar-checkbox-item"
|
|
class={cn(
|
|
"focus:bg-accent focus:text-accent-foreground rounded-xs outline-hidden relative flex cursor-default select-none items-center gap-2 py-1.5 pl-8 pr-2 text-sm data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg:not([class*='size-'])]:size-4 [&_svg]:pointer-events-none [&_svg]:shrink-0",
|
|
className
|
|
)}
|
|
{...restProps}
|
|
>
|
|
{#snippet children({ checked, indeterminate })}
|
|
<span class="pointer-events-none absolute left-2 flex size-3.5 items-center justify-center">
|
|
{#if indeterminate}
|
|
<MinusIcon class="size-4" />
|
|
{:else}
|
|
<CheckIcon class={cn("size-4", !checked && "text-transparent")} />
|
|
{/if}
|
|
</span>
|
|
{@render childrenProp?.()}
|
|
{/snippet}
|
|
</MenubarPrimitive.CheckboxItem>
|