From 41d87623e2e4a18e2f5a52ca45dd7b617c5a35d4 Mon Sep 17 00:00:00 2001 From: Khafid Prayoga Date: Fri, 12 Sep 2025 14:39:52 +0700 Subject: [PATCH] feat(combobox): add disabled prop and improve styling - Add disabled prop to combobox component to support disabled state - Update styling to include better focus states and border color --- app/components/pub/custom-ui/form/combobox.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app/components/pub/custom-ui/form/combobox.vue b/app/components/pub/custom-ui/form/combobox.vue index 23f9401f..de51600e 100644 --- a/app/components/pub/custom-ui/form/combobox.vue +++ b/app/components/pub/custom-ui/form/combobox.vue @@ -15,6 +15,7 @@ const props = defineProps<{ searchPlaceholder?: string emptyMessage?: string class?: string + disabled?: boolean }>() const emit = defineEmits<{ @@ -63,13 +64,14 @@ function onSelect(item: Item) {