ados-rcm 1.1.625 → 1.1.627

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.
@@ -547,6 +547,12 @@ export interface IATableProps<T extends IItem> {
547
547
  * Description : isSelectMulti of ATable. if true, multiple items can be selected.
548
548
  */
549
549
  isSelectMulti?: boolean;
550
+ /**
551
+ * isSelectScroll? : boolean
552
+ *
553
+ * Description : if true, automatically scrolls to selected row. only works when useSelect is provided.
554
+ */
555
+ isSelectScroll?: boolean;
550
556
  /**
551
557
  * noCount? : boolean
552
558
  *
@@ -15,6 +15,7 @@ interface IATableBodyProps<T extends IItem> {
15
15
  isLoading?: boolean;
16
16
  isRowRendered: boolean;
17
17
  isSelectMulti?: boolean;
18
+ isSelectScroll?: boolean;
18
19
  isTableDisabled?: string | boolean;
19
20
  noDefHeader?: boolean;
20
21
  noMarking?: boolean;