ados-rcm 1.1.569 → 1.1.570
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.
@@ -130,7 +130,7 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
|
|
130
130
|
*/
|
131
131
|
icons?: TCanCallback<IATreeItemProps<T>, {
|
132
132
|
[key in TExpandState]?: TIcons | Exclude<React.ReactNode, string>;
|
133
|
-
}>;
|
133
|
+
} | undefined>;
|
134
134
|
/**
|
135
135
|
* indents? : { collapsed?: React.ReactNode; expanded?: React.ReactNode; isLast?: React.ReactNode }
|
136
136
|
*
|
@@ -21,7 +21,7 @@ export interface IATreeItemProps<T> {
|
|
21
21
|
iconWidth: number;
|
22
22
|
icons: TCanCallback<IATreeItemProps<T>, {
|
23
23
|
[key in TExpandState]?: TIcons | Exclude<React.ReactNode, string>;
|
24
|
-
}>;
|
24
|
+
} | undefined>;
|
25
25
|
indents: EIndentState[];
|
26
26
|
isChildOfDragItem?: (item: T) => boolean;
|
27
27
|
isDragSrcItem?: boolean;
|