@trackunit/react-core-hooks 0.2.15 → 0.2.17
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": "0.2.
|
|
3
|
+
"version": "0.2.17",
|
|
4
4
|
"repository": "https://github.com/Trackunit/manager",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
6
6
|
"module": "./index.js",
|
|
@@ -8,10 +8,10 @@
|
|
|
8
8
|
"type": "module",
|
|
9
9
|
"types": "./src/index.d.ts",
|
|
10
10
|
"dependencies": {
|
|
11
|
-
"@trackunit/react-core-contexts-api": "0.2.
|
|
11
|
+
"@trackunit/react-core-contexts-api": "0.2.9",
|
|
12
12
|
"react": "18.2.0",
|
|
13
13
|
"launchdarkly-react-client-sdk": "2.29.3",
|
|
14
|
-
"@trackunit/iris-app-runtime-core": "0.3.
|
|
14
|
+
"@trackunit/iris-app-runtime-core": "0.3.8",
|
|
15
15
|
"react-router-dom": "6.4.5"
|
|
16
16
|
},
|
|
17
17
|
"peerDependencies": {}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { IAssetRuntime } from "@trackunit/iris-app-runtime-core";
|
|
2
|
-
interface UseAssetRuntime extends IAssetRuntime {
|
|
2
|
+
export interface UseAssetRuntime extends IAssetRuntime {
|
|
3
3
|
}
|
|
4
4
|
/**
|
|
5
5
|
* A hook to expose asset runtime for React components
|
|
@@ -7,4 +7,3 @@ interface UseAssetRuntime extends IAssetRuntime {
|
|
|
7
7
|
* @returns {UseAssetRuntime} assetRuntime
|
|
8
8
|
*/
|
|
9
9
|
export declare const useAssetRuntime: () => UseAssetRuntime;
|
|
10
|
-
export {};
|