@tracktor/shared-module 0.23.2 → 0.23.3

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/CHANGELOG.md CHANGED
@@ -1,4 +1,4 @@
1
1
  # [Versions](https://github.com/Tracktor/shared-module/releases)
2
2
 
3
- ## v0.23.2
4
- - **[fix]** : regex loading dynamically imported module sentry
3
+ ## v0.23.3
4
+ - **[fix]** : type useInfiniteDataGrid for react query v5
@@ -2,9 +2,7 @@ interface useInfiniteDataGridParams<T> {
2
2
  data?: {
3
3
  pages: T[];
4
4
  };
5
- fetchNextPage: (params: {
6
- pageParam?: unknown;
7
- }) => Promise<any>;
5
+ fetchNextPage: (fetchNextPageOptions?: any) => Promise<any>;
8
6
  isFetchingNextPage: boolean;
9
7
  isInitialLoading: boolean;
10
8
  isLoading: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@tracktor/shared-module",
3
- "version": "0.23.2",
3
+ "version": "0.23.3",
4
4
  "type": "module",
5
5
  "license": "UNLICENSED",
6
6
  "types": "./dist/main.d.ts",