@genesislcap/blank-app-seed 3.30.0-prerelease.67 → 3.30.0-prerelease.69
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
|
@@ -44,6 +44,7 @@ export class {{pascalCase tile.componentName}} extends GenesisElement {
|
|
|
44
44
|
headerName: '',
|
|
45
45
|
minWidth: 50,
|
|
46
46
|
maxWidth: 50,
|
|
47
|
+
headerTooltip: '{{capitalCase this}}',
|
|
47
48
|
pinned: 'right',
|
|
48
49
|
cellRenderer: RapidAgActionRenderer,
|
|
49
50
|
cellRendererParams: <ActionRendererParams>{
|
|
@@ -54,7 +55,7 @@ export class {{pascalCase tile.componentName}} extends GenesisElement {
|
|
|
54
55
|
});
|
|
55
56
|
},
|
|
56
57
|
contentTemplate: `
|
|
57
|
-
<rapid-icon name="cog"
|
|
58
|
+
<rapid-icon name="cog"></rapid-icon>
|
|
58
59
|
`,
|
|
59
60
|
},
|
|
60
61
|
},
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [3.30.0-prerelease.69](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.68...v3.30.0-prerelease.69) (2025-01-15)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* use public path for navigation when available [FUI-2071](https://github.com/genesiscommunitysuccess/blank-app-seed/issues/2071) (#410) 5e6c1af
|
|
9
|
+
|
|
10
|
+
## [3.30.0-prerelease.68](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.67...v3.30.0-prerelease.68) (2025-01-08)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
* customEvent tooltip update GENC-847 (#419) 80f5e8e
|
|
16
|
+
|
|
3
17
|
## [3.30.0-prerelease.67](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.30.0-prerelease.66...v3.30.0-prerelease.67) (2025-01-08)
|
|
4
18
|
|
|
5
19
|
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { Auth, Session } from '@genesislcap/foundation-comms';
|
|
2
2
|
import { defaultLoginConfig, LoginConfig } from '@genesislcap/foundation-login';
|
|
3
3
|
import { FoundationRouterConfiguration } from '@genesislcap/foundation-ui';
|
|
4
|
+
import { PUBLIC_PATH } from '@genesislcap/foundation-utils';
|
|
4
5
|
import { NavigationPhase, optional, Route } from '@genesislcap/web-core';
|
|
5
6
|
import { defaultLayout, loginLayout } from '../layouts';
|
|
6
7
|
import { logger } from '../utils';
|
|
@@ -25,6 +26,8 @@ const ssoSettings =
|
|
|
25
26
|
}
|
|
26
27
|
: {};
|
|
27
28
|
|
|
29
|
+
const publicPath = typeof PUBLIC_PATH !== 'undefined' ? PUBLIC_PATH : '';
|
|
30
|
+
|
|
28
31
|
export class MainRouterConfig extends FoundationRouterConfiguration<LoginSettings> {
|
|
29
32
|
constructor(
|
|
30
33
|
@Auth private auth: Auth,
|
|
@@ -56,7 +59,7 @@ export class MainRouterConfig extends FoundationRouterConfiguration<LoginSetting
|
|
|
56
59
|
configure(this.container, {
|
|
57
60
|
hostPath: 'login',
|
|
58
61
|
autoConnect: true,
|
|
59
|
-
defaultRedirectUrl: '{{kebabCase routes.[0].name}}',
|
|
62
|
+
defaultRedirectUrl: publicPath + '{{kebabCase routes.[0].name}}',
|
|
60
63
|
...ssoSettings,
|
|
61
64
|
});
|
|
62
65
|
return define({
|