@@ -5,8 +5,8 @@ import { Combobox } from "@headlessui/react"
5
5
import { Tag } from "@/app/conf/_design-system/tag"
6
6
import { Button } from "@/app/conf/_design-system/button"
7
7
8
- import CloseIcon from "@/app/conf/2025 /pixelarticons/close.svg?svgr"
9
- import CaretDownIcon from "@/app/conf/2025 /pixelarticons/caret-down.svg?svgr"
8
+ import CloseIcon from "@/app/conf/_design-system /pixelarticons/close.svg?svgr"
9
+ import CaretDownIcon from "@/app/conf/_design-system /pixelarticons/caret-down.svg?svgr"
10
10
import { eventsColors } from "../../utils"
11
11
type FiltersProps = {
12
12
categories : { name : string ; options : string [ ] } [ ]
@@ -92,10 +92,10 @@ function FiltersCombobox({
92
92
)
93
93
94
94
return (
95
- < Combobox multiple nullable value = { value } onChange = { onChange } >
95
+ < Combobox immediate multiple value = { value } onChange = { onChange } >
96
96
< div className = { clsx ( "flex flex-col" , className ) } >
97
97
{ label && (
98
- < Combobox . Label className = "typography-menu mb-1 block font-mono font-medium uppercase text-neu-900" >
98
+ < Combobox . Label className = "mb-1 block font-mono font-medium uppercase text-neu-900 typography-menu " >
99
99
{ label }
100
100
</ Combobox . Label >
101
101
) }
@@ -104,7 +104,7 @@ function FiltersCombobox({
104
104
value = { query }
105
105
onChange = { e => setQuery ( e . target . value ) }
106
106
className = { clsx (
107
- "typography-body-sm bg-transparent leading-none text-neu-800 !outline-offset-0 [text-box:trim-both_cap_alphabetic] max-lg:typography-body-md placeholder:text-neu-600 focus:outline-none" ,
107
+ "bg-transparent leading-none text-neu-800 !outline-offset-0 typography-body-sm [text-box:trim-both_cap_alphabetic] placeholder:text-neu-600 focus:outline-none max-lg:typography-body-md " ,
108
108
) }
109
109
placeholder = { placeholder }
110
110
autoComplete = "true"
@@ -206,7 +206,7 @@ function FilterComboboxOption({
206
206
return (
207
207
< div
208
208
className = { clsx (
209
- "typography-body-sm relative flex cursor-default select-none items-center p-1 font-sans" ,
209
+ "relative flex cursor-default select-none items-center p-1 font-sans typography-body-sm " ,
210
210
active && "bg-neu-100 dark:bg-neu-50" ,
211
211
) }
212
212
>
0 commit comments