@mx-cartographer/experiences 6.2.8 → 6.2.9-alpha.mega1

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.8] - 05-30-2025
2
2
 
3
- - **UPDATED** - `NotificationSettings` component renders based on props to support `Pulse`.
3
+ - **ADDED** - Allocation Component | Investments Widget
4
4
 
5
5
  ## [6.2.7] - 05-29-2025
6
6
 
@@ -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,11 @@
1
+ export interface InvestmentAllocationCopy {
2
+ cash_balance_display_name: string;
3
+ pie_chart_centered_click_for_details: string;
4
+ pie_chart_centered_text: string;
5
+ tabs_label_dollar: string;
6
+ tabs_label_percent: string;
7
+ total_label_text: string;
8
+ }
1
9
  interface DynamicKeyValue {
2
10
  [key: string]: string;
3
11
  }
@@ -25,6 +33,7 @@ export interface InvestmentsCopy {
25
33
  market_value: string;
26
34
  quantity: string;
27
35
  };
36
+ allocation: InvestmentAllocationCopy;
28
37
  analysis: {
29
38
  bonds: string;
30
39
  bond_column_labels: DynamicKeyValue;