ados-rcm 1.1.19 → 1.1.21
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/AModule/AComponents/ATree/ATreeItem.d.ts +1 -0
- package/dist/index.cjs.js +22 -22
- package/dist/index.es.js +2113 -2109
- package/package.json +1 -1
@@ -26,6 +26,7 @@ export interface IATreeItemProps<T> {
|
|
26
26
|
isSelectMulti: boolean;
|
27
27
|
isDraggable: boolean;
|
28
28
|
isParentCheckHovered: boolean;
|
29
|
+
isHovered?: boolean;
|
29
30
|
ContentRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
|
30
31
|
TreeItemRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
|
31
32
|
RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
|