ados-rcm 1.1.48 → 1.1.49

Sign up to get free protection for your applications and to get access to all the features.
@@ -108,7 +108,7 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
108
108
  * Description : indents of ATree
109
109
  */
110
110
  indents?(props: IIndentProps): {
111
- callapsed?: React.ReactNode;
111
+ collapsed?: React.ReactNode;
112
112
  expanded?: React.ReactNode;
113
113
  isLast?: React.ReactNode;
114
114
  };
@@ -10,7 +10,7 @@ export interface IATreeItemProps<T> {
10
10
  selectDisabled?: (item: T) => boolean | string | undefined;
11
11
  isParentDisabled?: boolean | string;
12
12
  extIndents?: (props: IIndentProps) => {
13
- callapsed?: React.ReactNode;
13
+ collapsed?: React.ReactNode;
14
14
  expanded?: React.ReactNode;
15
15
  isLast?: React.ReactNode;
16
16
  };