@mx-cartographer/experiences 6.3.0 → 6.3.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/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [6.3.2] - 06-04-2025
2
+
3
+ - **FIXED** - `CashflowWidget` to show 90 days of transactions in Settings
4
+
5
+ ## [6.3.1] - 06-04-2025
6
+
7
+ - **ADDED** - Allocation Component | Investments Widget
8
+
1
9
  ## [6.3.0] - 06-03-2025
2
10
 
3
11
  - **UPDATED** - Disabled `Email/SMS` in `Delivery Methods` when values are missing.
@@ -7,7 +7,10 @@ export interface DonutData {
7
7
  }
8
8
  export interface DonutProps {
9
9
  data: DonutData[];
10
+ hoveredId?: string;
10
11
  onClick?: (id: string) => void;
12
+ onMouseEnter?: (id: string) => void;
13
+ onMouseLeave?: (id: string) => void;
11
14
  selectedId?: string;
12
15
  size?: number;
13
16
  }
@@ -36,4 +36,6 @@ export interface Holding {
36
36
  cost_basis_updated_at: null | number;
37
37
  cusip: null | number;
38
38
  updated_at: number;
39
+ gainLoss: number;
40
+ name: string;
39
41
  }
@@ -1,3 +1,12 @@
1
+ export interface InvestmentAllocationCopy {
2
+ allocations_list: DynamicKeyValue;
3
+ cash_balance_display_name: string;
4
+ pie_chart_centered_click_for_details: string;
5
+ pie_chart_centered_text: string;
6
+ tabs_label_dollar: string;
7
+ tabs_label_percent: string;
8
+ total_label_text: string;
9
+ }
1
10
  interface DynamicKeyValue {
2
11
  [key: string]: string;
3
12
  }
@@ -25,6 +34,7 @@ export interface InvestmentsCopy {
25
34
  market_value: string;
26
35
  quantity: string;
27
36
  };
37
+ allocation: InvestmentAllocationCopy;
28
38
  analysis: {
29
39
  bonds: string;
30
40
  bond_column_labels: DynamicKeyValue;