@trackunit/react-core-contexts 1.9.126 → 1.9.130

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-core-contexts",
3
- "version": "1.9.126",
3
+ "version": "1.9.130",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -9,12 +9,12 @@
9
9
  "dependencies": {
10
10
  "@apollo/client": "3.13.8",
11
11
  "react": "19.0.0",
12
- "@trackunit/iris-app-api": "1.9.26",
13
- "@trackunit/iris-app-runtime-core-api": "1.7.98",
14
- "@trackunit/react-core-hooks": "1.7.102",
15
- "@trackunit/i18n-library-translation": "1.7.106",
16
- "@trackunit/react-components": "1.10.63",
17
- "@trackunit/iris-app-runtime-core": "1.8.98",
12
+ "@trackunit/iris-app-api": "1.9.30",
13
+ "@trackunit/iris-app-runtime-core-api": "1.7.102",
14
+ "@trackunit/react-core-hooks": "1.7.106",
15
+ "@trackunit/i18n-library-translation": "1.7.110",
16
+ "@trackunit/react-components": "1.10.67",
17
+ "@trackunit/iris-app-runtime-core": "1.8.102",
18
18
  "graphql": "^16.10.0",
19
19
  "graphql-sse": "^2.5.4",
20
20
  "@js-temporal/polyfill": "^0.5.1"
@@ -1,5 +1,6 @@
1
+ import { ReactNode } from "react";
1
2
  interface Props {
2
- children: React.ReactNode;
3
+ children: ReactNode;
3
4
  }
4
5
  /**
5
6
  * This is a provider for the ConfirmationDialogContext.
@@ -1,5 +1,6 @@
1
+ import { ReactNode } from "react";
1
2
  interface OemBrandingContextProviderIrisAppProps {
2
- children: React.ReactNode;
3
+ children: ReactNode;
3
4
  }
4
5
  /**
5
6
  * This is a provider for the OemBrandingContext.
@@ -1,5 +1,6 @@
1
+ import { ReactNode } from "react";
1
2
  interface Props {
2
- children: React.ReactNode;
3
+ children: ReactNode;
3
4
  }
4
5
  /**
5
6
  * This is a provider for the ToastContext.
@@ -1,5 +1,6 @@
1
+ import { ReactNode } from "react";
1
2
  interface TokenProviderIrisAppProps {
2
- children: React.ReactNode;
3
+ children: ReactNode;
3
4
  }
4
5
  /**
5
6
  * This is a provider for the TokenContext.
@@ -1,5 +1,6 @@
1
+ import { ReactNode } from "react";
1
2
  interface CurrentUserProviderIrisAppProps {
2
- children: React.ReactNode;
3
+ children: ReactNode;
3
4
  }
4
5
  /**
5
6
  * This is a provider for the CurrentUserContext.