44 lines
1.3 KiB
Vue
44 lines
1.3 KiB
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { Check } from "lucide-vue-next";
|
|
import {
|
|
DropdownMenuCheckboxItem,
|
|
DropdownMenuItemIndicator,
|
|
useForwardPropsEmits,
|
|
} from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
modelValue: { type: [Boolean, String], required: false },
|
|
disabled: { type: Boolean, required: false },
|
|
textValue: { type: String, required: false },
|
|
asChild: { type: Boolean, required: false },
|
|
as: { type: null, required: false },
|
|
class: { type: null, required: false },
|
|
});
|
|
const emits = defineEmits(["select", "update:modelValue"]);
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuCheckboxItem
|
|
v-bind="forwarded"
|
|
:class="
|
|
cn(
|
|
'relative flex cursor-default select-none items-center rounded-sm py-1.5 pl-8 pr-2 text-sm outline-none transition-colors focus:bg-accent focus:text-accent-foreground data-[disabled]:pointer-events-none data-[disabled]:opacity-50',
|
|
props.class,
|
|
)
|
|
"
|
|
>
|
|
<span class="absolute left-2 flex h-3.5 w-3.5 items-center justify-center">
|
|
<DropdownMenuItemIndicator>
|
|
<Check class="w-4 h-4" />
|
|
</DropdownMenuItemIndicator>
|
|
</span>
|
|
<slot />
|
|
</DropdownMenuCheckboxItem>
|
|
</template>
|