@mx-cartographer/experiences 6.2.6-alpha.al0 → 6.2.6-alpha.al2

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 CHANGED
@@ -2,6 +2,10 @@
2
2
 
3
3
  - **FIXED** - Profile Tab | birthdate discrepancy
4
4
 
5
+ ## [6.2.5] - 05-29-2025
6
+
7
+ - **ADDED** - `Analysis` section to `Investments`
8
+
5
9
  ## [6.2.4] - 05-28-2025
6
10
 
7
11
  - **FIXED** - Issue where the user profile settings tab was still displaying when hidden
@@ -0,0 +1,4 @@
1
+ declare const _default: (() => import("react/jsx-runtime").JSX.Element) & {
2
+ displayName: string;
3
+ };
4
+ export default _default;
@@ -2,6 +2,7 @@ import { AccountFilterCopy, AccountTypeCopy, CurrencyInputCopy, DateRangePickerC
2
2
  export interface CommonCopy {
3
3
  account_filter: AccountFilterCopy;
4
4
  account_type: AccountTypeCopy;
5
+ add_accounts: string;
5
6
  average: string;
6
7
  back: string;
7
8
  back_to_dashboard: string;
@@ -1,3 +1,6 @@
1
+ interface DynamicKeyValue {
2
+ [key: string]: string;
3
+ }
1
4
  export interface InvestmentsCopy {
2
5
  tab_allocation_title: string;
3
6
  tab_analysis_title: string;
@@ -22,4 +25,21 @@ export interface InvestmentsCopy {
22
25
  market_value: string;
23
26
  quantity: string;
24
27
  };
28
+ analysis: {
29
+ bonds: string;
30
+ bond_column_labels: DynamicKeyValue;
31
+ bond_row_labels: DynamicKeyValue;
32
+ credit_quality: string;
33
+ duration: string;
34
+ empty_data: string;
35
+ equities: string;
36
+ invest_analysis: string;
37
+ market_capitalization: string;
38
+ stock_column_labels: DynamicKeyValue;
39
+ stock_row_labels: DynamicKeyValue;
40
+ tooltip_info_body: string;
41
+ tooltip_info_title: string;
42
+ valuation: string;
43
+ };
25
44
  }
45
+ export {};