forlogic-core 3.0.2 → 3.0.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -14,6 +14,7 @@ export interface ComboboxProps<T = any> {
14
14
  }>;
15
15
  emptyMessage?: string;
16
16
  searchPlaceholder?: string;
17
+ searchInputTestId?: string;
17
18
  disabled?: boolean;
18
19
  required?: boolean;
19
20
  isLoading?: boolean;
@@ -60,6 +61,6 @@ export interface ComboboxProps<T = any> {
60
61
  */
61
62
  export declare function Combobox<T = any>({ multiple, options: optionsProp, items, // alias
62
63
  value, onChange: onChangeProp, onValueChange, // alias
63
- getOptionValue, getOptionLabel, renderOption, placeholder, label, icon, emptyMessage, searchPlaceholder, disabled, required, isLoading, error, className, sortOptions, maxDisplayedBadges, popoverContainer, onOpen, onClose, clearable, showCheck }: ComboboxProps<T>): React.JSX.Element;
64
+ getOptionValue, getOptionLabel, renderOption, placeholder, label, icon, emptyMessage, searchPlaceholder, searchInputTestId, disabled, required, isLoading, error, className, sortOptions, maxDisplayedBadges, popoverContainer, onOpen, onClose, clearable, showCheck }: ComboboxProps<T>): React.JSX.Element;
64
65
  export type SelectSearchProps<T = any> = ComboboxProps<T>;
65
66
  export declare const SelectSearch: typeof Combobox;