ados-rcm 1.1.630 → 1.1.631
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/index.cjs.js +101 -101
- package/dist/index.es.js +5677 -5673
- package/package.json +1 -1
@@ -601,6 +601,12 @@ export interface IATableProps<T extends IItem> {
|
|
601
601
|
* Description : onStateChange of ATable. will be called when filteration, sortation, and pagination changes.
|
602
602
|
*/
|
603
603
|
onStateChange?: (params: IATableState<T>) => TPromisable<void>;
|
604
|
+
/**
|
605
|
+
* pageNumber? : number
|
606
|
+
*
|
607
|
+
* Description : current page number from external. if provided, table will follow this page number. works like totalCount.
|
608
|
+
*/
|
609
|
+
pageNumber?: number;
|
604
610
|
/**
|
605
611
|
* pagedItems? : T[]
|
606
612
|
*
|