@equinor/fusion-framework-react-app 5.0.0 → 5.0.3
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 +6 -0
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +43 -44
- package/src/version.ts +1 -1
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "5.0.
|
|
1
|
+
export declare const version = "5.0.3";
|
package/package.json
CHANGED
|
@@ -1,46 +1,45 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-react-app",
|
|
3
|
-
"version": "5.0.
|
|
3
|
+
"version": "5.0.3",
|
|
4
4
|
"description": "",
|
|
5
|
-
"main": "dist/esm/index.js",
|
|
6
|
-
"exports": {
|
|
7
|
-
".": "./dist/esm/index.js",
|
|
8
|
-
"./bookmark": "./dist/esm/bookmark/index.js",
|
|
9
|
-
"./context": "./dist/esm/context/index.js",
|
|
10
|
-
"./feature-flag": "./dist/esm/feature-flag/index.js",
|
|
11
|
-
"./framework": "./dist/esm/framework/index.js",
|
|
12
|
-
"./http": "./dist/esm/http/index.js",
|
|
13
|
-
"./msal": "./dist/esm/msal/index.js",
|
|
14
|
-
"./navigation": "./dist/esm/navigation/index.js",
|
|
15
|
-
"./widget": "./dist/esm/widget/index.js"
|
|
16
|
-
},
|
|
5
|
+
"main": "./dist/esm/index.js",
|
|
17
6
|
"types": "./dist/types/index.d.ts",
|
|
18
|
-
"
|
|
19
|
-
"
|
|
20
|
-
"
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
"
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
"
|
|
42
|
-
|
|
43
|
-
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/types/index.d.ts",
|
|
10
|
+
"import": "./dist/esm/index.js"
|
|
11
|
+
},
|
|
12
|
+
"./bookmark": {
|
|
13
|
+
"types": "./dist/types/bookmark/index.d.ts",
|
|
14
|
+
"import": "./dist/esm/bookmark/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./context": {
|
|
17
|
+
"types": "./dist/types/context/index.d.ts",
|
|
18
|
+
"import": "./dist/esm/context/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./feature-flag": {
|
|
21
|
+
"types": "./dist/types/feature-flag/index.d.ts",
|
|
22
|
+
"import": "./dist/esm/feature-flag/index.js"
|
|
23
|
+
},
|
|
24
|
+
"./framework": {
|
|
25
|
+
"types": "./dist/types/framework/index.d.ts",
|
|
26
|
+
"import": "./dist/esm/framework/index.js"
|
|
27
|
+
},
|
|
28
|
+
"./http": {
|
|
29
|
+
"types": "./dist/types/http/index.d.ts",
|
|
30
|
+
"import": "./dist/esm/http/index.js"
|
|
31
|
+
},
|
|
32
|
+
"./msal": {
|
|
33
|
+
"types": "./dist/types/msal/index.d.ts",
|
|
34
|
+
"import": "./dist/esm/msal/index.js"
|
|
35
|
+
},
|
|
36
|
+
"./navigation": {
|
|
37
|
+
"types": "./dist/types/navigation/index.d.ts",
|
|
38
|
+
"import": "./dist/esm/navigation/index.js"
|
|
39
|
+
},
|
|
40
|
+
"./widget": {
|
|
41
|
+
"types": "./dist/types/widget/index.d.ts",
|
|
42
|
+
"import": "./dist/esm/widget/index.js"
|
|
44
43
|
}
|
|
45
44
|
},
|
|
46
45
|
"keywords": [],
|
|
@@ -57,11 +56,11 @@
|
|
|
57
56
|
"dependencies": {
|
|
58
57
|
"@equinor/fusion-framework-app": "^9.0.0",
|
|
59
58
|
"@equinor/fusion-framework-module": "^4.3.0",
|
|
60
|
-
"@equinor/fusion-framework-module-app": "^5.3.0",
|
|
61
59
|
"@equinor/fusion-framework-module-navigation": "^4.0.0",
|
|
62
|
-
"@equinor/fusion-framework-react-module": "^3.1.0",
|
|
63
60
|
"@equinor/fusion-framework-react": "^7.0.0",
|
|
64
|
-
"@equinor/fusion-framework-react-module-http": "^5.0.0"
|
|
61
|
+
"@equinor/fusion-framework-react-module-http": "^5.0.0",
|
|
62
|
+
"@equinor/fusion-framework-module-app": "^5.3.0",
|
|
63
|
+
"@equinor/fusion-framework-react-module": "^3.1.0"
|
|
65
64
|
},
|
|
66
65
|
"devDependencies": {
|
|
67
66
|
"@types/react": "^18.2.50",
|
|
@@ -74,9 +73,9 @@
|
|
|
74
73
|
"@equinor/fusion-framework-module-feature-flag": "^1.1.0",
|
|
75
74
|
"@equinor/fusion-framework-module-msal": "^3.1.0",
|
|
76
75
|
"@equinor/fusion-framework-react-module-bookmark": "^2.1.0",
|
|
76
|
+
"@equinor/fusion-framework-react-module-context": "^6.2.0",
|
|
77
77
|
"@equinor/fusion-framework-react-widget": "^1.1.0",
|
|
78
|
-
"@equinor/fusion-observable": "^8.2.0"
|
|
79
|
-
"@equinor/fusion-framework-react-module-context": "^6.2.0"
|
|
78
|
+
"@equinor/fusion-observable": "^8.2.0"
|
|
80
79
|
},
|
|
81
80
|
"peerDependencies": {
|
|
82
81
|
"@types/react": "^17.0.0 || ^18.0.0",
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '5.0.
|
|
2
|
+
export const version = '5.0.3';
|