@mx-cartographer/experiences 7.2.16-alpha.mm0 → 7.3.0-alpha.sms1
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/dist/{Account-vp_TAbGt.mjs → Account-Bxw0_4FU.mjs} +1 -1
- package/dist/{AccountDetailsContent-CsH1w_GZ.mjs → AccountDetailsContent-CAM9y39M.mjs} +6 -6
- package/dist/{AccountDetailsHeader-Df1JkzYi.mjs → AccountDetailsHeader-JtSX6Uf9.mjs} +4 -4
- package/dist/{AccountFields-DUToRRqW.mjs → AccountFields-C9FlatNb.mjs} +2 -2
- package/dist/{AccountListItem-CeY_WIpj.mjs → AccountListItem-JFMZROh7.mjs} +7 -7
- package/dist/{AccountStore-BkoLK9Tq.mjs → AccountStore-BgNOyMdp.mjs} +74 -100
- package/dist/Accounts-BRf_YeTf.mjs +27 -0
- package/dist/CategoryStore-yHI0hWmK.mjs +174 -0
- package/dist/CategoryUtil-pZRIYOgN.mjs +80 -0
- package/dist/{ConnectDrawer-Bw5s6Dw1.mjs → ConnectDrawer-BQNs-hjk.mjs} +9 -9
- package/dist/{ConnectionsDrawer-BDvVuJQf.mjs → ConnectionsDrawer-ByGQE7D5.mjs} +3 -3
- package/dist/{DebtsStore-BD_XwsI7.mjs → DebtsStore-C9bblOgW.mjs} +1 -1
- package/dist/{GoalStore-DZ_Jvsa_.mjs → GoalStore-D-aB35SY.mjs} +151 -111
- package/dist/{ManageIncome-CV-bGuR-.mjs → ManageIncome-1s_q5W4X.mjs} +3 -3
- package/dist/{NetWorthStore-D1NiDUcc.mjs → NetWorthStore-DCsTZpuS.mjs} +2 -2
- package/dist/{NotificationSettings-5i3IywCi.mjs → NotificationSettings-DqrkNMod.mjs} +236 -238
- package/dist/{NotificationStore-C6PH6MKm.mjs → NotificationStore-BxP_P2dA.mjs} +23 -15
- package/dist/{RecurringSettings-G6_BbsIF.mjs → RecurringSettings-A_rAGCTP.mjs} +3 -3
- package/dist/{RecurringTransactions-ej39mgA6.mjs → RecurringTransactions-DK8dWldr.mjs} +3 -3
- package/dist/{RecurringTransactionsStore-DrzS1LmF.mjs → RecurringTransactionsStore-C4YOD7_D.mjs} +29 -26
- package/dist/{TransactionDetails-CDtya0KS.mjs → TransactionDetails-oP1eSuiS.mjs} +1 -1
- package/dist/TransactionStore-ai3uII_r.mjs +690 -0
- package/dist/{WidgetContainer-EbrN1oIo.mjs → WidgetContainer-BHWANqT4.mjs} +1 -1
- package/dist/accounts/index.es.js +125 -127
- package/dist/accounts/stores/AccountStore.d.ts +25 -22
- package/dist/accounts/utils/Accounts.d.ts +2 -1
- package/dist/budgets/index.es.js +499 -501
- package/dist/budgets/store/BudgetsStore.d.ts +1 -0
- package/dist/cashflow/index.es.js +382 -384
- package/dist/categories/index.es.js +1 -1
- package/dist/categories/stores/CategoryStore.d.ts +5 -1
- package/dist/categories/util/CategoryUtil.d.ts +3 -2
- package/dist/common/index.es.js +206 -214
- package/dist/common/stores/AppDataStore.d.ts +3 -1
- package/dist/common/stores/GlobalCopyStore.d.ts +0 -1
- package/dist/common/stores/GlobalStore.d.ts +3 -3
- package/dist/common/stores/UserStore.d.ts +3 -2
- package/dist/common/types/Account.d.ts +9 -6
- package/dist/dashboard/index.es.js +1 -1
- package/dist/debts/index.es.js +375 -377
- package/dist/finstrong/index.es.js +415 -417
- package/dist/goals/index.es.js +557 -559
- package/dist/goals/stores/GoalStore.d.ts +17 -4
- package/dist/help/index.es.js +1 -1
- package/dist/investments/index.es.js +435 -437
- package/dist/investments/stores/HoldingStore.d.ts +1 -0
- package/dist/networth/index.es.js +172 -174
- package/dist/notifications/index.es.js +3 -3
- package/dist/notifications/stores/NotificationStore.d.ts +3 -1
- package/dist/recurringtransactions/index.es.js +173 -175
- package/dist/recurringtransactions/stores/RecurringTransactionsStore.d.ts +3 -2
- package/dist/settings/index.es.js +279 -285
- package/dist/spending/index.es.js +281 -283
- package/dist/transactions/index.es.js +6 -6
- package/dist/transactions/stores/TransactionStore.d.ts +21 -77
- package/dist/trends/index.es.js +4 -4
- package/dist/{useAccountDisplayName-jS05A6-6.mjs → useAccountDisplayName-BUAApBIb.mjs} +1 -1
- package/package.json +4 -4
- package/dist/Accounts-C1QxUB-e.mjs +0 -9
- package/dist/CategoryStore-BCcpI3oJ.mjs +0 -183
- package/dist/CategoryUtil-BR3H5i6n.mjs +0 -78
- package/dist/TransactionStore-DxPLdF3B.mjs +0 -677
|
@@ -3,23 +3,36 @@ import { Goal, MonthlyCashFlowProfile, RetirementGoalAccount, GlobalStore } from
|
|
|
3
3
|
export declare class GoalStore {
|
|
4
4
|
globalStore: GlobalStore;
|
|
5
5
|
api: GoalApi;
|
|
6
|
-
alert: string;
|
|
7
6
|
goals: Goal[];
|
|
7
|
+
goalsLoaded: boolean;
|
|
8
|
+
retirementGoals: Goal[];
|
|
9
|
+
retirementGoalsLoaded: boolean;
|
|
8
10
|
retirementGoalAccounts: RetirementGoalAccount[];
|
|
11
|
+
retirementGoalAccountsLoaded: boolean;
|
|
12
|
+
monthlyCashFlowProfile: MonthlyCashFlowProfile | undefined;
|
|
13
|
+
monthlyCashFlowProfileLoaded: boolean;
|
|
9
14
|
newRetirementGoalAccounts: RetirementGoalAccount[];
|
|
15
|
+
alert: string;
|
|
10
16
|
selectedGoal: Goal | undefined;
|
|
11
|
-
monthlyCashFlowProfile: MonthlyCashFlowProfile | undefined;
|
|
12
|
-
goalsLoaded: boolean;
|
|
13
17
|
constructor(globalStore: GlobalStore);
|
|
18
|
+
get allGoals(): Goal[];
|
|
14
19
|
get orderedGoals(): Goal[];
|
|
15
20
|
get debtGoals(): Goal[];
|
|
16
21
|
get retirmentGoals(): Goal[];
|
|
17
22
|
get savingGoals(): Goal[];
|
|
18
23
|
get ongoingGoalsForMicroWidget(): Goal[];
|
|
24
|
+
setGoals: (goals: Goal[]) => void;
|
|
25
|
+
setRetirementGoals: (goals: Goal[]) => void;
|
|
26
|
+
setRetirementGoalAccounts: (accounts: RetirementGoalAccount[]) => void;
|
|
27
|
+
setMonthlyCashFlowProfile: (profile: MonthlyCashFlowProfile) => void;
|
|
28
|
+
loadGoalData: () => Promise<void>;
|
|
29
|
+
loadGoals: () => Promise<void>;
|
|
30
|
+
loadRetirementGoals: () => Promise<void>;
|
|
31
|
+
loadRetirementGoalAccounts: () => Promise<void>;
|
|
32
|
+
loadMonthlyCashFlowProfile: () => Promise<void>;
|
|
19
33
|
addGoal: (goal: Goal) => Promise<void>;
|
|
20
34
|
addRetirementGoal: (goal: Goal) => Promise<void>;
|
|
21
35
|
addRetirementGoalAccount: (account: RetirementGoalAccount) => Promise<void>;
|
|
22
|
-
loadGoals: () => Promise<void>;
|
|
23
36
|
deleteGoal: (guid: string) => Promise<void>;
|
|
24
37
|
deleteRetirementGoal: (goal: Goal) => Promise<void>;
|
|
25
38
|
deleteRetirementGoalAccount: (guid: string) => Promise<void>;
|
package/dist/help/index.es.js
CHANGED
|
@@ -3,7 +3,7 @@ import { observer as m } from "mobx-react-lite";
|
|
|
3
3
|
import { H as s } from "../Help-B6dIcujh.mjs";
|
|
4
4
|
import { b as p } from "../hooks-D6XlXHf4.mjs";
|
|
5
5
|
import { L as a } from "../Loader-DUaFpDGv.mjs";
|
|
6
|
-
import { W as n } from "../WidgetContainer-
|
|
6
|
+
import { W as n } from "../WidgetContainer-BHWANqT4.mjs";
|
|
7
7
|
const x = m(({ onBackClick: o, sx: i }) => {
|
|
8
8
|
const { isCopyLoaded: e, isInitialized: t } = p();
|
|
9
9
|
return !e || !t ? /* @__PURE__ */ r(a, {}) : /* @__PURE__ */ r(n, { onBackClick: o, sx: { p: 16 }, children: /* @__PURE__ */ r(s, { sx: i }) });
|