ados-rcm 1.1.29 → 1.1.31
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 +3 -3
- package/dist/index.cjs.js +28 -28
- package/dist/index.es.js +2158 -2142
- package/package.json +1 -1
@@ -26,9 +26,9 @@ export interface IATreeItemProps<T> {
|
|
26
26
|
isSelectMulti: boolean;
|
27
27
|
isDraggable: boolean;
|
28
28
|
isParentCheckHovered: boolean;
|
29
|
-
|
30
|
-
onMouseOver?: (e: React.MouseEvent<HTMLElement
|
31
|
-
onMouseLeave?: (e: React.MouseEvent<HTMLElement
|
29
|
+
hoverdItem: T | null;
|
30
|
+
onMouseOver?: (e: React.MouseEvent<HTMLElement>, item: T) => void;
|
31
|
+
onMouseLeave?: (e: React.MouseEvent<HTMLElement>, item: T) => void;
|
32
32
|
ContentRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
|
33
33
|
TreeItemRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
|
34
34
|
RightStickyAddon?: TCanCallback<IATreeItemProps<T>, React.ReactNode>;
|