@mx-cartographer/experiences 6.2.9-alpha.mega4 → 6.3.0-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,14 @@
1
+ ## [6.3.0] - 06-03-2025
2
+
3
+ - **UPDATED** - Disabled `Email/SMS` in `Delivery Methods` when values are missing.
4
+
5
+ ## [6.2.9] - 06-02-2025
6
+
7
+ - **UPDATED** - `getClientTheme` to use neutral and dark colors
8
+
1
9
  ## [6.2.8] - 05-30-2025
2
10
 
3
- - **ADDED** - Allocation Component | Investments Widget
11
+ - **UPDATED** - `NotificationSettings` component renders based on props to support `Pulse`.
4
12
 
5
13
  ## [6.2.7] - 05-29-2025
6
14
 
@@ -7,10 +7,7 @@ export interface DonutData {
7
7
  }
8
8
  export interface DonutProps {
9
9
  data: DonutData[];
10
- hoveredId?: string;
11
10
  onClick?: (id: string) => void;
12
- onMouseEnter?: (id: string) => void;
13
- onMouseLeave?: (id: string) => void;
14
11
  selectedId?: string;
15
12
  size?: number;
16
13
  }
@@ -83,11 +83,19 @@ export interface ClientProfile {
83
83
  export interface ClientStyleProfile {
84
84
  primary_color?: string;
85
85
  secondary_color?: string;
86
+ neutral_color?: string;
86
87
  success_color?: string;
87
88
  error_color?: string;
88
89
  warning_color?: string;
89
90
  info_color?: string;
90
- mode?: 'dark' | 'light' | 'user';
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' | '';
91
99
  system_font?: string;
92
100
  card_corner_radius?: number;
93
101
  button_corner_radius?: number;
@@ -36,6 +36,4 @@ 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;
41
39
  }
@@ -1,11 +1,3 @@
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
- }
9
1
  interface DynamicKeyValue {
10
2
  [key: string]: string;
11
3
  }
@@ -33,7 +25,6 @@ export interface InvestmentsCopy {
33
25
  market_value: string;
34
26
  quantity: string;
35
27
  };
36
- allocation: InvestmentAllocationCopy;
37
28
  analysis: {
38
29
  bonds: string;
39
30
  bond_column_labels: DynamicKeyValue;