@equinor/fusion-framework-react 8.0.1 → 9.0.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/CHANGELOG.md +10 -0
- package/dist/esm/useFrameworkModule.js +1 -1
- package/dist/esm/useFrameworkModule.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +14 -14
- package/src/useFrameworkModule.ts +1 -1
- package/src/version.ts +1 -1
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "
|
|
1
|
+
export declare const version = "9.0.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-react",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "9.0.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"types": "dist/types/index.d.ts",
|
|
@@ -72,11 +72,11 @@
|
|
|
72
72
|
},
|
|
73
73
|
"dependencies": {
|
|
74
74
|
"rxjs": "^7.8.1",
|
|
75
|
-
"@equinor/fusion-framework": "^8.0
|
|
76
|
-
"@equinor/fusion-framework-react-module": "^4.0.
|
|
77
|
-
"@equinor/fusion-framework-react-module-http": "^
|
|
78
|
-
"@equinor/fusion-
|
|
79
|
-
"@equinor/fusion-
|
|
75
|
+
"@equinor/fusion-framework": "^8.1.0",
|
|
76
|
+
"@equinor/fusion-framework-react-module": "^4.0.3",
|
|
77
|
+
"@equinor/fusion-framework-react-module-http": "^12.0.0",
|
|
78
|
+
"@equinor/fusion-framework-module": "^6.1.3",
|
|
79
|
+
"@equinor/fusion-observable": "^9.2.1"
|
|
80
80
|
},
|
|
81
81
|
"devDependencies": {
|
|
82
82
|
"@types/react": "^19.2.7",
|
|
@@ -84,19 +84,19 @@
|
|
|
84
84
|
"react": "^19.2.1",
|
|
85
85
|
"react-dom": "^19.2.1",
|
|
86
86
|
"typescript": "^7.0.2",
|
|
87
|
-
"@equinor/fusion-framework-module-app": "^8.0
|
|
88
|
-
"@equinor/fusion-framework-module-event": "^6.0
|
|
89
|
-
"@equinor/fusion-framework-module-
|
|
90
|
-
"@equinor/fusion-framework-
|
|
91
|
-
"@equinor/fusion-framework-module-
|
|
92
|
-
"@equinor/fusion-framework-react-module-signalr": "^4.0.
|
|
87
|
+
"@equinor/fusion-framework-module-app": "^8.1.0",
|
|
88
|
+
"@equinor/fusion-framework-module-event": "^6.1.0",
|
|
89
|
+
"@equinor/fusion-framework-module-feature-flag": "^2.1.0",
|
|
90
|
+
"@equinor/fusion-framework-module-msal": "^11.0.0",
|
|
91
|
+
"@equinor/fusion-framework-react-module-context": "^7.0.3",
|
|
92
|
+
"@equinor/fusion-framework-react-module-signalr": "^4.0.4"
|
|
93
93
|
},
|
|
94
94
|
"peerDependencies": {
|
|
95
95
|
"@types/react": "^18.0.0 || ^19.0.0",
|
|
96
96
|
"react": "^18.0.0 || ^19.0.0",
|
|
97
97
|
"react-dom": "^18.0.0 || ^19.0.0",
|
|
98
|
-
"@equinor/fusion-framework-module-feature-flag": "^2.0
|
|
99
|
-
"@equinor/fusion-framework-react-module-signalr": "^4.0.
|
|
98
|
+
"@equinor/fusion-framework-module-feature-flag": "^2.1.0",
|
|
99
|
+
"@equinor/fusion-framework-react-module-signalr": "^4.0.4"
|
|
100
100
|
},
|
|
101
101
|
"peerDependenciesMeta": {
|
|
102
102
|
"@equinor/fusion-framework-module-event": {
|
|
@@ -38,7 +38,7 @@ export const useFrameworkModule = <
|
|
|
38
38
|
const module = framework.modules[name];
|
|
39
39
|
// Warn when the requested module key does not resolve to a registered module
|
|
40
40
|
if (!module) {
|
|
41
|
-
console.warn(`the requested module [${
|
|
41
|
+
console.warn(`the requested module [${name}] is not included in the framework instance`);
|
|
42
42
|
}
|
|
43
43
|
return module;
|
|
44
44
|
};
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '
|
|
2
|
+
export const version = '9.0.0';
|