@mx-cartographer/experiences 3.1.1-alpha.j1 → 3.1.1-alpha.j11

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## [3.1.0] - 08-28-2024
2
+
3
+ - **FIXED** - Refactored the ActivityList to use actual list components
4
+ - **FIXED** - Dynamically calculate the Upcoming activity list width in the Recurring Transactions mini widget
5
+ - **UPDATED** - Set dependency and peer dependency to latest major version of @kyper/mui with the Inter font import changes
6
+
1
7
  ## [3.0.21] - 08-27-2024
2
8
 
3
9
  - **FIXED** - Fixed `MiniSpendingChart` content to be centered
@@ -10,8 +10,9 @@ export declare class AccountStore {
10
10
  institutions: Institution[];
11
11
  members: Member[];
12
12
  uiStore: UiStore;
13
+ isInitialized: boolean;
13
14
  constructor(globalStore: GlobalStore);
14
- initialize: (endpoint: string, token: string) => void;
15
+ initialize: (endpoint: string, token: string) => Promise<void>;
15
16
  get cashAccounts(): Account[];
16
17
  get cashBalance(): number;
17
18
  addAccount: (account: Account) => Promise<void>;