mirror of
https://github.com/sysadminsmedia/homebox.git
synced 2025-12-24 06:28:34 +01:00
* Remove text-sm from inputs * Update frontend/components/ui/command/CommandInput.vue Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update frontend/components/ui/tags-input/TagsInputInput.vue Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update frontend/components/ui/select/SelectTrigger.vue Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Respond to coderrabitai * Another coderrabbit comment * More coderrabbit responses * Fix formatting * Apply suggestion from @coderabbitai[bot] Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Update frontend/components/ui/input/Input.vue Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com> * Correct Coderrabbit's messy suggestion that I was too trigger-happy on * Accessible changes aOnly use accessible font sizing on mobile --------- Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
33 lines
1.0 KiB
Vue
33 lines
1.0 KiB
Vue
<script setup lang="ts">
|
|
import type { HTMLAttributes } from "vue";
|
|
import { useVModel } from "@vueuse/core";
|
|
import { cn } from "@/lib/utils";
|
|
|
|
const props = defineProps<{
|
|
defaultValue?: string | number;
|
|
modelValue?: string | number;
|
|
class?: HTMLAttributes["class"];
|
|
}>();
|
|
|
|
const emits = defineEmits<{
|
|
(e: "update:modelValue", payload: string | number): void;
|
|
}>();
|
|
|
|
const modelValue = useVModel(props, "modelValue", emits, {
|
|
passive: true,
|
|
defaultValue: props.defaultValue,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<input
|
|
v-model="modelValue"
|
|
:class="
|
|
cn(
|
|
'flex h-10 w-full rounded-md border border-input bg-background px-3 py-2 text-base md:text-sm ring-offset-background file:border-0 file:bg-transparent file:text-sm file:font-medium file:text-muted-foreground placeholder:text-muted-foreground focus-visible:outline-none focus-visible:ring-2 focus-visible:ring-ring focus-visible:ring-offset-2 disabled:cursor-not-allowed disabled:opacity-50',
|
|
props.class
|
|
)
|
|
"
|
|
/>
|
|
</template>
|