ados-rcm 1.0.581 → 1.0.583

Sign up to get free protection for your applications and to get access to all the features.
@@ -198,6 +198,18 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
198
198
  * Description : autoFocus of ATreeSearch
199
199
  */
200
200
  autoFocus?: boolean;
201
+ /**
202
+ * TreeItemStyle? : React.CSSProperties
203
+ *
204
+ * Description : style of ATreeItem
205
+ */
206
+ TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
207
+ /**
208
+ * TreeItemClassName? : string
209
+ *
210
+ * Description : className of ATreeItem
211
+ */
212
+ TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
201
213
  }
202
214
  /**
203
215
  * AComponent : ATree
@@ -31,6 +31,8 @@ export interface IATreeItemProps<T> {
31
31
  RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
32
32
  resources: typeof Resources.ATree;
33
33
  containerRef: React.RefObject<HTMLDivElement>;
34
+ TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
35
+ TreeItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
34
36
  }
35
37
  declare enum EIndentState {
36
38
  Collapsed = "Collapsed",