@mx-cartographer/experiences 6.0.0 → 6.0.1

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,9 @@
1
+ ## [6.0.1] - 04/28/2025
2
+
3
+ - **CHANGED** - Change account hidden name color to secondary text
4
+ - **CHANGED** - Don't show accounts with is_hidden from accounts filter in widgets
5
+ - **CHANGED** - Don't show/use data or transactions from is_hidden accounts in widgets
6
+
1
7
  ## [6.0.0] - 04/28/2025
2
8
 
3
9
  - **CHANGED** - `GlobalStore` to utilize constructor for setting endpoint and appConfig
@@ -11,11 +11,18 @@ export declare class AccountStore {
11
11
  constructor(globalStore: GlobalStore);
12
12
  loadAccountData: () => Promise<void>;
13
13
  get cashAccounts(): Account[];
14
+ get cashBalance(): number;
14
15
  get checkingAccounts(): Account[];
15
16
  get debtAccounts(): Account[];
16
17
  get investmentAccounts(): Account[];
17
- get cashBalance(): number;
18
18
  get savingsAccounts(): Account[];
19
+ get visibleAccounts(): Account[];
20
+ get visibleCashAccounts(): Account[];
21
+ get visibleCashBalance(): number;
22
+ get visibleCheckingAccounts(): Account[];
23
+ get visibleDebtAccounts(): Account[];
24
+ get visibleInvestmentAccounts(): Account[];
25
+ get visibleSavingsAccounts(): Account[];
19
26
  addAccount: (account: Account) => Promise<void>;
20
27
  augmentAccounts: (accounts?: Account[]) => Account[];
21
28
  loadAccounts: () => Promise<void>;