31 lines
782 B
Vue
31 lines
782 B
Vue
<script setup lang="ts">
|
|
import type { ComboboxGroupProps } from 'reka-ui'
|
|
import { cn } from '@/lib/utils'
|
|
import { ComboboxGroup, ComboboxLabel } from 'reka-ui'
|
|
import { computed, type HTMLAttributes } from 'vue'
|
|
|
|
const props = defineProps<ComboboxGroupProps & {
|
|
class?: HTMLAttributes['class']
|
|
heading?: string
|
|
}>()
|
|
|
|
const delegatedProps = computed(() => {
|
|
const { class: _, ...delegated } = props
|
|
|
|
return delegated
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<ComboboxGroup
|
|
data-slot="combobox-group"
|
|
v-bind="delegatedProps"
|
|
:class="cn('overflow-hidden p-1 text-foreground', props.class)"
|
|
>
|
|
<ComboboxLabel v-if="heading" class="px-2 py-1.5 text-xs font-medium text-muted-foreground">
|
|
{{ heading }}
|
|
</ComboboxLabel>
|
|
<slot />
|
|
</ComboboxGroup>
|
|
</template>
|