From 4898a96fe0bb21c532dbf97282eac7c744a2f5d3 Mon Sep 17 00:00:00 2001 From: Damiano Date: Thu, 5 Dec 2024 10:22:47 +0100 Subject: [PATCH] feat: add support for File type in Input component --- apps/www/src/lib/registry/default/ui/input/Input.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/www/src/lib/registry/default/ui/input/Input.vue b/apps/www/src/lib/registry/default/ui/input/Input.vue index 81140b40f..a74cc32c5 100644 --- a/apps/www/src/lib/registry/default/ui/input/Input.vue +++ b/apps/www/src/lib/registry/default/ui/input/Input.vue @@ -4,8 +4,8 @@ import { cn } from '@/lib/utils' import { useVModel } from '@vueuse/core' const props = defineProps<{ - defaultValue?: string | number - modelValue?: string | number + defaultValue?: string | number | File + modelValue?: string | number | File class?: HTMLAttributes['class'] }>()