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.
- package/dist/AModule/AComponents/ATable/ATable.d.ts +6 -0
- package/dist/AModule/AComponents/ATable/ATableBody.d.ts +1 -0
- package/dist/index.cjs.js +117 -117
- package/dist/index.es.js +9023 -9020
- package/package.json +1 -1
@@ -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
|
*
|