From 89710d976879c594711de728bbffa5160f69c67d Mon Sep 17 00:00:00 2001 From: Khafid Prayoga Date: Thu, 28 Aug 2025 15:24:14 +0700 Subject: [PATCH] feat(combobox): add reusable combobox component with search and selection Implement a combobox component with search functionality and item selection. The component supports displaying item labels with optional codes, maintains selected item state, and provides customizable placeholders. Items are sorted with selected items first followed by alphabetical order. --- .../pub/custom-ui/form/combobox.vue | 100 ++++++++++++++++++ 1 file changed, 100 insertions(+) create mode 100644 app/components/pub/custom-ui/form/combobox.vue diff --git a/app/components/pub/custom-ui/form/combobox.vue b/app/components/pub/custom-ui/form/combobox.vue new file mode 100644 index 00000000..74da7025 --- /dev/null +++ b/app/components/pub/custom-ui/form/combobox.vue @@ -0,0 +1,100 @@ + + +