ados-rcm 1.0.154 → 1.0.156

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.
@@ -138,11 +138,11 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
138
138
  */
139
139
  syncSearchSelect?: boolean;
140
140
  /**
141
- * searchPredicate? : (inputValue: string, item: IATreeItem<T>) => any
141
+ * searchPredicate? : (inputValue: string, item: T) => any
142
142
  *
143
143
  * Description : searchPredicate of ATree.
144
144
  */
145
- searchPredicate?: (inputValue: string, item: IATreeItem<T>) => any;
145
+ searchPredicate?: (inputValue: string, item: T) => any;
146
146
  /**
147
147
  * actionRef? : TActionRef<IATreeActions>
148
148
  *