ados-rcm 1.0.431 → 1.0.433

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.
@@ -120,11 +120,11 @@ export interface IATreeProps<T extends IATreeItem<T>> extends IABaseProps {
120
120
  */
121
121
  noSearch?: boolean;
122
122
  /**
123
- * enableDrag? : boolean
123
+ * isDraggable? : boolean
124
124
  *
125
- * Description : enableDrag of ATree
125
+ * Description : isDraggable of ATree
126
126
  */
127
- enableDrag?: boolean;
127
+ isDraggable?: boolean;
128
128
  /**
129
129
  * syncSearchSelect? : boolean
130
130
  *
@@ -23,7 +23,7 @@ export interface IATreeItemProps<T> {
23
23
  };
24
24
  iconWidth: number;
25
25
  isSelectMulti: boolean;
26
- enableDrag: boolean;
26
+ isDraggable: boolean;
27
27
  isParentCheckHovered: boolean;
28
28
  ContentRenderer: (props: IATreeItemProps<T>) => React.ReactNode;
29
29
  TreeItemRenderer: (props: IATreeItemProps<T>) => React.ReactNode;