Initial website implementation with Hero section
This commit is contained in:
36
app/components/ui/input-group/InputGroupAddon.vue
Normal file
36
app/components/ui/input-group/InputGroupAddon.vue
Normal file
@ -0,0 +1,36 @@
|
||||
<script setup lang="ts">
|
||||
import type { HTMLAttributes } from "vue"
|
||||
import type { InputGroupVariants } from "."
|
||||
import { cn } from "@/lib/utils"
|
||||
import { inputGroupAddonVariants } from "."
|
||||
|
||||
const props = withDefaults(defineProps<{
|
||||
align?: InputGroupVariants["align"]
|
||||
class?: HTMLAttributes["class"]
|
||||
}>(), {
|
||||
align: "inline-start",
|
||||
})
|
||||
|
||||
function handleInputGroupAddonClick(e: MouseEvent) {
|
||||
const currentTarget = e.currentTarget as HTMLElement | null
|
||||
const target = e.target as HTMLElement | null
|
||||
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