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

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
@@ -1,6 +1,6 @@
1
- ## [6.2.5] - 05-29-2025
1
+ ## [6.2.6] - 05-28-2025
2
2
 
3
- - **ADDED** - `Analysis` section to `Investments`
3
+ - **FIXED** - Profile Tab | birthdate discrepancy
4
4
 
5
5
  ## [6.2.4] - 05-28-2025
6
6
 
@@ -8,7 +8,7 @@
8
8
 
9
9
  ## [6.2.3] - 05-27-2025
10
10
 
11
- - **ADDED** - new filter to dashboard to ignore disabled mini widgets
11
+ - **ADDED** - new filter to dashboard to ignore disabled mini widgets
12
12
 
13
13
  ## [6.2.2] - 05-22-2025
14
14
 
@@ -1,6 +1,3 @@
1
- interface DynamicKeyValue {
2
- [key: string]: string;
3
- }
4
1
  export interface InvestmentsCopy {
5
2
  tab_allocation_title: string;
6
3
  tab_analysis_title: string;
@@ -25,21 +22,4 @@ export interface InvestmentsCopy {
25
22
  market_value: string;
26
23
  quantity: string;
27
24
  };
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
- };
44
25
  }
45
- export {};