@mx-cartographer/experiences 6.2.3-alpha.mega5 → 6.2.3

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
1
  ## [6.2.3] - 05-27-2025
2
2
 
3
- - **ADDED** - `Analysis` section to `Investments`
3
+ - **ADDED** - new filter to dashboard to ignore disabled mini widgets
4
4
 
5
5
  ## [6.2.2] - 05-22-2025
6
6
 
@@ -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 {};
@@ -1,4 +1,5 @@
1
1
  export declare enum DashboardLocation {
2
2
  Main = 0,
3
- RightSide = 1
3
+ RightSide = 1,
4
+ Disabled = 2
4
5
  }