ados-rcm 1.1.27 → 1.1.29
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 +2 -0
- package/dist/index.cjs.js +25 -25
- package/dist/index.es.js +2542 -2535
- package/package.json +1 -1
@@ -27,6 +27,8 @@ export interface IATreeItemProps<T> {
|
|
27
27
|
isDraggable: boolean;
|
28
28
|
isParentCheckHovered: boolean;
|
29
29
|
isHovered?: boolean;
|
30
|
+
onMouseOver?: (e: React.MouseEvent<HTMLElement>) => void;
|
31
|
+
onMouseLeave?: (e: React.MouseEvent<HTMLElement>) => void;
|
30
32
|
ContentRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
|
31
33
|
TreeItemRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
|
32
34
|
RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
|