@equinor/fusion-framework-app 10.1.3-next.0 → 10.2.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 +12 -12
- package/dist/esm/configure-modules.js +1 -1
- package/dist/esm/configure-modules.js.map +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +10 -10
- package/src/configure-modules.ts +5 -5
- package/src/version.ts +1 -1
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "10.
|
|
1
|
+
export declare const version = "10.2.0";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-app",
|
|
3
|
-
"version": "10.
|
|
3
|
+
"version": "10.2.0",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/esm/index.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -46,20 +46,20 @@
|
|
|
46
46
|
},
|
|
47
47
|
"dependencies": {
|
|
48
48
|
"rxjs": "^7.8.1",
|
|
49
|
-
"@equinor/fusion-framework": "^7.4.
|
|
50
|
-
"@equinor/fusion-framework-module": "^5.0.
|
|
51
|
-
"@equinor/fusion-framework-module-
|
|
52
|
-
"@equinor/fusion-framework-module-
|
|
53
|
-
"@equinor/fusion-framework-module-
|
|
54
|
-
"@equinor/fusion-framework-module-
|
|
55
|
-
"@equinor/fusion-framework-module-telemetry": "^
|
|
49
|
+
"@equinor/fusion-framework": "^7.4.2",
|
|
50
|
+
"@equinor/fusion-framework-module": "^5.0.5",
|
|
51
|
+
"@equinor/fusion-framework-module-app": "^7.2.0",
|
|
52
|
+
"@equinor/fusion-framework-module-event": "^4.4.0",
|
|
53
|
+
"@equinor/fusion-framework-module-http": "^7.0.5",
|
|
54
|
+
"@equinor/fusion-framework-module-msal": "^6.0.4",
|
|
55
|
+
"@equinor/fusion-framework-module-telemetry": "^4.6.0"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
58
|
"typescript": "^5.8.2",
|
|
59
|
-
"@equinor/fusion-framework-module-bookmark": "^3.0.
|
|
59
|
+
"@equinor/fusion-framework-module-bookmark": "^3.0.4"
|
|
60
60
|
},
|
|
61
61
|
"peerDependencies": {
|
|
62
|
-
"@equinor/fusion-framework-module-bookmark": "^3.0.
|
|
62
|
+
"@equinor/fusion-framework-module-bookmark": "^3.0.4"
|
|
63
63
|
},
|
|
64
64
|
"peerDependenciesMeta": {
|
|
65
65
|
"@equinor/fusion-framework-module-bookmark": {
|
package/src/configure-modules.ts
CHANGED
|
@@ -9,9 +9,9 @@ import { AppConfigurator } from './AppConfigurator';
|
|
|
9
9
|
import type { AppModulesInstance, AppModuleInitiator, AppEnv } from './types';
|
|
10
10
|
|
|
11
11
|
/**
|
|
12
|
-
*
|
|
12
|
+
*
|
|
13
13
|
* Creates a callback for initializing configuration of application modules
|
|
14
|
-
*
|
|
14
|
+
*
|
|
15
15
|
* @example
|
|
16
16
|
```ts
|
|
17
17
|
const initialize = configureModules((configurator, args) => {
|
|
@@ -22,9 +22,9 @@ import type { AppModulesInstance, AppModuleInitiator, AppEnv } from './types';
|
|
|
22
22
|
* @template TModules Addition modules
|
|
23
23
|
* @template TRef usually undefined, optional references
|
|
24
24
|
* @template TEnv environment object for configuring modules
|
|
25
|
-
*
|
|
25
|
+
*
|
|
26
26
|
* @param cb configuration callback
|
|
27
|
-
*
|
|
27
|
+
*
|
|
28
28
|
* @returns initialize function, executes configurator
|
|
29
29
|
*/
|
|
30
30
|
export const configureModules =
|
|
@@ -86,7 +86,7 @@ export const configureModules =
|
|
|
86
86
|
// TODO - remove check after fusion-cli is updated (app module is not enabled in fusion-cli)
|
|
87
87
|
if (args.env.manifest?.appKey) {
|
|
88
88
|
modules.event.dispatchEvent('onAppModulesLoaded', {
|
|
89
|
-
detail: { appKey: args.env.manifest.appKey, modules },
|
|
89
|
+
detail: { appKey: args.env.manifest.appKey, manifest: args.env.manifest, modules },
|
|
90
90
|
});
|
|
91
91
|
}
|
|
92
92
|
return modules;
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '10.
|
|
2
|
+
export const version = '10.2.0';
|