@secondstaxorg/sscomp 1.8.47 → 1.8.49
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 +3 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.js +26 -21
- 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/TablePrimary/type.d.ts +4 -0
package/package.json
CHANGED
|
@@ -27,4 +27,8 @@ export interface RequestsProps {
|
|
|
27
27
|
* Specify the number of items to show in the table when showPagination is true
|
|
28
28
|
* */
|
|
29
29
|
itemsPerPage?: number;
|
|
30
|
+
/**
|
|
31
|
+
* Callback function that returns the set of items that have been paginated based on the number of items per page
|
|
32
|
+
*/
|
|
33
|
+
paginatedItems: (arr: any[]) => void;
|
|
30
34
|
}
|