@trackunit/react-core-hooks 1.7.103 → 1.7.106

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-hooks",
3
- "version": "1.7.103",
3
+ "version": "1.7.106",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -8,8 +8,8 @@
8
8
  },
9
9
  "dependencies": {
10
10
  "react": "19.0.0",
11
- "@trackunit/iris-app-runtime-core": "1.8.99",
12
- "@trackunit/iris-app-runtime-core-api": "1.7.99"
11
+ "@trackunit/iris-app-runtime-core": "1.8.102",
12
+ "@trackunit/iris-app-runtime-core-api": "1.7.102"
13
13
  },
14
14
  "module": "./index.esm.js",
15
15
  "main": "./index.cjs.js",
@@ -1,7 +1,8 @@
1
1
  import { EnvironmentState } from "@trackunit/iris-app-runtime-core-api";
2
+ import { ReactNode } from "react";
2
3
  interface EnvironmentContextProviderProps {
3
4
  value: EnvironmentState;
4
- children?: React.ReactNode;
5
+ children?: ReactNode;
5
6
  }
6
7
  /**
7
8
  * This is a provider for the EnvironmentContext.
@@ -1,7 +1,8 @@
1
1
  import { HasAccessToOptions, NavigationRuntimeApi } from "@trackunit/iris-app-runtime-core-api";
2
+ import { ReactNode } from "react";
2
3
  interface NavigationContextProviderProps {
3
4
  value: NavigationRuntimeApi;
4
- children?: React.ReactNode;
5
+ children?: ReactNode;
5
6
  }
6
7
  /**
7
8
  * This is a provider for the NavigationContext.
@@ -1,4 +1,5 @@
1
1
  import { OemBrandingRuntimeApi } from "@trackunit/iris-app-runtime-core-api";
2
+ import { ReactNode } from "react";
2
3
  /**
3
4
  * This is a hook to use the OemBrandingContext.
4
5
  *
@@ -13,7 +14,7 @@ import { OemBrandingRuntimeApi } from "@trackunit/iris-app-runtime-core-api";
13
14
  export declare const useOemBrandingContext: () => OemBrandingRuntimeApi;
14
15
  interface OemBrandingContextProviderProps {
15
16
  value: OemBrandingRuntimeApi;
16
- children?: React.ReactNode;
17
+ children?: ReactNode;
17
18
  }
18
19
  /**
19
20
  * This is a provider for the OemBrandingContext.