@mx-cartographer/experiences 5.2.21 → 5.2.22-alpha-goals-empty-state

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
+ ## [5.2.22] - 04-21-2025
2
+
3
+ - **Added** - Goals | Added an Empty State.
4
+
1
5
  ## [5.2.21] - 04-19-2025
2
6
 
3
7
  - **ADDED** - EmptyState for NetWorth Component.
@@ -7,6 +7,7 @@ export interface GoalsCopy {
7
7
  add_original_balance: string;
8
8
  add_select_accounts: string;
9
9
  add_title: string;
10
+ add_goals_button: string;
10
11
  add_goal_title: string;
11
12
  alert_account_added: string;
12
13
  alert_account_changed: string;
@@ -30,6 +31,7 @@ export interface GoalsCopy {
30
31
  connect_drawer_title: string;
31
32
  connect_title: string;
32
33
  contribution_label: string;
34
+ create_goals_header: string;
33
35
  debt_goal_description: string;
34
36
  debt_goal_label: string;
35
37
  delete_description: string;
@@ -50,6 +52,7 @@ export interface GoalsCopy {
50
52
  details_retirement_title: string;
51
53
  details_save_title: string;
52
54
  details_title: string;
55
+ empty_state_subheader: string;
53
56
  goal_details: string;
54
57
  goal_percentage: string;
55
58
  goal_priority: string;
@@ -1,8 +1,9 @@
1
1
  import { TrackType } from '../../common';
2
2
  interface GoalListProps {
3
3
  trackType: TrackType;
4
+ onAddGoals: () => void;
4
5
  }
5
- export declare const GoalList: (({ trackType }: GoalListProps) => import("react/jsx-runtime").JSX.Element) & {
6
+ export declare const GoalList: (({ trackType, onAddGoals }: GoalListProps) => import("react/jsx-runtime").JSX.Element) & {
6
7
  displayName: string;
7
8
  };
8
9
  export {};