@factorialco/f0-react 1.201.2 → 1.201.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.
@@ -3833,6 +3833,7 @@ showBar?: boolean;
3833
3833
  viewportRef?: React.RefObject<HTMLDivElement>;
3834
3834
  onScrollTop?: () => void;
3835
3835
  onScrollBottom?: () => void;
3836
+ scrollMargin?: number;
3836
3837
  } & RefAttributes<HTMLDivElement>, "ref"> & RefAttributes<HTMLElement | SVGElement>>;
3837
3838
 
3838
3839
  export declare function SearchBar({ onClick, placeholder, shortcut, ...props }: SearchBarProps): JSX_2.Element;
@@ -3967,6 +3968,7 @@ export declare type SelectProps<T extends string, R = unknown> = {
3967
3968
  } | {
3968
3969
  source?: never;
3969
3970
  mapOptions?: never;
3971
+ searchFn?: (option: SelectItemProps<T, unknown>, search?: string) => boolean | undefined;
3970
3972
  options: SelectItemProps<T, unknown>[];
3971
3973
  }) & Pick<InputFieldProps<T>, "loading" | "hideLabel" | "clearable" | "labelIcon" | "size" | "label" | "icon" | "placeholder" | "disabled" | "name" | "error" | "status" | "hint">;
3972
3974