@trackunit/react-core-contexts-test 1.12.50 → 1.12.51

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.cjs2.js CHANGED
@@ -13669,6 +13669,9 @@ const RouterContainer = ({ addTestRootContainer, selectedRouterProps, rootRoute,
13669
13669
  hasAccessToRoute: async () => {
13670
13670
  return true;
13671
13671
  },
13672
+ hasFeatureFlag: async () => {
13673
+ return true;
13674
+ },
13672
13675
  showMarketplace: true,
13673
13676
  showHelpCenter: true,
13674
13677
  showAppLibrary: true,
@@ -13681,6 +13684,7 @@ const RouterContainer = ({ addTestRootContainer, selectedRouterProps, rootRoute,
13681
13684
  const context = React.useMemo(() => ({
13682
13685
  hasAccessToHostRoute: async () => true,
13683
13686
  hasAccessToRoute: async () => true,
13687
+ hasFeatureFlag: async () => true,
13684
13688
  isAuthenticated: true,
13685
13689
  client,
13686
13690
  defaultUserRoute: "/",
package/index.esm2.js CHANGED
@@ -13647,6 +13647,9 @@ const RouterContainer = ({ addTestRootContainer, selectedRouterProps, rootRoute,
13647
13647
  hasAccessToRoute: async () => {
13648
13648
  return true;
13649
13649
  },
13650
+ hasFeatureFlag: async () => {
13651
+ return true;
13652
+ },
13650
13653
  showMarketplace: true,
13651
13654
  showHelpCenter: true,
13652
13655
  showAppLibrary: true,
@@ -13659,6 +13662,7 @@ const RouterContainer = ({ addTestRootContainer, selectedRouterProps, rootRoute,
13659
13662
  const context = useMemo(() => ({
13660
13663
  hasAccessToHostRoute: async () => true,
13661
13664
  hasAccessToRoute: async () => true,
13665
+ hasFeatureFlag: async () => true,
13662
13666
  isAuthenticated: true,
13663
13667
  client,
13664
13668
  defaultUserRoute: "/",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/react-core-contexts-test",
3
- "version": "1.12.50",
3
+ "version": "1.12.51",
4
4
  "repository": "https://github.com/Trackunit/manager",
5
5
  "license": "SEE LICENSE IN LICENSE.txt",
6
6
  "engines": {
@@ -10,11 +10,11 @@
10
10
  "@apollo/client": "3.13.8",
11
11
  "react": "19.0.0",
12
12
  "@tanstack/react-router": "1.114.29",
13
- "@trackunit/shared-utils": "1.13.64",
13
+ "@trackunit/shared-utils": "1.13.65",
14
14
  "graphql": "^16.10.0",
15
15
  "@tanstack/router-core": "1.114.29",
16
- "@trackunit/iris-app-runtime-core-api": "1.12.47",
17
- "@trackunit/react-core-contexts-api": "1.13.47",
16
+ "@trackunit/iris-app-runtime-core-api": "1.12.48",
17
+ "@trackunit/react-core-contexts-api": "1.13.48",
18
18
  "es-toolkit": "^1.39.10"
19
19
  },
20
20
  "module": "./index.esm.js",