@unifiedsoftware/react-ui 2.0.1-beta.19 → 2.0.1-beta.20

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.
package/dist/index.d.ts CHANGED
@@ -723,6 +723,7 @@ type BaseProps$1<TItem extends Record<string, any>> = {
723
723
  onClear?: () => void;
724
724
  onItemSelect?: (item: TItem) => void;
725
725
  onFilterChange?: (value: string) => void;
726
+ customFilter?: (item: TItem, filter: string) => boolean;
726
727
  renderItem?: (item: TItem, props: ListItemProps) => React.ReactNode;
727
728
  renderNoData?: (props: ResultProps) => React.ReactNode;
728
729
  };