@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/dist/index.es.js +2 -2
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +22 -19
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +2 -2
- package/dist/index.min.js.map +1 -1
- package/package.json +1 -1
- package/types/components/Pagination/type.d.ts +4 -0
- package/types/components/TablePrimary/type.d.ts +8 -0
package/package.json
CHANGED
|
@@ -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
|
}
|