@equinor/fusion-framework-react-app 6.2.7 → 7.0.1
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 +24 -0
- package/dist/esm/help-center/useHelpCenter.js +6 -6
- package/dist/esm/help-center/useHelpCenter.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/help-center/useHelpCenter.ts +6 -6
- 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 = "7.0.1";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-react-app",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "7.0.1",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -106,13 +106,13 @@
|
|
|
106
106
|
"directory": "packages/react"
|
|
107
107
|
},
|
|
108
108
|
"dependencies": {
|
|
109
|
-
"@equinor/fusion-framework-app": "^
|
|
110
|
-
"@equinor/fusion-framework-module": "^5.0.
|
|
109
|
+
"@equinor/fusion-framework-app": "^10.1.1",
|
|
110
|
+
"@equinor/fusion-framework-module": "^5.0.4",
|
|
111
|
+
"@equinor/fusion-framework-module-app": "^7.0.2",
|
|
111
112
|
"@equinor/fusion-framework-module-navigation": "^6.0.0",
|
|
112
|
-
"@equinor/fusion-framework-react": "^7.4.
|
|
113
|
-
"@equinor/fusion-framework-module-app": "^6.1.17",
|
|
113
|
+
"@equinor/fusion-framework-react": "^7.4.18",
|
|
114
114
|
"@equinor/fusion-framework-react-module": "^3.1.13",
|
|
115
|
-
"@equinor/fusion-framework-react-module-http": "^
|
|
115
|
+
"@equinor/fusion-framework-react-module-http": "^10.0.0"
|
|
116
116
|
},
|
|
117
117
|
"devDependencies": {
|
|
118
118
|
"@types/react": "^18.2.50",
|
|
@@ -121,20 +121,20 @@
|
|
|
121
121
|
"react-dom": "^18.2.0",
|
|
122
122
|
"rxjs": "^7.8.1",
|
|
123
123
|
"typescript": "^5.8.2",
|
|
124
|
-
"@equinor/fusion-framework-module-ag-grid": "^34.1
|
|
125
|
-
"@equinor/fusion-framework-module-event": "^4.
|
|
126
|
-
"@equinor/fusion-framework-module-feature-flag": "^1.1.
|
|
127
|
-
"@equinor/fusion-framework-
|
|
128
|
-
"@equinor/fusion-framework-react-module-
|
|
129
|
-
"@equinor/fusion-
|
|
130
|
-
"@equinor/fusion-
|
|
124
|
+
"@equinor/fusion-framework-module-ag-grid": "^34.2.1",
|
|
125
|
+
"@equinor/fusion-framework-module-event": "^4.4.0",
|
|
126
|
+
"@equinor/fusion-framework-module-feature-flag": "^1.1.25",
|
|
127
|
+
"@equinor/fusion-framework-module-msal": "^5.1.1",
|
|
128
|
+
"@equinor/fusion-framework-react-module-bookmark": "^5.0.1",
|
|
129
|
+
"@equinor/fusion-framework-react-module-context": "^6.2.33",
|
|
130
|
+
"@equinor/fusion-observable": "^8.5.5"
|
|
131
131
|
},
|
|
132
132
|
"peerDependencies": {
|
|
133
133
|
"@types/react": "^17.0.0 || ^18.0.0",
|
|
134
134
|
"react": "^17.0.0 || ^18.0.0",
|
|
135
135
|
"react-dom": "^17.0.0 || ^18.0.0",
|
|
136
136
|
"rxjs": "^7.8.1",
|
|
137
|
-
"@equinor/fusion-framework-module-msal": "^
|
|
137
|
+
"@equinor/fusion-framework-module-msal": "^5.1.1"
|
|
138
138
|
},
|
|
139
139
|
"peerDependenciesMeta": {
|
|
140
140
|
"@equinor/fusion-framework-react-module-ag-grid": {
|
|
@@ -88,7 +88,7 @@ export const useHelpCenter = (): HelpCenter => {
|
|
|
88
88
|
page: 'home',
|
|
89
89
|
},
|
|
90
90
|
});
|
|
91
|
-
}, [eventModule
|
|
91
|
+
}, [eventModule]);
|
|
92
92
|
|
|
93
93
|
const openArticle = useCallback(
|
|
94
94
|
(articleId: string): void => {
|
|
@@ -99,7 +99,7 @@ export const useHelpCenter = (): HelpCenter => {
|
|
|
99
99
|
},
|
|
100
100
|
});
|
|
101
101
|
},
|
|
102
|
-
[eventModule
|
|
102
|
+
[eventModule],
|
|
103
103
|
);
|
|
104
104
|
|
|
105
105
|
const openFaqs = useCallback((): void => {
|
|
@@ -108,7 +108,7 @@ export const useHelpCenter = (): HelpCenter => {
|
|
|
108
108
|
page: 'faqs',
|
|
109
109
|
},
|
|
110
110
|
});
|
|
111
|
-
}, [eventModule
|
|
111
|
+
}, [eventModule]);
|
|
112
112
|
|
|
113
113
|
const openSearch = useCallback(
|
|
114
114
|
(search: string): void => {
|
|
@@ -119,7 +119,7 @@ export const useHelpCenter = (): HelpCenter => {
|
|
|
119
119
|
},
|
|
120
120
|
});
|
|
121
121
|
},
|
|
122
|
-
[eventModule
|
|
122
|
+
[eventModule],
|
|
123
123
|
);
|
|
124
124
|
|
|
125
125
|
const openGovernance = useCallback((): void => {
|
|
@@ -128,7 +128,7 @@ export const useHelpCenter = (): HelpCenter => {
|
|
|
128
128
|
page: 'governance',
|
|
129
129
|
},
|
|
130
130
|
});
|
|
131
|
-
}, [eventModule
|
|
131
|
+
}, [eventModule]);
|
|
132
132
|
|
|
133
133
|
const openReleaseNotes = useCallback((): void => {
|
|
134
134
|
eventModule.dispatchEvent(EVENT_NAME, {
|
|
@@ -136,7 +136,7 @@ export const useHelpCenter = (): HelpCenter => {
|
|
|
136
136
|
page: 'release-notes',
|
|
137
137
|
},
|
|
138
138
|
});
|
|
139
|
-
}, [eventModule
|
|
139
|
+
}, [eventModule]);
|
|
140
140
|
|
|
141
141
|
return {
|
|
142
142
|
openHelp,
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '
|
|
2
|
+
export const version = '7.0.1';
|