@equinor/fusion-framework-react-app 4.3.2 → 4.3.4

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.
@@ -1 +1 @@
1
- export declare const version = "4.3.2";
1
+ export declare const version = "4.3.4";
@@ -0,0 +1,4 @@
1
+ export type { WidgetModuleInitiator } from '@equinor/fusion-framework-react-widget';
2
+ export type { WidgetProps, WidgetModule, WidgetRenderArgs, WidgetStateInitial, } from '@equinor/fusion-framework-react-widget';
3
+ export { Widget } from '@equinor/fusion-framework-react-widget';
4
+ export { Widget as default } from '@equinor/fusion-framework-react-widget';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@equinor/fusion-framework-react-app",
3
- "version": "4.3.2",
3
+ "version": "4.3.4",
4
4
  "description": "",
5
5
  "main": "dist/esm/index.js",
6
6
  "exports": {
@@ -11,7 +11,8 @@
11
11
  "./framework": "./dist/esm/framework/index.js",
12
12
  "./http": "./dist/esm/http/index.js",
13
13
  "./msal": "./dist/esm/msal/index.js",
14
- "./navigation": "./dist/esm/navigation/index.js"
14
+ "./navigation": "./dist/esm/navigation/index.js",
15
+ "./widget": "./dist/esm/widget/index.js"
15
16
  },
16
17
  "types": "./dist/types/index.d.ts",
17
18
  "typesVersions": {
@@ -34,8 +35,8 @@
34
35
  "msal": [
35
36
  "dist/types/msal/index.d.ts"
36
37
  ],
37
- "navigation": [
38
- "dist/types/navigation/index.d.ts"
38
+ "widget": [
39
+ "dist/types/widget/index.d.ts"
39
40
  ]
40
41
  }
41
42
  },
@@ -51,13 +52,13 @@
51
52
  "directory": "packages/react"
52
53
  },
53
54
  "dependencies": {
54
- "@equinor/fusion-framework-app": "^8.1.0",
55
- "@equinor/fusion-framework-module": "^4.2.6",
55
+ "@equinor/fusion-framework-app": "^8.1.1",
56
+ "@equinor/fusion-framework-module": "^4.2.7",
56
57
  "@equinor/fusion-framework-module-app": "^5.2.13",
57
- "@equinor/fusion-framework-module-navigation": "^3.1.3",
58
- "@equinor/fusion-framework-react": "^6.0.1",
59
- "@equinor/fusion-framework-react-module": "^3.0.7",
60
- "@equinor/fusion-framework-react-module-http": "^4.0.5"
58
+ "@equinor/fusion-framework-module-navigation": "^3.1.4",
59
+ "@equinor/fusion-framework-react": "^6.0.2",
60
+ "@equinor/fusion-framework-react-module": "^3.0.8",
61
+ "@equinor/fusion-framework-react-module-http": "^4.0.6"
61
62
  },
62
63
  "devDependencies": {
63
64
  "@types/react": "^18.2.50",
@@ -66,11 +67,12 @@
66
67
  "react-dom": "^18.2.0",
67
68
  "rxjs": "^7.8.1",
68
69
  "typescript": "^5.1.3",
69
- "@equinor/fusion-framework-module-event": "^4.0.7",
70
- "@equinor/fusion-framework-module-feature-flag": "^1.0.1",
71
- "@equinor/fusion-framework-module-msal": "^3.0.9",
72
- "@equinor/fusion-framework-react-module-bookmark": "^2.0.31",
73
- "@equinor/fusion-framework-react-module-context": "^6.0.19",
70
+ "@equinor/fusion-framework-module-feature-flag": "^1.0.2",
71
+ "@equinor/fusion-framework-module-event": "^4.0.8",
72
+ "@equinor/fusion-framework-module-msal": "^3.0.10",
73
+ "@equinor/fusion-framework-react-module-bookmark": "^2.0.32",
74
+ "@equinor/fusion-framework-react-widget": "^1.0.0",
75
+ "@equinor/fusion-framework-react-module-context": "^6.0.20",
74
76
  "@equinor/fusion-observable": "^8.1.5"
75
77
  },
76
78
  "peerDependencies": {
@@ -78,7 +80,7 @@
78
80
  "react": "^17.0.0 || ^18.0.0",
79
81
  "react-dom": "^17.0.0 || ^18.0.0",
80
82
  "rxjs": "^7.8.1",
81
- "@equinor/fusion-framework-module-msal": "^3.0.9"
83
+ "@equinor/fusion-framework-module-msal": "^3.0.10"
82
84
  },
83
85
  "peerDependenciesMeta": {
84
86
  "@equinor/fusion-framework-react-module-context": {
@@ -93,6 +95,9 @@
93
95
  "@equinor/fusion-framework-module-feature-flag": {
94
96
  "optional": true
95
97
  },
98
+ "@equinor/fusion-framework-react-widget": {
99
+ "optional": true
100
+ },
96
101
  "@equinor/fusion-observable": {
97
102
  "optional": true
98
103
  },
package/src/version.ts CHANGED
@@ -1,2 +1,2 @@
1
1
  // Generated by genversion.
2
- export const version = '4.3.2';
2
+ export const version = '4.3.4';
@@ -0,0 +1,13 @@
1
+ /**
2
+ * [[include:react-app/README.MD]]
3
+ * @module
4
+ */
5
+ export type { WidgetModuleInitiator } from '@equinor/fusion-framework-react-widget';
6
+ export type {
7
+ WidgetProps,
8
+ WidgetModule,
9
+ WidgetRenderArgs,
10
+ WidgetStateInitial,
11
+ } from '@equinor/fusion-framework-react-widget';
12
+ export { Widget } from '@equinor/fusion-framework-react-widget';
13
+ export { Widget as default } from '@equinor/fusion-framework-react-widget';
package/tsconfig.json CHANGED
@@ -30,6 +30,9 @@
30
30
  },
31
31
  {
32
32
  "path": "../../modules/navigation"
33
+ },
34
+ {
35
+ "path": "../widget"
33
36
  }
34
37
  ],
35
38
  "include": [