@secondstaxorg/sscomp 2.1.23 → 2.1.25

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secondstaxorg/sscomp",
3
- "version": "2.1.23",
3
+ "version": "2.1.25",
4
4
  "publishConfig": {
5
5
  "registry": "https://registry.npmjs.org/"
6
6
  },
@@ -33,4 +33,8 @@ export interface PaginationProps {
33
33
  of?: string;
34
34
  goTo?: string;
35
35
  };
36
+ /**
37
+ * Specify the pagination page number to maintain in the event of a component re-render
38
+ * */
39
+ paginationPageNumber?: number;
36
40
  }
@@ -37,4 +37,12 @@ export interface RequestsProps {
37
37
  * Specify the key of the column you want to initially sort the table by on page load
38
38
  * */
39
39
  sortBy?: string;
40
+ /**
41
+ * Specify the pagination page number to maintain in the event of a component re-render
42
+ * */
43
+ paginationPageNumber?: number;
44
+ /**
45
+ * Callback function that returns the current page number
46
+ */
47
+ returnedPageNum?: (val: number) => void;
40
48
  }