mirror of
https://github.com/versia-pub/frontend.git
synced 2026-01-26 12:26:02 +01:00
33 lines
1.1 KiB
Vue
33 lines
1.1 KiB
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<div
|
|
data-slot="input-group"
|
|
role="group"
|
|
:class="cn(
|
|
'group/input-group border-input bg-background relative flex w-full items-center rounded-md border outline-none',
|
|
'h-9 min-w-0 has-[>textarea]:h-auto',
|
|
|
|
// Variants based on alignment.
|
|
'has-[>[data-align=inline-start]]:[&>input]:pl-2',
|
|
'has-[>[data-align=inline-end]]:[&>input]:pr-2',
|
|
'has-[>[data-align=block-start]]:h-auto has-[>[data-align=block-start]]:flex-col has-[>[data-align=block-start]]:[&>input]:pb-3',
|
|
'has-[>[data-align=block-end]]:h-auto has-[>[data-align=block-end]]:flex-col has-[>[data-align=block-end]]:[&>input]:pt-3',
|
|
|
|
// Focus state.
|
|
'has-[[data-slot=input-group-control]:focus-visible]:ring-ring has-[[data-slot=input-group-control]:focus-visible]:ring-1',
|
|
|
|
props.class,
|
|
)"
|
|
>
|
|
<slot/>
|
|
</div>
|
|
</template>
|