@mx-cartographer/experiences 6.4.0-alpha.al1 → 6.4.0-alpha.al3
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/CHANGELOG.md +20 -0
- package/dist/common/constants/Analytics.d.ts +4 -0
- package/dist/common/types/AppData.d.ts +1 -2
- package/dist/index.es.js +4810 -4796
- package/dist/index.es.js.map +1 -1
- package/dist/investments/stores/HoldingStore.d.ts +5 -2
- package/package.json +1 -1
- package/dist/common/components/__test__/EmptyState.test.d.ts +0 -0
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,23 @@
|
|
1
|
+
## [6.3.8] - 06-06-2025
|
2
|
+
|
3
|
+
- **FIXED** - Investments | Overview section in dark mode: the `expand_more` icon now displays correctly.
|
4
|
+
|
5
|
+
## [6.3.7] - 06-06-2025
|
6
|
+
|
7
|
+
- **ADDED** - Created Posthog Analytics in Investments Widget.
|
8
|
+
|
9
|
+
## [6.3.6] - 06-06-2025
|
10
|
+
|
11
|
+
- **FIXED** - Fixed package build issue caused by `test` folder name.
|
12
|
+
|
13
|
+
## [6.3.5] - 06-06-2025
|
14
|
+
|
15
|
+
- **UPDATED** - Filter logic to the `Investments` Widget.
|
16
|
+
|
17
|
+
## [6.3.4] - 06-05-2025
|
18
|
+
|
19
|
+
- **FIXED** - Incorrect padding on Add Accounts button in greeting
|
20
|
+
|
1
21
|
## [6.3.3] - 06-05-2025
|
2
22
|
|
3
23
|
- **ADDED** - EmptyState component for `Notifications`.
|
@@ -35,6 +35,10 @@ export declare const ANALYTICS_EVENTS: {
|
|
35
35
|
GOALS_CLICK_FILTER: string;
|
36
36
|
GOALS_VIEW: string;
|
37
37
|
INVESTMENTS: string;
|
38
|
+
INVESTMENT_WIDGET_ACCOUNT_FILTER_CLICK: string;
|
39
|
+
INVESTMENT_WIDGET_ALLOCATION_CLICK: string;
|
40
|
+
INVESTMENT_WIDGET_ANALYSIS_CLICK: string;
|
41
|
+
INVESTMENT_WIDGET_DETAILS_CLICK: string;
|
38
42
|
NET_WORTH_VIEW: string;
|
39
43
|
NET_WORTH_WIDGET_CLICK_ASSETS_LIABILITIES: string;
|
40
44
|
NET_WORTH_WIDGET_CLICK_FILTER: string;
|
@@ -17,6 +17,7 @@ export interface AppConfig {
|
|
17
17
|
clientStyleProfile: ClientStyleProfile;
|
18
18
|
config: Config;
|
19
19
|
honeyBadgerPublicKey?: string;
|
20
|
+
isMobileWebview?: boolean;
|
20
21
|
options: Options;
|
21
22
|
postHogPublicKey?: string;
|
22
23
|
userFeatures: UserFeature[];
|
@@ -66,7 +67,6 @@ export interface Config {
|
|
66
67
|
enable_mark_account_duplicate_for_held_accounts: boolean;
|
67
68
|
enable_renaming_home_accounts: boolean;
|
68
69
|
enable_support_requests: boolean;
|
69
|
-
is_mobile_webview?: boolean;
|
70
70
|
language?: string;
|
71
71
|
product_name?: string;
|
72
72
|
session_token?: string;
|
@@ -115,7 +115,6 @@ export interface Options {
|
|
115
115
|
brokaw_websocket_url?: string;
|
116
116
|
bundle?: string;
|
117
117
|
custom_copy_namespace?: string;
|
118
|
-
is_mobile_webview?: boolean;
|
119
118
|
language?: string;
|
120
119
|
product_name?: string;
|
121
120
|
session_token?: string;
|