@genesislcap/blank-app-seed 3.40.0 → 3.40.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.
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed-config",
3
3
  "description": "Genesis Blank App Seed Configuration",
4
- "version": "3.40.0",
4
+ "version": "3.40.1",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "lint": "eslint .",
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.40.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.40.0...v3.40.1) (2025-02-17)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * navigate to correct route when logout PA-1578 (#435) 5912467
9
+
3
10
  ## [3.40.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.39.4...v3.40.0) (2025-02-07)
4
11
 
5
12
 
@@ -1,5 +1,7 @@
1
1
  import { getApp } from '@genesislcap/foundation-shell/app';
2
2
  import type { FoundationRouter } from '@genesislcap/foundation-ui';
3
+ import { FoundationRouteNav } from '@genesislcap/foundation-ui';
4
+ import { PUBLIC_PATH } from '@genesislcap/foundation-utils';
3
5
  import { css, GenesisElementLayout, html } from '@genesislcap/web-core';
4
6
  import type { Store } from '../store';
5
7
 
@@ -42,6 +44,8 @@ export const defaultLayout = new GenesisElementLayout(
42
44
  <foundation-header
43
45
  show-luminance-toggle-button
44
46
  show-misc-toggle-button
47
+ @logout-clicked=${(x) =>
48
+ FoundationRouteNav.path.push(`${PUBLIC_PATH}/${x.config.loginPath}/logout`)}
45
49
  :routeNavItems=${(x) => x.config.getNavItems()}
46
50
  ></foundation-header>
47
51
  <div class="content">
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@genesislcap/blank-app-seed",
3
3
  "description": "Genesis Blank App Seed",
4
- "version": "3.40.0",
4
+ "version": "3.40.1",
5
5
  "license": "Apache-2.0",
6
6
  "scripts": {
7
7
  "release": "semantic-release"