@equinor/fusion-framework-react-app 10.0.1 → 10.0.2
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 +7 -0
- package/dist/esm/navigation/useRouter.js +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/dist/types/navigation/useRouter.d.ts +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -4
- package/src/navigation/useRouter.ts +1 -1
- package/src/version.ts +1 -1
|
@@ -15,7 +15,7 @@ import type { INavigationProvider } from '@equinor/fusion-framework-module-navig
|
|
|
15
15
|
* @example
|
|
16
16
|
* ```tsx
|
|
17
17
|
* import { useRouter } from '@equinor/fusion-framework-react-app/navigation';
|
|
18
|
-
* import { RouterProvider } from 'react-router
|
|
18
|
+
* import { RouterProvider } from '@equinor/fusion-framework-react-router';
|
|
19
19
|
*
|
|
20
20
|
* const routes = [{ path: '/', element: <Home /> }];
|
|
21
21
|
* const App = () => {
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "10.0.
|
|
1
|
+
export declare const version = "10.0.2";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@equinor/fusion-framework-react-app",
|
|
3
|
-
"version": "10.0.
|
|
3
|
+
"version": "10.0.2",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "./dist/esm/index.js",
|
|
6
6
|
"types": "./dist/types/index.d.ts",
|
|
@@ -120,10 +120,10 @@
|
|
|
120
120
|
"@equinor/fusion-framework-app": "11.0.1",
|
|
121
121
|
"@equinor/fusion-framework-module": "6.0.0",
|
|
122
122
|
"@equinor/fusion-framework-module-app": "8.0.0",
|
|
123
|
-
"@equinor/fusion-framework-module-
|
|
124
|
-
"@equinor/fusion-framework-module-navigation": "7.0.0",
|
|
123
|
+
"@equinor/fusion-framework-module-navigation": "7.0.1",
|
|
125
124
|
"@equinor/fusion-framework-react": "8.0.0",
|
|
126
125
|
"@equinor/fusion-framework-react-module": "4.0.0",
|
|
126
|
+
"@equinor/fusion-framework-module-http": "8.0.0",
|
|
127
127
|
"@equinor/fusion-framework-react-module-http": "11.0.0"
|
|
128
128
|
},
|
|
129
129
|
"devDependencies": {
|
|
@@ -136,11 +136,11 @@
|
|
|
136
136
|
"typescript": "^5.9.3",
|
|
137
137
|
"vitest": "^4.1.0",
|
|
138
138
|
"@equinor/fusion-framework-module-ag-grid": "36.0.0",
|
|
139
|
+
"@equinor/fusion-framework-module-analytics": "2.0.1",
|
|
139
140
|
"@equinor/fusion-framework-module-event": "6.0.0",
|
|
140
141
|
"@equinor/fusion-framework-module-feature-flag": "2.0.0",
|
|
141
142
|
"@equinor/fusion-framework-module-msal": "8.0.1",
|
|
142
143
|
"@equinor/fusion-framework-react-module-bookmark": "6.0.0",
|
|
143
|
-
"@equinor/fusion-framework-module-analytics": "2.0.1",
|
|
144
144
|
"@equinor/fusion-observable": "9.0.0",
|
|
145
145
|
"@equinor/fusion-framework-react-module-context": "7.0.0"
|
|
146
146
|
},
|
|
@@ -18,7 +18,7 @@ import type { INavigationProvider } from '@equinor/fusion-framework-module-navig
|
|
|
18
18
|
* @example
|
|
19
19
|
* ```tsx
|
|
20
20
|
* import { useRouter } from '@equinor/fusion-framework-react-app/navigation';
|
|
21
|
-
* import { RouterProvider } from 'react-router
|
|
21
|
+
* import { RouterProvider } from '@equinor/fusion-framework-react-router';
|
|
22
22
|
*
|
|
23
23
|
* const routes = [{ path: '/', element: <Home /> }];
|
|
24
24
|
* const App = () => {
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Generated by genversion.
|
|
2
|
-
export const version = '10.0.
|
|
2
|
+
export const version = '10.0.2';
|