@trackunit/react-core-contexts 1.3.25 → 1.3.30

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 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 {JSX.Element} The provider.
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 {JSX.Element} The provider.
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.25",
3
+ "version": "1.3.30",
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": "18.3.1",
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.23",
15
- "@trackunit/react-core-contexts-api": "1.4.24",
16
- "@trackunit/react-core-hooks": "1.3.24",
17
- "@trackunit/i18n-library-translation": "1.3.24",
18
- "@trackunit/react-components": "1.4.23",
19
- "@trackunit/iris-app-runtime-core": "1.4.24"
14
+ "@trackunit/iris-app-api": "1.3.28",
15
+ "@trackunit/react-core-contexts-api": "1.4.29",
16
+ "@trackunit/react-core-hooks": "1.3.29",
17
+ "@trackunit/i18n-library-translation": "1.3.29",
18
+ "@trackunit/react-components": "1.4.28",
19
+ "@trackunit/iris-app-runtime-core": "1.4.29"
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 {JSX.Element} The provider.
10
+ * @returns {ReactElement} The provider.
11
11
  */
12
12
  export declare const ManagerApolloProvider: ({ children }: ManagerApolloProviderProps) => import("react/jsx-runtime").JSX.Element;
13
13
  export {};