@genesislcap/blank-app-seed 4.0.0 → 4.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/.genx/package.json
CHANGED
package/.genx/versions.json
CHANGED
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [4.0.2](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v4.0.1...v4.0.2) (2025-04-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* webpack version change 19402bb
|
|
9
|
+
* webpack version change (#447) eb33a82
|
|
10
|
+
|
|
11
|
+
## [4.0.1](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v4.0.0...v4.0.1) (2025-04-07)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Bug Fixes
|
|
15
|
+
|
|
16
|
+
* use socket url that supports base path 7d349c0
|
|
17
|
+
* use socket url that supports base path (#446) 39cbcab
|
|
18
|
+
|
|
3
19
|
## [4.0.0](https://github.com/genesiscommunitysuccess/blank-app-seed/compare/v3.41.3...v4.0.0) (2025-04-04)
|
|
4
20
|
|
|
5
21
|
|
|
@@ -1,8 +1,14 @@
|
|
|
1
|
-
import {
|
|
1
|
+
import {
|
|
2
|
+
Connect,
|
|
3
|
+
ConnectConfig,
|
|
4
|
+
defaultConnectConfig,
|
|
5
|
+
Session,
|
|
6
|
+
} from '@genesislcap/foundation-comms';
|
|
2
7
|
import { EventEmitter } from '@genesislcap/foundation-events';
|
|
3
8
|
import { App } from '@genesislcap/foundation-shell/app';
|
|
4
9
|
import { importPBCAssets } from '@genesislcap/foundation-shell/pbc';
|
|
5
10
|
import { configureDesignSystem } from '@genesislcap/foundation-ui';
|
|
11
|
+
import { GENESIS_SOCKET_URL } from '@genesislcap/foundation-utils';
|
|
6
12
|
import {
|
|
7
13
|
baseLayerLuminance,
|
|
8
14
|
customElement,
|
|
@@ -39,6 +45,7 @@ const name = '{{rootElement}}';
|
|
|
39
45
|
export class MainApplication extends EventEmitter<StoreEventDetailMap>(GenesisElement) {
|
|
40
46
|
@App app: App;
|
|
41
47
|
@Connect connect!: Connect;
|
|
48
|
+
@Session session!: Session;
|
|
42
49
|
@Container container!: Container;
|
|
43
50
|
@Store store: Store;
|
|
44
51
|
|
|
@@ -49,6 +56,8 @@ export class MainApplication extends EventEmitter<StoreEventDetailMap>(GenesisEl
|
|
|
49
56
|
@observable data: any = null;
|
|
50
57
|
|
|
51
58
|
async connectedCallback() {
|
|
59
|
+
// TODO: remove when using cookie-based auth
|
|
60
|
+
this.session.setSessionStorageItem('hostUrl', GENESIS_SOCKET_URL);
|
|
52
61
|
this.registerDIDependencies();
|
|
53
62
|
super.connectedCallback();
|
|
54
63
|
this.addEventListeners();
|