@mx-cartographer/experiences 6.11.1-alpha.mm1 → 6.12.0

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
- ## [6.11.1] - 07-01-2025
1
+ ## [6.12.0] - 06-30-2025
2
2
 
3
- - **Fixed** - Hidden account transaction still showing until refresh
3
+ - **ADDED** - `GoalMicroWidget` Added
4
4
 
5
5
  ## [6.11.0] - 07-01-2025
6
6
 
@@ -5,6 +5,7 @@ export interface SingleSegmentDonutProps {
5
5
  percent: number;
6
6
  size?: number;
7
7
  strokeWidth?: number;
8
+ backgroundStrokeColor?: string;
8
9
  }
9
10
  declare const SingleSegmentDonut: React.FC<SingleSegmentDonutProps>;
10
11
  export default SingleSegmentDonut;
@@ -34,6 +34,7 @@ export declare const ANALYTICS_EVENTS: {
34
34
  GOALS_CLICK_ADD: string;
35
35
  GOALS_CLICK_FILTER: string;
36
36
  GOALS_VIEW: string;
37
+ GOALS_MICRO_WIDGET_CTA: string;
37
38
  INVESTMENTS: string;
38
39
  INVESTMENT_WIDGET_ACCOUNT_FILTER_CLICK: string;
39
40
  INVESTMENT_WIDGET_ALLOCATION_CLICK: string;
@@ -98,4 +98,7 @@ export interface GoalsCopy {
98
98
  zero_state_complete_debt: string;
99
99
  zero_state_complete_savings: string;
100
100
  zero_state_ongoing: string;
101
+ view_details: string;
102
+ micro_zero_state_description: string;
103
+ get_started: string;
101
104
  }
@@ -0,0 +1,7 @@
1
+ interface GoalsMicroWidgetProps {
2
+ onCTAClick: () => void;
3
+ }
4
+ export declare const GoalsMicroWidget: (({ onCTAClick }: GoalsMicroWidgetProps) => import("react/jsx-runtime").JSX.Element) & {
5
+ displayName: string;
6
+ };
7
+ export {};
@@ -0,0 +1,8 @@
1
+ import { Goal } from '../../../common';
2
+ interface GoalStatusCardProps {
3
+ goal: Goal;
4
+ }
5
+ export declare const GoalMicroStatusCard: (({ goal }: GoalStatusCardProps) => import("react/jsx-runtime").JSX.Element) & {
6
+ displayName: string;
7
+ };
8
+ export {};
@@ -0,0 +1,8 @@
1
+ import { SxProps } from '@mui/material/styles';
2
+ interface EmptyWidgetProps {
3
+ header: string;
4
+ subText: string;
5
+ sx?: SxProps;
6
+ }
7
+ export declare const GoalsMicroEmptyState: ({ header, subText, sx }: EmptyWidgetProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -1,3 +1,4 @@
1
1
  export { GoalApi } from './api/GoalApi';
2
2
  export { GoalsWidget } from './GoalsWidget';
3
3
  export { GoalStore } from './stores/GoalStore';
4
+ export { GoalsMicroWidget } from './GoalsMicroWidget';
@@ -15,6 +15,7 @@ export declare class GoalStore {
15
15
  get debtGoals(): Goal[];
16
16
  get retirmentGoals(): Goal[];
17
17
  get savingGoals(): Goal[];
18
+ get ongoingGoalsForMicroWidget(): Goal[];
18
19
  addGoal: (goal: Goal) => Promise<void>;
19
20
  addRetirementGoal: (goal: Goal) => Promise<void>;
20
21
  addRetirementGoalAccount: (account: RetirementGoalAccount) => Promise<void>;