45 lines
1.3 KiB
Vue
45 lines
1.3 KiB
Vue
<script setup>
|
|
import { reactiveOmit } from "@vueuse/core";
|
|
import { Circle } from "lucide-vue-next";
|
|
import {
|
|
DropdownMenuItemIndicator,
|
|
DropdownMenuRadioItem,
|
|
useForwardPropsEmits,
|
|
} from "reka-ui";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps({
|
|
value: { type: String, required: true },
|
|
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"]);
|
|
|
|
const delegatedProps = reactiveOmit(props, "class");
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits);
|
|
</script>
|
|
|
|
<template>
|
|
<DropdownMenuRadioItem
|
|
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>
|
|
<Circle class="h-4 w-4 fill-current" />
|
|
</DropdownMenuItemIndicator>
|
|
</span>
|
|
<slot />
|
|
</DropdownMenuRadioItem>
|
|
</template>
|