@equinor/fusion-framework 7.3.16 → 7.3.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.
@@ -15,5 +15,5 @@ export { FrameworkConfigurator,
15
15
  * @deprecated use FrameworkConfigurator
16
16
  */
17
17
  FrameworkConfigurator as FusionConfigurator, } from './FrameworkConfigurator';
18
- export * from './types';
18
+ export type { FusionModules, FusionModulesInstance, Fusion, FusionRenderFn } from './types';
19
19
  export { default, init } from './init';
@@ -27,3 +27,6 @@ export interface Fusion<TModules extends Array<AnyModule> | unknown = unknown> {
27
27
  */
28
28
  modules: FusionModulesInstance<TModules>;
29
29
  }
30
+ export type FusionRenderFn = (el: HTMLElement, args: {
31
+ ref: ModulesInstance<AnyModule[]>;
32
+ }) => void;
@@ -1 +1 @@
1
- export declare const version = "7.3.16";
1
+ export declare const version = "7.3.17";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework",
3
- "version": "7.3.16",
3
+ "version": "7.3.17",
4
4
  "description": "",
5
5
  "main": "dist/esm/index.js",
6
6
  "types": "dist/types/index.d.ts",
@@ -32,13 +32,13 @@
32
32
  },
33
33
  "dependencies": {
34
34
  "rxjs": "^7.8.1",
35
- "@equinor/fusion-framework-module": "^4.4.2",
36
- "@equinor/fusion-framework-module-context": "^6.0.6",
37
- "@equinor/fusion-framework-module-event": "^4.3.6",
38
- "@equinor/fusion-framework-module-http": "^6.3.3",
39
- "@equinor/fusion-framework-module-service-discovery": "^8.0.17",
40
- "@equinor/fusion-framework-module-msal": "^4.0.7",
41
- "@equinor/fusion-framework-module-services": "^6.0.4"
35
+ "@equinor/fusion-framework-module-context": "^7.0.0",
36
+ "@equinor/fusion-framework-module-event": "^4.3.7",
37
+ "@equinor/fusion-framework-module": "^5.0.0",
38
+ "@equinor/fusion-framework-module-http": "^6.3.4",
39
+ "@equinor/fusion-framework-module-msal": "^4.0.8",
40
+ "@equinor/fusion-framework-module-services": "^7.0.0",
41
+ "@equinor/fusion-framework-module-service-discovery": "^8.0.18"
42
42
  },
43
43
  "devDependencies": {
44
44
  "typescript": "^5.8.2"
package/src/index.ts CHANGED
@@ -21,6 +21,6 @@ export {
21
21
  FrameworkConfigurator as FusionConfigurator,
22
22
  } from './FrameworkConfigurator';
23
23
 
24
- export * from './types';
24
+ export type { FusionModules, FusionModulesInstance, Fusion, FusionRenderFn } from './types';
25
25
 
26
26
  export { default, init } from './init';
package/src/types.ts CHANGED
@@ -28,3 +28,5 @@ export interface Fusion<TModules extends Array<AnyModule> | unknown = unknown> {
28
28
  */
29
29
  modules: FusionModulesInstance<TModules>;
30
30
  }
31
+
32
+ export type FusionRenderFn = (el: HTMLElement, args: { ref: ModulesInstance<AnyModule[]> }) => void;
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '7.3.16';
2
+ export const version = '7.3.17';