ados-rcm 1.1.255 → 1.1.257

Sign up to get free protection for your applications and to get access to all the features.
@@ -256,6 +256,12 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
256
256
  * Description : style of search item
257
257
  */
258
258
  searchItemStyle?: React.CSSProperties;
259
+ /**
260
+ * height? : number
261
+ *
262
+ * Description : height of ATreeItem
263
+ */
264
+ height?: number;
259
265
  }
260
266
  /**
261
267
  * AComponent : ATree
@@ -44,6 +44,7 @@ export interface IATreeItemProps<T> {
44
44
  TreeItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
45
45
  searchItemClassName?: TCanCallback<IATreeItemProps<T>, string>;
46
46
  searchItemStyle?: TCanCallback<IATreeItemProps<T>, React.CSSProperties>;
47
+ height: number;
47
48
  }
48
49
  declare enum EIndentState {
49
50
  Collapsed = "Collapsed",