mirror of
https://github.com/gosticks/plane.git
synced 2025-10-16 12:45:33 +00:00
[WEB-5072] chore: propel combobox improvement #7899
This commit is contained in:
parent
f6677f252f
commit
3c389e2e50
@ -39,6 +39,7 @@ export interface ComboboxOptionsProps {
|
||||
maxHeight?: "lg" | "md" | "rg" | "sm";
|
||||
inputClassName?: string;
|
||||
optionsContainerClassName?: string;
|
||||
positionerClassName?: string;
|
||||
}
|
||||
|
||||
export interface ComboboxOptionProps {
|
||||
@ -237,10 +238,11 @@ function ComboboxOptions({
|
||||
inputClassName,
|
||||
optionsContainerClassName,
|
||||
emptyMessage,
|
||||
positionerClassName,
|
||||
}: ComboboxOptionsProps) {
|
||||
const { multiSelect } = useComboboxContext();
|
||||
return (
|
||||
<Popover.Panel sideOffset={8} className={cn(className)}>
|
||||
<Popover.Panel sideOffset={8} className={cn(className)} positionerClassName={positionerClassName}>
|
||||
<Command>
|
||||
{showSearch && <Command.Input placeholder={searchPlaceholder} className={cn(inputClassName)} />}
|
||||
<Command.List
|
||||
|
||||
Loading…
Reference in New Issue
Block a user