import { ComboboxOption } from "@/components/ui/combobox" // Column definitions export const allColumns = [ { id: "fullName", label: "Full Name", category: "basic", visible: true }, { id: "university1", label: "University 1", category: "education", visible: true }, { id: "major1", label: "Major 1", category: "education", visible: true }, { id: "gpa1", label: "GPA 1", category: "education", visible: true }, { id: "domicile", label: "Domicile", category: "others", visible: true }, { id: "yoe", label: "YoE", category: "others", visible: true }, { id: "hardskills", label: "Hardskills", category: "others", visible: true }, { id: "score", label: "Score", category: "basic", visible: true }, ] // Filter options for searchable dropdowns export const universityOptions: ComboboxOption[] = [ { value: "Institut Teknologi Bandung", label: "Institut Teknologi Bandung" }, { value: "Universitas Indonesia", label: "Universitas Indonesia" }, { value: "Universitas Gadjah Mada", label: "Universitas Gadjah Mada" }, ] export const majorOptions: ComboboxOption[] = [ { value: "Teknik Elektro", label: "Teknik Elektro" }, { value: "Teknik Informatika", label: "Teknik Informatika" }, { value: "Sistem Informasi", label: "Sistem Informasi" }, ] export const gpaOptions: ComboboxOption[] = [ { value: "3.0-3.5", label: "3.0 - 3.5" }, { value: "3.5-4.0", label: "3.5 - 4.0" }, ] export const domicileOptions: ComboboxOption[] = [ { value: "Jakarta", label: "Jakarta" }, { value: "Bandung", label: "Bandung" }, { value: "Surabaya", label: "Surabaya" }, { value: "Yogyakarta", label: "Yogyakarta" }, ] export const yoeOptions: ComboboxOption[] = [ { value: "0-2", label: "0-2 years" }, { value: "3-5", label: "3-5 years" }, ] export const softskillsOptions: ComboboxOption[] = [ { value: "communication", label: "Communication" }, { value: "teamwork", label: "Teamwork" }, { value: "leadership", label: "Leadership" }, ] export const certificationOptions: ComboboxOption[] = [ { value: "aws", label: "AWS Certified" }, { value: "google", label: "Google Cloud" }, { value: "azure", label: "Azure" }, ] export const businessDomainOptions: ComboboxOption[] = [ { value: "finance", label: "Finance" }, { value: "healthcare", label: "Healthcare" }, { value: "retail", label: "Retail" }, ]