@trackunit/react-graphql-hooks 1.14.14 → 1.14.16
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": "@trackunit/react-graphql-hooks",
|
|
3
|
-
"version": "1.14.
|
|
3
|
+
"version": "1.14.16",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,10 +9,10 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@apollo/client": "3.13.8",
|
|
11
11
|
"react": "19.0.0",
|
|
12
|
-
"@trackunit/i18n-library-translation": "1.12.
|
|
13
|
-
"@trackunit/shared-utils": "1.13.
|
|
12
|
+
"@trackunit/i18n-library-translation": "1.12.26",
|
|
13
|
+
"@trackunit/shared-utils": "1.13.42",
|
|
14
14
|
"es-toolkit": "^1.39.10",
|
|
15
|
-
"@trackunit/react-components": "1.17.
|
|
15
|
+
"@trackunit/react-components": "1.17.14"
|
|
16
16
|
},
|
|
17
17
|
"module": "./index.esm.js",
|
|
18
18
|
"main": "./index.cjs.js",
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { OperationVariables, TypedDocumentNode } from "@apollo/client";
|
|
2
|
-
import { PaginationQueryProps } from "./usePaginationQuery";
|
|
3
|
-
export interface UsePaginationQueryDemoComponentProps<TData, TVariables extends OperationVariables> extends PaginationQueryProps<TData, TVariables> {
|
|
4
|
-
document: TypedDocumentNode<TData, TVariables>;
|
|
5
|
-
}
|
|
6
|
-
/**
|
|
7
|
-
* The `usePaginationQuery` Hook provides pagination when fetching data
|
|
8
|
-
*
|
|
9
|
-
* It returns an object containing methods and values related to pagination.
|
|
10
|
-
*/
|
|
11
|
-
export declare const UsePaginationQueryDemoComponent: <TData, TVariables extends OperationVariables>({ document, variables, pageSize, updateQuery, }: UsePaginationQueryDemoComponentProps<TData, TVariables>) => import("react/jsx-runtime").JSX.Element;
|