@trackunit/react-core-contexts 1.14.8 → 1.14.10-alpha-e76d0654d61.0

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.14.8",
3
+ "version": "1.14.10-alpha-e76d0654d61.0",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -9,16 +9,16 @@
9
9
  "dependencies": {
10
10
  "@apollo/client": "3.13.8",
11
11
  "react": "19.0.0",
12
- "@trackunit/iris-app-api": "1.14.7",
13
- "@trackunit/iris-app-runtime-core-api": "1.11.7",
14
- "@trackunit/react-core-hooks": "1.11.7",
15
- "@trackunit/i18n-library-translation": "1.11.7",
16
- "@trackunit/react-components": "1.15.8",
17
- "@trackunit/iris-app-runtime-core": "1.12.7",
18
- "graphql": "^16.10.0",
12
+ "@trackunit/iris-app-api": "1.14.9-alpha-e76d0654d61.0",
13
+ "@trackunit/iris-app-runtime-core-api": "1.11.9-alpha-e76d0654d61.0",
14
+ "@trackunit/react-core-hooks": "1.11.9-alpha-e76d0654d61.0",
15
+ "@trackunit/i18n-library-translation": "1.11.9-alpha-e76d0654d61.0",
16
+ "@trackunit/react-components": "1.15.10-alpha-e76d0654d61.0",
17
+ "@trackunit/iris-app-runtime-core": "1.12.9-alpha-e76d0654d61.0",
18
+ "graphql": "16.12.0",
19
19
  "graphql-sse": "^2.5.4",
20
20
  "@js-temporal/polyfill": "^0.5.1",
21
- "@trackunit/react-core-contexts-api": "1.12.7"
21
+ "@trackunit/react-core-contexts-api": "1.12.9-alpha-e76d0654d61.0"
22
22
  },
23
23
  "module": "./index.esm.js",
24
24
  "main": "./index.cjs.js",
@@ -1,9 +1,9 @@
1
1
  import { ReactNode } from "react";
2
- interface IProps {
2
+ interface NavigationProviderProps {
3
3
  children: ReactNode;
4
4
  }
5
5
  /**
6
6
  * This is a provider for the NavigationContext.
7
7
  */
8
- export declare const NavigationProviderIrisApp: ({ children }: IProps) => import("react/jsx-runtime").JSX.Element;
8
+ export declare const NavigationProviderIrisApp: ({ children }: NavigationProviderProps) => import("react/jsx-runtime").JSX.Element;
9
9
  export {};
@@ -1,9 +1,9 @@
1
1
  import { ReactNode } from "react";
2
- interface IProps {
2
+ interface UserSubscriptionProviderProps {
3
3
  children: ReactNode;
4
4
  }
5
5
  /**
6
6
  * This is a provider for the UserSubscriptionContext.
7
7
  */
8
- export declare const UserSubscriptionProviderIrisApp: ({ children }: IProps) => import("react/jsx-runtime").JSX.Element | null;
8
+ export declare const UserSubscriptionProviderIrisApp: ({ children }: UserSubscriptionProviderProps) => import("react/jsx-runtime").JSX.Element | null;
9
9
  export {};