@mx-cartographer/experiences 6.2.8-alpha.mm1 → 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,3 +1,7 @@
1
+ ## [6.2.8] - 05-30-2025
2
+
3
+ - **ADDED** - Allocation Component | Investments Widget
4
+
1
5
  ## [6.2.7] - 05-29-2025
2
6
 
3
7
  - **ADDED** - Dashboard Greeting | Included Add Accounts button to open Connect Widget
@@ -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
  }
@@ -83,19 +83,11 @@ export interface ClientProfile {
83
83
  export interface ClientStyleProfile {
84
84
  primary_color?: string;
85
85
  secondary_color?: string;
86
- neutral_color?: string;
87
86
  success_color?: string;
88
87
  error_color?: string;
89
88
  warning_color?: string;
90
89
  info_color?: string;
91
- primary_color_dark?: string;
92
- secondary_color_dark?: string;
93
- neutral_color_dark?: string;
94
- success_color_dark?: string;
95
- error_color_dark?: string;
96
- warning_color_dark?: string;
97
- info_color_dark?: string;
98
- mode?: 'dark' | 'light' | '';
90
+ mode?: 'dark' | 'light' | 'user';
99
91
  system_font?: string;
100
92
  card_corner_radius?: number;
101
93
  button_corner_radius?: number;
@@ -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;