@mx-cartographer/experiences 5.3.3-ram4-alpha-budgets-empty-state → 5.3.4-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 +6 -2
- package/dist/budgets/components/BubbleBudgets.d.ts +0 -1
- package/dist/budgets/components/BudgetList.d.ts +3 -6
- package/dist/budgets/store/BudgetsStore.d.ts +1 -1
- package/dist/common/types/localization/AccountsCopy.d.ts +2 -0
- package/dist/index.es.js +2494 -2461
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
-
## [5.3.
|
|
1
|
+
## [5.3.4] - 04-25-2025
|
|
2
2
|
|
|
3
3
|
- **ADDED** - EmptyState for Budgets Component.
|
|
4
4
|
|
|
5
|
+
## [5.3.3] - 04-25-2025
|
|
6
|
+
|
|
7
|
+
- **UPDATED** - Closed accounts and transactions behavior fix
|
|
8
|
+
|
|
5
9
|
## [5.3.2] - 04-24-2025
|
|
6
10
|
|
|
7
|
-
- **UPDATED** - Manage closed
|
|
11
|
+
- **UPDATED** - Manage transactions based on closed accounts more effectively across various widgets.
|
|
8
12
|
|
|
9
13
|
## [5.3.1] - 04-23-2025
|
|
10
14
|
|
|
@@ -1,6 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
+
};
|
|
@@ -17,7 +17,7 @@ export declare class BudgetsStore {
|
|
|
17
17
|
get unbudgetedCategories(): DetailedCategory[];
|
|
18
18
|
get totalBudgeted(): number;
|
|
19
19
|
addBudget: (category: Category, amount: number, parentGuid?: string | null) => Promise<void>;
|
|
20
|
-
deleteBudget: (guid: string) => Promise<
|
|
20
|
+
deleteBudget: (guid: string) => Promise<never>;
|
|
21
21
|
generateBudgets: () => Promise<Budget[]>;
|
|
22
22
|
loadBudgets: () => Promise<void>;
|
|
23
23
|
setAlert: (alert: string) => string;
|
|
@@ -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;
|