2025-12-09 22:12:23 +01:00
|
|
|
<script setup lang="ts">
|
|
|
|
|
import type { HTMLAttributes } from "vue";
|
|
|
|
|
import { cn } from "@/lib/utils";
|
|
|
|
|
|
|
|
|
|
const props = defineProps<{
|
|
|
|
|
class?: HTMLAttributes["class"];
|
|
|
|
|
}>();
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<template>
|
2025-12-09 22:32:22 +01:00
|
|
|
<div
|
|
|
|
|
data-slot="input-group"
|
|
|
|
|
role="group"
|
|
|
|
|
:class="cn(
|
2025-12-09 22:12:23 +01:00
|
|
|
'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,
|
|
|
|
|
)"
|
2025-12-09 22:32:22 +01:00
|
|
|
>
|
2026-01-09 21:47:12 +01:00
|
|
|
<slot />
|
2025-12-09 22:32:22 +01:00
|
|
|
</div>
|
2025-12-09 22:12:23 +01:00
|
|
|
</template>
|