33 lines
949 B
Vue
33 lines
949 B
Vue
<script lang="ts" setup>
|
|
import { cn } from "@mykopkb/core/utils/cn";
|
|
import { Button } from "@/components/ui/button";
|
|
import { ChevronsUpDownIcon } from "@lucide/vue";
|
|
import { comboboxTrigger } from "@mykopkb/core/styles/combobox.styles";
|
|
import { ComboboxClearTrigger } from ".";
|
|
import type { Api } from "@zag-js/combobox";
|
|
import { inject } from "vue";
|
|
import { Slot } from "@/components/ui/slot";
|
|
|
|
const {
|
|
class: className,
|
|
asChild = false,
|
|
...props
|
|
} = defineProps<{
|
|
class?: string;
|
|
asChild?: boolean;
|
|
}>();
|
|
|
|
const api = inject<Api>("comboboxApi");
|
|
</script>
|
|
|
|
<template>
|
|
<Slot v-bind="{ ...props, ...$attrs, ...api?.getTriggerProps() }">
|
|
<Button variant="ghost" v-if="!asChild" :class="cn(comboboxTrigger, className)">
|
|
<div>{{ api?.valueAsString || "Select Options..." }}</div>
|
|
<ComboboxClearTrigger>Clear</ComboboxClearTrigger>
|
|
<ChevronsUpDownIcon />
|
|
</Button>
|
|
<slot v-else />
|
|
</Slot>
|
|
</template>
|