@mx-cartographer/experiences 5.3.3-ram4-alpha-budgets-empty-state → 5.3.3

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,10 +1,10 @@
1
1
  ## [5.3.3] - 04-25-2025
2
2
 
3
- - **ADDED** - EmptyState for Budgets Component.
3
+ - **UPDATED** - Closed accounts and transactions behavior fix
4
4
 
5
5
  ## [5.3.2] - 04-24-2025
6
6
 
7
- - **UPDATED** - Manage closed transactions more effectively across various widgets.
7
+ - **UPDATED** - Manage transactions based on closed accounts more effectively across various widgets.
8
8
 
9
9
  ## [5.3.1] - 04-23-2025
10
10
 
@@ -1,10 +1,8 @@
1
1
  import { default as React } from 'react';
2
2
  interface BubbleBudgetsProps {
3
- createBudgetOnClick?: () => void;
4
3
  height: number;
5
4
  isDraggable?: boolean;
6
5
  shouldShowZeroState: boolean;
7
- shouldShowEmptyGeneratedBudgetsCallback?: () => void;
8
6
  unavailableWidth?: number;
9
7
  }
10
8
  export declare const BubbleBudgets: React.FC<BubbleBudgetsProps>;
@@ -1,6 +1,3 @@
1
- import { default as React } from 'react';
2
- interface BudgetListProps {
3
- handleAddBudgetsOnClick?: () => void;
4
- }
5
- export declare const BudgetList: React.FC<BudgetListProps>;
6
- export {};
1
+ export declare const BudgetList: (() => import("react/jsx-runtime").JSX.Element) & {
2
+ displayName: string;
3
+ };
@@ -18,7 +18,6 @@ export declare class BudgetsStore {
18
18
  get totalBudgeted(): number;
19
19
  addBudget: (category: Category, amount: number, parentGuid?: string | null) => Promise<void>;
20
20
  deleteBudget: (guid: string) => Promise<void>;
21
- generateBudgets: () => Promise<Budget[]>;
22
21
  loadBudgets: () => Promise<void>;
23
22
  setAlert: (alert: string) => string;
24
23
  setDateRange: (dateRange: DateRange) => DateRange;
@@ -1,14 +1,10 @@
1
1
  import { default as React } from 'react';
2
- import { SxProps } from '@mui/material/styles';
3
2
  interface EmptyWidgetProps {
4
- buttonSx?: SxProps;
3
+ buttonText: string;
5
4
  header: string;
6
5
  icon: string;
7
- onClick: (buttonType: string) => void;
8
- primaryButton: string;
9
- secondaryButton?: string;
6
+ onClick: () => void;
10
7
  subText: string;
11
- sx?: SxProps;
12
8
  }
13
9
  export declare const EmptyState: React.FC<EmptyWidgetProps>;
14
10
  export {};
@@ -1,6 +1,7 @@
1
1
  export interface AccountsCopy {
2
2
  account_balance: string;
3
3
  account_details: string;
4
+ account_closed: string;
4
5
  account_name: string;
5
6
  account_type: string;
6
7
  account_type_accounts: {
@@ -104,6 +105,7 @@ export interface AccountsCopy {
104
105
  this_means_accounts_will_be_merged: string;
105
106
  this_will_resume_updating_the_balance: string;
106
107
  this_will_set_the_account_balance_to_0: string;
108
+ this_will_set_the_closed_account: string;
107
109
  this_will_set_the_balance_of_your_account: string;
108
110
  title: string;
109
111
  transaction_drawer_title: string;
@@ -1,5 +1,4 @@
1
1
  export interface BudgetsCopy {
2
- add_budgets_button: string;
3
2
  add_description_bottom: string;
4
3
  add_description_top: string;
5
4
  add_label: string;
@@ -18,7 +17,6 @@ export interface BudgetsCopy {
18
17
  budget_remaining_over: string;
19
18
  budgeted: string;
20
19
  budgets_title: string;
21
- create_budgets_title: string;
22
20
  delete_description: string;
23
21
  delete_title: string;
24
22
  details_cta: string;
@@ -30,9 +28,6 @@ export interface BudgetsCopy {
30
28
  details_transaction_drawer: string;
31
29
  details_transactions_tab: string;
32
30
  edit_save_button: string;
33
- empty_state_subheader: string;
34
- empty_state_primary_button: string;
35
- empty_state_secondary_button: string;
36
31
  get_started_cta: string;
37
32
  income_description: string;
38
33
  income_title: string;
@@ -50,12 +45,7 @@ export interface BudgetsCopy {
50
45
  remaining: string;
51
46
  spending_description: string;
52
47
  spending_title: string;
53
- zero_state_budget_list_text: string;
54
48
  zero_state_description: string;
55
- zero_state_generate_budgets_header: string;
56
- zero_state_generate_budgets_primary_button: string;
57
- zero_state_generate_budgets_secondary_button: string;
58
- zero_state_generate_budgets_subheader: string;
59
49
  zero_state_title: string;
60
50
  zero_state_no_sub_budgets: string;
61
51
  zero_state_no_sub_budgets_description: string;