25 lines
1.0 KiB
Vue
25 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
import type { ComboboxItemEmits, ComboboxItemProps } from "reka-ui"
|
|
import type { HTMLAttributes } from "vue"
|
|
import { reactiveOmit } from "@vueuse/core"
|
|
import { ComboboxItem, useForwardPropsEmits } from "reka-ui"
|
|
import { cn } from "@/lib/utils"
|
|
|
|
const props = defineProps<ComboboxItemProps & { class?: HTMLAttributes["class"] }>()
|
|
const emits = defineEmits<ComboboxItemEmits>()
|
|
|
|
const delegatedProps = reactiveOmit(props, "class")
|
|
|
|
const forwarded = useForwardPropsEmits(delegatedProps, emits)
|
|
</script>
|
|
|
|
<template>
|
|
<ComboboxItem
|
|
data-slot="combobox-item"
|
|
v-bind="forwarded"
|
|
:class="cn(`data-[highlighted]:bg-accent data-[highlighted]:text-accent-foreground [&_svg:not([class*='text-'])]:text-muted-foreground relative flex cursor-default items-center gap-2 rounded-sm px-2 py-1.5 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)"
|
|
>
|
|
<slot />
|
|
</ComboboxItem>
|
|
</template>
|