42 lines
1.4 KiB
Vue
42 lines
1.4 KiB
Vue
<script setup lang="ts">
|
|
import { cn } from '@/lib/utils'
|
|
import { Check } from 'lucide-vue-next'
|
|
import {
|
|
DropdownMenuCheckboxItem,
|
|
type DropdownMenuCheckboxItemEmits,
|
|
type DropdownMenuCheckboxItemProps,
|
|
DropdownMenuItemIndicator,
|
|
useForwardPropsEmits,
|
|
} from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<DropdownMenuCheckboxItemProps & { class?: HTMLAttributes['class'] }>()
|
|
const emits = defineEmits<DropdownMenuCheckboxItemEmits>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuCheckboxItem
|
|
data-slot="dropdown-menu-checkbox-item"
|
|
v-bind="forwarded"
|
|
:class=" cn(
|
|
`focus:bg-accent focus:text-accent-foreground relative flex cursor-default items-center gap-2 rounded-sm py-1.5 pr-2 pl-8 text-sm outline-hidden select-none data-[disabled]:pointer-events-none data-[disabled]:opacity-50 [&_svg]:pointer-events-none [&_svg]:shrink-0 [&_svg:not([class*='size-'])]:size-4`,
|
|
props.class,
|
|
)"
|
|
>
|
|
<span class="pointer-events-none absolute left-2 flex size-3.5 items-center justify-center">
|
|
<DropdownMenuItemIndicator>
|
|
<Check class="size-4" />
|
|
</DropdownMenuItemIndicator>
|
|
</span>
|
|
<slot />
|
|
</DropdownMenuCheckboxItem>
|
|
</template>
|