@etsoo/react 1.6.2 → 1.6.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.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@etsoo/react",
|
|
3
|
-
"version": "1.6.
|
|
3
|
+
"version": "1.6.4",
|
|
4
4
|
"description": "TypeScript ReactJs UI Independent Framework",
|
|
5
5
|
"main": "lib/index.js",
|
|
6
6
|
"types": "lib/index.d.ts",
|
|
@@ -50,15 +50,15 @@
|
|
|
50
50
|
"@emotion/css": "^11.10.0",
|
|
51
51
|
"@emotion/react": "^11.10.4",
|
|
52
52
|
"@emotion/styled": "^11.10.4",
|
|
53
|
-
"@etsoo/appscript": "^1.2.
|
|
54
|
-
"@etsoo/notificationbase": "^1.1.
|
|
55
|
-
"@etsoo/shared": "^1.1.
|
|
56
|
-
"@types/react": "^18.0.
|
|
53
|
+
"@etsoo/appscript": "^1.2.98",
|
|
54
|
+
"@etsoo/notificationbase": "^1.1.8",
|
|
55
|
+
"@etsoo/shared": "^1.1.58",
|
|
56
|
+
"@types/react": "^18.0.21",
|
|
57
57
|
"@types/react-dom": "^18.0.6",
|
|
58
58
|
"@types/react-window": "^1.8.5",
|
|
59
59
|
"react": "^18.2.0",
|
|
60
60
|
"react-dom": "^18.2.0",
|
|
61
|
-
"react-router-dom": "^6.4.
|
|
61
|
+
"react-router-dom": "^6.4.1",
|
|
62
62
|
"react-window": "^1.8.7"
|
|
63
63
|
},
|
|
64
64
|
"devDependencies": {
|
|
@@ -70,15 +70,15 @@
|
|
|
70
70
|
"@testing-library/jest-dom": "^5.16.5",
|
|
71
71
|
"@testing-library/react": "^13.4.0",
|
|
72
72
|
"@types/jest": "^29.0.3",
|
|
73
|
-
"@typescript-eslint/eslint-plugin": "^5.38.
|
|
74
|
-
"@typescript-eslint/parser": "^5.38.
|
|
75
|
-
"eslint": "^8.
|
|
73
|
+
"@typescript-eslint/eslint-plugin": "^5.38.1",
|
|
74
|
+
"@typescript-eslint/parser": "^5.38.1",
|
|
75
|
+
"eslint": "^8.24.0",
|
|
76
76
|
"eslint-config-airbnb-base": "^15.0.0",
|
|
77
77
|
"eslint-plugin-import": "^2.26.0",
|
|
78
78
|
"eslint-plugin-react": "^7.31.8",
|
|
79
79
|
"jest": "^29.0.3",
|
|
80
80
|
"jest-environment-jsdom": "^29.0.3",
|
|
81
|
-
"ts-jest": "^29.0.
|
|
81
|
+
"ts-jest": "^29.0.2",
|
|
82
82
|
"typescript": "^4.8.3"
|
|
83
83
|
}
|
|
84
84
|
}
|
|
@@ -5,7 +5,12 @@ import { BrowserRouter, MemoryRouter } from 'react-router-dom';
|
|
|
5
5
|
/**
|
|
6
6
|
* Dynamic router props
|
|
7
7
|
*/
|
|
8
|
-
export type DynamicRouterProps = {
|
|
8
|
+
export type DynamicRouterProps = {
|
|
9
|
+
/**
|
|
10
|
+
* basename of the router
|
|
11
|
+
*/
|
|
12
|
+
basename?: string;
|
|
13
|
+
};
|
|
9
14
|
|
|
10
15
|
function getEntries(host: IBridgeHost) {
|
|
11
16
|
const startUrl = host.getStartUrl();
|