@trackunit/react-core-contexts 1.3.23 → 1.3.29
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/index.cjs.js +1 -1
- package/index.esm.js +1 -1
- package/package.json +8 -8
- package/src/ManagerApolloProvider.d.ts +1 -1
package/index.cjs.js
CHANGED
|
@@ -211,7 +211,7 @@ const useApolloClient = () => {
|
|
|
211
211
|
* It is used to provide the apollo client to the manager app.
|
|
212
212
|
*
|
|
213
213
|
* @param {ManagerApolloProviderProps} props The props.
|
|
214
|
-
* @returns {
|
|
214
|
+
* @returns {ReactElement} The provider.
|
|
215
215
|
*/
|
|
216
216
|
const ManagerApolloProvider = ({ children }) => {
|
|
217
217
|
const client$1 = useApolloClient();
|
package/index.esm.js
CHANGED
|
@@ -191,7 +191,7 @@ const useApolloClient = () => {
|
|
|
191
191
|
* It is used to provide the apollo client to the manager app.
|
|
192
192
|
*
|
|
193
193
|
* @param {ManagerApolloProviderProps} props The props.
|
|
194
|
-
* @returns {
|
|
194
|
+
* @returns {ReactElement} The provider.
|
|
195
195
|
*/
|
|
196
196
|
const ManagerApolloProvider = ({ children }) => {
|
|
197
197
|
const client = useApolloClient();
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/react-core-contexts",
|
|
3
|
-
"version": "1.3.
|
|
3
|
+
"version": "1.3.29",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"engines": {
|
|
@@ -8,15 +8,15 @@
|
|
|
8
8
|
},
|
|
9
9
|
"dependencies": {
|
|
10
10
|
"@apollo/client": "3.10.4",
|
|
11
|
-
"react": "
|
|
11
|
+
"react": "19.0.0",
|
|
12
12
|
"@js-temporal/polyfill": "^0.4.4",
|
|
13
13
|
"jest-fetch-mock": "^3.0.3",
|
|
14
|
-
"@trackunit/iris-app-api": "1.3.
|
|
15
|
-
"@trackunit/react-core-contexts-api": "1.4.
|
|
16
|
-
"@trackunit/react-core-hooks": "1.3.
|
|
17
|
-
"@trackunit/i18n-library-translation": "1.3.
|
|
18
|
-
"@trackunit/react-components": "1.4.
|
|
19
|
-
"@trackunit/iris-app-runtime-core": "1.4.
|
|
14
|
+
"@trackunit/iris-app-api": "1.3.27",
|
|
15
|
+
"@trackunit/react-core-contexts-api": "1.4.28",
|
|
16
|
+
"@trackunit/react-core-hooks": "1.3.28",
|
|
17
|
+
"@trackunit/i18n-library-translation": "1.3.28",
|
|
18
|
+
"@trackunit/react-components": "1.4.27",
|
|
19
|
+
"@trackunit/iris-app-runtime-core": "1.4.28"
|
|
20
20
|
},
|
|
21
21
|
"module": "./index.esm.js",
|
|
22
22
|
"main": "./index.cjs.js",
|
|
@@ -7,7 +7,7 @@ interface ManagerApolloProviderProps {
|
|
|
7
7
|
* It is used to provide the apollo client to the manager app.
|
|
8
8
|
*
|
|
9
9
|
* @param {ManagerApolloProviderProps} props The props.
|
|
10
|
-
* @returns {
|
|
10
|
+
* @returns {ReactElement} The provider.
|
|
11
11
|
*/
|
|
12
12
|
export declare const ManagerApolloProvider: ({ children }: ManagerApolloProviderProps) => import("react/jsx-runtime").JSX.Element;
|
|
13
13
|
export {};
|