ados-rcm 1.1.255 → 1.1.256

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.
@@ -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",