@trackunit/react-graphql-hooks 1.7.53 → 1.7.55
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.7.
|
|
3
|
+
"version": "1.7.55",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -9,11 +9,11 @@
|
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@apollo/client": "3.13.8",
|
|
11
11
|
"react": "19.0.0",
|
|
12
|
-
"@trackunit/i18n-library-translation": "1.7.
|
|
13
|
-
"@trackunit/shared-utils": "1.9.
|
|
14
|
-
"@trackunit/react-test-setup": "1.4.
|
|
12
|
+
"@trackunit/i18n-library-translation": "1.7.46",
|
|
13
|
+
"@trackunit/shared-utils": "1.9.39",
|
|
14
|
+
"@trackunit/react-test-setup": "1.4.39",
|
|
15
15
|
"es-toolkit": "^1.39.10",
|
|
16
|
-
"@trackunit/react-components": "1.9.
|
|
16
|
+
"@trackunit/react-components": "1.9.55"
|
|
17
17
|
},
|
|
18
18
|
"module": "./index.esm.js",
|
|
19
19
|
"main": "./index.cjs.js",
|
|
@@ -1,7 +1,20 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
|
|
4
|
-
|
|
1
|
+
import { OperationVariables } from "@apollo/client";
|
|
2
|
+
import { StoryObj } from "@storybook/react-webpack5";
|
|
3
|
+
import { ReactElement } from "react";
|
|
4
|
+
import { UsePaginationQueryDemoComponentProps } from "./usePaginationQuery.demo";
|
|
5
|
+
type Story = StoryObj<typeof meta>;
|
|
6
|
+
declare const meta: {
|
|
7
|
+
title: string;
|
|
8
|
+
component: <TData, TVariables extends OperationVariables>({ document, variables, pageSize, updateQuery, }: UsePaginationQueryDemoComponentProps<TData, TVariables>) => import("react/jsx-runtime").JSX.Element;
|
|
9
|
+
parameters: {
|
|
10
|
+
docs: {
|
|
11
|
+
source: {
|
|
12
|
+
type: string;
|
|
13
|
+
excludeDecorators: boolean;
|
|
14
|
+
};
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
};
|
|
5
18
|
export default meta;
|
|
6
|
-
export declare const
|
|
19
|
+
export declare const PackageName: () => ReactElement;
|
|
7
20
|
export declare const Default: Story;
|