ados-rcm 1.1.120 → 1.1.122

Sign up to get free protection for your applications and to get access to all the features.
@@ -250,6 +250,12 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
250
250
  * Description : className of search item
251
251
  */
252
252
  searchItemClassName?: string;
253
+ /**
254
+ * searchItemStyle? : React.CSSProperties
255
+ *
256
+ * Description : style of search item
257
+ */
258
+ searchItemStyle?: React.CSSProperties;
253
259
  }
254
260
  /**
255
261
  * AComponent : ATree
@@ -43,6 +43,7 @@ export interface IATreeItemProps<T> {
43
43
  TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
44
44
  TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
45
45
  searchItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
46
+ searchItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
46
47
  }
47
48
  declare enum EIndentState {
48
49
  Collapsed = "Collapsed",