Changes to UI and other stuff
This commit is contained in:
@@ -0,0 +1,32 @@
|
||||
<script setup>
|
||||
import { cn } from "@/lib/utils";
|
||||
import { inputGroupAddonVariants } from ".";
|
||||
|
||||
const props = defineProps({
|
||||
align: { type: null, required: false, default: "inline-start" },
|
||||
class: { type: null, required: false },
|
||||
});
|
||||
|
||||
function handleInputGroupAddonClick(e) {
|
||||
const currentTarget = e.currentTarget;
|
||||
const target = e.target;
|
||||
if (target && target.closest("button")) {
|
||||
return;
|
||||
}
|
||||
if (currentTarget && currentTarget?.parentElement) {
|
||||
currentTarget.parentElement?.querySelector("input")?.focus();
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<div
|
||||
role="group"
|
||||
data-slot="input-group-addon"
|
||||
:data-align="props.align"
|
||||
:class="cn(inputGroupAddonVariants({ align: props.align }), props.class)"
|
||||
@click="handleInputGroupAddonClick"
|
||||
>
|
||||
<slot />
|
||||
</div>
|
||||
</template>
|
||||
Reference in New Issue
Block a user