@genesislcap/blank-app-seed 4.0.0-prerelease.26 → 4.0.0-prerelease.27
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/.genx/package.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.0.0-prerelease.27](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v4.0.0-prerelease.26...v4.0.0-prerelease.27) (2025-05-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* proxy fixes for react 5dadf2b
|
|
9
|
+
* proxy fixes for react (#451) 70e4bb4
|
|
10
|
+
|
|
3
11
|
## [4.0.0-prerelease.26](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v4.0.0-prerelease.25...v4.0.0-prerelease.26) (2025-05-05)
|
|
4
12
|
|
|
5
13
|
|
|
@@ -53,8 +53,11 @@
|
|
|
53
53
|
"@genesislcap/foundation-utils": "{{versions.UI}}",
|
|
54
54
|
"@genesislcap/rapid-design-system": "{{versions.UI}}",
|
|
55
55
|
"@genesislcap/rapid-grid-pro": "{{versions.UI}}",
|
|
56
|
+
"@genesislcap/rapid-grid-tabulator": "{{versions.UI}}",
|
|
57
|
+
"@genesislcap/grid-tabulator": "{{versions.UI}}",
|
|
56
58
|
"@genesislcap/web-core": "{{versions.UI}}",
|
|
57
59
|
"@genesislcap/g2plot-chart": "{{versions.UI}}",
|
|
60
|
+
"tabulator-tables": "6.3.1",
|
|
58
61
|
"history": "^5.3.0",
|
|
59
62
|
"react": "^19.0.0",
|
|
60
63
|
"react-dom": "^19.0.0",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { configure, defaultAuthConfig } from '@genesislcap/foundation-auth/config';
|
|
2
2
|
import { getUser } from '@genesislcap/foundation-user';
|
|
3
3
|
import { AUTH_PATH } from '@/config';
|
|
4
|
-
import {
|
|
4
|
+
import { environment } from "@/environments/environment.ts";
|
|
5
5
|
import { Connect } from '@genesislcap/foundation-comms';
|
|
6
6
|
import { DI } from '@genesislcap/web-core';
|
|
7
7
|
import type { NavigateFunction } from 'react-router';
|
|
@@ -26,7 +26,7 @@ export const configureFoundationLogin = ({navigate}: { navigate: NavigateFunctio
|
|
|
26
26
|
},
|
|
27
27
|
hostPath: basePath + AUTH_PATH,
|
|
28
28
|
postLoginRedirect: async () => {
|
|
29
|
-
const url =
|
|
29
|
+
const url = environment.API_HOST;
|
|
30
30
|
await connect.connect(url);
|
|
31
31
|
|
|
32
32
|
const redirectUrl = '/{{kebabCase routes.[0].name}}';
|
|
@@ -77,17 +77,17 @@ module.exports = (env, argv) => {
|
|
|
77
77
|
devServer: {
|
|
78
78
|
server: https ? 'https' : 'http',
|
|
79
79
|
proxy: [
|
|
80
|
-
{
|
|
81
|
-
context: "/sm",
|
|
82
|
-
"target": "{{apiHost}}",
|
|
83
|
-
"secure": false,
|
|
84
|
-
"pathRewrite": {"^/sm": ""},
|
|
85
|
-
},
|
|
86
80
|
{
|
|
87
81
|
context: "/gwf",
|
|
88
|
-
|
|
89
|
-
"
|
|
90
|
-
|
|
82
|
+
target: "{{apiHost}}",
|
|
83
|
+
pathRewrite: {"^/gwf": ""},
|
|
84
|
+
secure: false,
|
|
85
|
+
changeOrigin: true,
|
|
86
|
+
cookieDomainRewrite: 'localhost',
|
|
87
|
+
ws: true,
|
|
88
|
+
headers: {
|
|
89
|
+
origin: "{{apiHost}}",
|
|
90
|
+
}
|
|
91
91
|
}
|
|
92
92
|
],
|
|
93
93
|
open,
|