ados-rcm 1.1.32 → 1.1.33

Sign up to get free protection for your applications and to get access to all the features.
@@ -9,6 +9,7 @@ export declare const Resources: {
9
9
  Search: string;
10
10
  Items: string;
11
11
  '*Click row for single select': string;
12
+ '*Change order to row drag': string;
12
13
  'Loading Contents...': string;
13
14
  };
14
15
  ADatePicker: {
@@ -24,7 +24,7 @@ export interface IATreeItemProps<T> {
24
24
  };
25
25
  iconWidth: number;
26
26
  isSelectMulti: boolean;
27
- isDraggable: boolean;
27
+ isDraggable?: boolean;
28
28
  isParentCheckHovered: boolean;
29
29
  hoverdItem: T | null;
30
30
  onMouseOver?: (e: React.MouseEvent<HTMLElement>, item: T) => void;