@mx-cartographer/experiences 7.0.64 → 7.0.65
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 +4 -0
- package/dist/{AccountDetailsContent-DsD3Wzu7.mjs → AccountDetailsContent-BpY7i5Vt.mjs} +5 -5
- package/dist/{AccountDetailsHeader-DN2pk4QW.mjs → AccountDetailsHeader-D0FKqNmV.mjs} +3 -3
- package/dist/{AccountFields-CuivK48n.mjs → AccountFields-CgkCSvJV.mjs} +1 -1
- package/dist/{AccountListItem-BAdwVscV.mjs → AccountListItem-DbpLvx5I.mjs} +2 -2
- package/dist/{BudgetUtil-2EncZLBQ.mjs → BudgetUtil-psfk-Amb.mjs} +1 -1
- package/dist/{CurrencyInput-CRtdzs3o.mjs → CurrencyInput-C4xNRL2W.mjs} +1 -1
- package/dist/{CurrencyText-YUhH2caW.mjs → CurrencyText-kyC1aseI.mjs} +1 -1
- package/dist/{GoalStore-DxOUk36P.mjs → GoalStore-BgiYFwWB.mjs} +1 -1
- package/dist/{LineChart-B2Y7zwMu.mjs → LineChart-B35qvXik.mjs} +186 -175
- package/dist/{ManageIncome-Dtbfc4WG.mjs → ManageIncome-BXlzeXk6.mjs} +3 -3
- package/dist/{NotificationSettings-C215AwS0.mjs → NotificationSettings-BuShgjn6.mjs} +2 -2
- package/dist/NumberFormatting-Buh7u8Oi.mjs +48 -0
- package/dist/{OriginalBalanceAction-CEuIYsc_.mjs → OriginalBalanceAction-BsxcvNEF.mjs} +2 -2
- package/dist/{RecurringSettings-CvW7FPMu.mjs → RecurringSettings-1t4mROQZ.mjs} +2 -2
- package/dist/{RecurringTransactions-DTUx9VN1.mjs → RecurringTransactions-ej39mgA6.mjs} +1 -1
- package/dist/{RecurringTransactionsStore-Djo9IeDd.mjs → RecurringTransactionsStore-DrzS1LmF.mjs} +1 -1
- package/dist/{TransactionDetails-DAp_CPCP.mjs → TransactionDetails-B2Z5S7FM.mjs} +2 -2
- package/dist/{TrendsStore-BKBnNQba.mjs → TrendsStore-ZZ8X36lJ.mjs} +2 -2
- package/dist/accounts/index.es.js +7 -7
- package/dist/budgets/index.es.js +5 -5
- package/dist/cashflow/index.es.js +7 -7
- package/dist/common/components/charts/LineChart.d.ts +5 -0
- package/dist/common/index.es.js +13 -13
- package/dist/common/utils/NumberFormatting.d.ts +1 -0
- package/dist/debts/index.es.js +4 -4
- package/dist/finstrong/index.es.js +3 -3
- package/dist/goals/index.es.js +7 -7
- package/dist/investments/index.es.js +1 -1
- package/dist/networth/index.es.js +67 -64
- package/dist/notifications/index.es.js +1 -1
- package/dist/recurringtransactions/index.es.js +8 -8
- package/dist/settings/index.es.js +2 -2
- package/dist/spending/index.es.js +2 -2
- package/dist/transactions/index.es.js +4 -4
- package/dist/trends/index.es.js +6 -6
- package/package.json +1 -1
- package/dist/NumberFormatting-CtWHhyBX.mjs +0 -40
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
import o from "numeral";
|
|
2
|
+
import { g as a } from "./Localization-2MODESHW.mjs";
|
|
3
|
+
const p = 9999999999e-2;
|
|
4
|
+
var c = /* @__PURE__ */ ((t) => (t.CAD = "CAD", t.USD = "USD", t))(c || {});
|
|
5
|
+
const w = (t, r, e) => {
|
|
6
|
+
const s = [], l = (r - t) / (e - 1);
|
|
7
|
+
for (let n = 0; n < e; n++) {
|
|
8
|
+
const i = t + n * l;
|
|
9
|
+
s.push(i);
|
|
10
|
+
}
|
|
11
|
+
return s[e - 1] = r, s;
|
|
12
|
+
}, $ = (t, r, e) => {
|
|
13
|
+
switch (a()) {
|
|
14
|
+
case "fr-ca":
|
|
15
|
+
return o(t).format(`${r} $`, e);
|
|
16
|
+
default:
|
|
17
|
+
return o(t).format(`$${r}`, e);
|
|
18
|
+
}
|
|
19
|
+
}, h = () => {
|
|
20
|
+
switch (a()) {
|
|
21
|
+
case "fr-ca":
|
|
22
|
+
return c.CAD;
|
|
23
|
+
default:
|
|
24
|
+
return c.USD;
|
|
25
|
+
}
|
|
26
|
+
}, f = (t) => t != null && t !== "" && isFinite(t), m = {
|
|
27
|
+
style: "percent",
|
|
28
|
+
minimumFractionDigits: 2,
|
|
29
|
+
maximumFractionDigits: 2
|
|
30
|
+
}, N = (t, r = m) => f(t) ? new Intl.NumberFormat(a(), r).format(Number(t)) : t, u = (t) => new Intl.PluralRules(a(), t), P = (t, r = { type: "ordinal" }, e = {
|
|
31
|
+
one: "st",
|
|
32
|
+
two: "nd",
|
|
33
|
+
few: "rd",
|
|
34
|
+
other: "th"
|
|
35
|
+
}) => {
|
|
36
|
+
const s = u(r).select(t);
|
|
37
|
+
return `${t}${e[s]}`;
|
|
38
|
+
};
|
|
39
|
+
export {
|
|
40
|
+
c as C,
|
|
41
|
+
p as M,
|
|
42
|
+
N as a,
|
|
43
|
+
P as b,
|
|
44
|
+
w as c,
|
|
45
|
+
$ as f,
|
|
46
|
+
h as g,
|
|
47
|
+
f as i
|
|
48
|
+
};
|
|
@@ -4,8 +4,8 @@ import { observer as p } from "mobx-react-lite";
|
|
|
4
4
|
import v from "@mui/material/TextField";
|
|
5
5
|
import { L as y } from "./ListItemAction-DSrYDGAP.mjs";
|
|
6
6
|
import { u as h, l as b } from "./hooks-CE2TKk4a.mjs";
|
|
7
|
-
import { a as T, f as S } from "./NumberFormatting-
|
|
8
|
-
import { C as f } from "./CurrencyInput-
|
|
7
|
+
import { a as T, f as S } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
8
|
+
import { C as f } from "./CurrencyInput-C4xNRL2W.mjs";
|
|
9
9
|
const F = p(({ goal: e }) => {
|
|
10
10
|
const { goals: a } = h(), { setAlert: r, setSelectedGoal: l, updateGoal: m } = b(), [t, s] = _.useState(e.interest_rate ?? 0), c = !e.guid, i = t < 0, d = async () => {
|
|
11
11
|
const n = { ...e, interest_rate: t };
|
|
@@ -7,9 +7,9 @@ import b from "@mui/material/Tabs";
|
|
|
7
7
|
import d from "@mui/material/Divider";
|
|
8
8
|
import R from "@mui/material/List";
|
|
9
9
|
import T from "@mui/material/Stack";
|
|
10
|
-
import { R as C, A as S, a as E, M as v } from "./ManageIncome-
|
|
10
|
+
import { R as C, A as S, a as E, M as v } from "./ManageIncome-BXlzeXk6.mjs";
|
|
11
11
|
import { u as _, j as A, g as f } from "./hooks-CE2TKk4a.mjs";
|
|
12
|
-
import { R as y, F as N } from "./RecurringTransactions-
|
|
12
|
+
import { R as y, F as N } from "./RecurringTransactions-ej39mgA6.mjs";
|
|
13
13
|
import { A as m } from "./WidgetContainer-B8MRJ5Y1.mjs";
|
|
14
14
|
const I = h(() => {
|
|
15
15
|
const { recurring: g } = _(), { repeatingTransactions: n } = A(), { onEvent: o } = f(), l = (r) => {
|
|
@@ -30,7 +30,7 @@ import { subYears as T } from "date-fns/subYears";
|
|
|
30
30
|
import { lastDayOfMonth as q } from "date-fns/lastDayOfMonth";
|
|
31
31
|
import { setDayOfYear as F } from "date-fns/setDayOfYear";
|
|
32
32
|
import { g as R, a as ee, b as te, c as re, d as oe, e as ae, f as ne } from "./DateUtil-BcuH7ErC.mjs";
|
|
33
|
-
import { b as W } from "./NumberFormatting-
|
|
33
|
+
import { b as W } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
34
34
|
import { f as v, D as k } from "./Dialog-CWW597AF.mjs";
|
|
35
35
|
import { b as l } from "./Localization-2MODESHW.mjs";
|
|
36
36
|
var s = /* @__PURE__ */ ((e) => (e[e.Unknown = 0] = "Unknown", e[e.EveryWeek = 1] = "EveryWeek", e[e.EveryOtherWeek = 2] = "EveryOtherWeek", e[e.EveryMonth = 3] = "EveryMonth", e[e.EveryOtherMonth = 4] = "EveryOtherMonth", e[e.EveryQuarter = 5] = "EveryQuarter", e[e.EveryOtherQuarter = 6] = "EveryOtherQuarter", e[e.EveryYear = 7] = "EveryYear", e[e.TwiceAMonth = 8] = "TwiceAMonth", e))(s || {}), p = /* @__PURE__ */ ((e) => (e[e.Paid = 0] = "Paid", e[e.Missed = 1] = "Missed", e[e.Upcoming = 2] = "Upcoming", e))(p || {}), O = /* @__PURE__ */ ((e) => (e[e.Expense = 0] = "Expense", e[e.Income = 1] = "Income", e))(O || {}), Y = /* @__PURE__ */ ((e) => (e[e.Unknown = 0] = "Unknown", e[e.Subscription = 1] = "Subscription", e[e.Bill = 2] = "Bill", e[e.Income = 3] = "Income", e[e.Transfer = 4] = "Transfer", e))(Y || {});
|
package/dist/{RecurringTransactionsStore-Djo9IeDd.mjs → RecurringTransactionsStore-DrzS1LmF.mjs}
RENAMED
|
@@ -8,7 +8,7 @@ import { startOfMonth as S } from "date-fns/startOfMonth";
|
|
|
8
8
|
import { startOfToday as c } from "date-fns/startOfToday";
|
|
9
9
|
import { subDays as y } from "date-fns/subDays";
|
|
10
10
|
import { F as x, A as o } from "./Fetch-87LIQbEA.mjs";
|
|
11
|
-
import { b as E, a, c as d, d as u } from "./RecurringTransactions-
|
|
11
|
+
import { b as E, a, c as d, d as u } from "./RecurringTransactions-ej39mgA6.mjs";
|
|
12
12
|
var A = /* @__PURE__ */ ((r) => (r.Small = "small", r.Medium = "medium", r.Large = "large", r))(A || {});
|
|
13
13
|
const U = 44;
|
|
14
14
|
class h {
|
|
@@ -11,7 +11,7 @@ import M from "@mui/material/ListItemText";
|
|
|
11
11
|
import f from "@mui/material/Stack";
|
|
12
12
|
import { T as Pe, L as Ge, O as h, C as Me, b as Ke, i as $e } from "./User-DaJAQ09j.mjs";
|
|
13
13
|
import { G as Be, h as v, u as A, g as L, m as xe, b as Fe, o as He } from "./hooks-CE2TKk4a.mjs";
|
|
14
|
-
import { f as te } from "./NumberFormatting-
|
|
14
|
+
import { f as te } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
15
15
|
import { Receipt as ze, Delete as oe, ChevronRight as Ue, Cancel as ie, Search as Xe, Edit as Ve, Flag as We } from "@mxenabled/mx-icons";
|
|
16
16
|
import { fromUnixTime as W } from "date-fns/fromUnixTime";
|
|
17
17
|
import { isSameDay as Ne } from "date-fns/isSameDay";
|
|
@@ -37,7 +37,7 @@ import { D as de } from "./Drawer-kEE73B87.mjs";
|
|
|
37
37
|
import ye from "@mui/material/InputAdornment";
|
|
38
38
|
import Je from "@mui/material/Checkbox";
|
|
39
39
|
import ge from "@mui/material/Grid";
|
|
40
|
-
import { C as Qe } from "./CurrencyInput-
|
|
40
|
+
import { C as Qe } from "./CurrencyInput-C4xNRL2W.mjs";
|
|
41
41
|
import et from "@mui/material/Switch";
|
|
42
42
|
var q = /* @__PURE__ */ ((t) => (t[t.Category = 0] = "Category", t[t.Date = 1] = "Date", t[t.Memo = 2] = "Memo", t[t.Tags = 3] = "Tags", t))(q || {}), re = /* @__PURE__ */ ((t) => (t[t.SplitTransaction = 0] = "SplitTransaction", t[t.HideTransaction = 1] = "HideTransaction", t[t.MerchantLogo = 2] = "MerchantLogo", t))(re || {});
|
|
43
43
|
const tt = [
|
|
@@ -14,12 +14,12 @@ import X from "@mui/material/Grid";
|
|
|
14
14
|
import { CategoryIcon as At, Text as S } from "@mxenabled/mxui";
|
|
15
15
|
import { u as Lt, m as Q } from "./hooks-CE2TKk4a.mjs";
|
|
16
16
|
import { b as Rt } from "./Localization-2MODESHW.mjs";
|
|
17
|
-
import { C as O } from "./CurrencyText-
|
|
17
|
+
import { C as O } from "./CurrencyText-kyC1aseI.mjs";
|
|
18
18
|
import { useTheme as wt, Card as Ht, CardContent as It, Box as kt } from "@mui/material";
|
|
19
19
|
import { f as R, D as w } from "./Dialog-CWW597AF.mjs";
|
|
20
20
|
import Et from "@mui/material/Button";
|
|
21
21
|
import { C as A, b as Gt, c as Nt } from "./Category-CevNQ03n.mjs";
|
|
22
|
-
import { f as V } from "./NumberFormatting-
|
|
22
|
+
import { f as V } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
23
23
|
import Bt from "@mui/material/ListItem";
|
|
24
24
|
import Ot from "@mui/material/ListItemButton";
|
|
25
25
|
import z from "@mui/material/ListItemIcon";
|
|
@@ -7,14 +7,14 @@ import E from "@mui/material/List";
|
|
|
7
7
|
import O from "@mui/material/ListSubheader";
|
|
8
8
|
import _ from "@mui/system/Stack";
|
|
9
9
|
import { Text as v } from "@mxenabled/mxui";
|
|
10
|
-
import { A as K } from "../AccountDetailsContent-
|
|
11
|
-
import { u as D1 } from "../AccountDetailsContent-
|
|
12
|
-
import { u as z, A as P } from "../AccountDetailsHeader-
|
|
13
|
-
import { A as W } from "../AccountListItem-
|
|
14
|
-
import { a as Y } from "../AccountFields-
|
|
15
|
-
import { g as U1, b as $1 } from "../AccountFields-
|
|
10
|
+
import { A as K } from "../AccountDetailsContent-BpY7i5Vt.mjs";
|
|
11
|
+
import { u as D1 } from "../AccountDetailsContent-BpY7i5Vt.mjs";
|
|
12
|
+
import { u as z, A as P } from "../AccountDetailsHeader-D0FKqNmV.mjs";
|
|
13
|
+
import { A as W } from "../AccountListItem-DbpLvx5I.mjs";
|
|
14
|
+
import { a as Y } from "../AccountFields-CgkCSvJV.mjs";
|
|
15
|
+
import { g as U1, b as $1 } from "../AccountFields-CgkCSvJV.mjs";
|
|
16
16
|
import { u as w, b as S, d as T, g as D, a as q } from "../hooks-CE2TKk4a.mjs";
|
|
17
|
-
import { f as I } from "../NumberFormatting-
|
|
17
|
+
import { f as I } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
18
18
|
import { D as J } from "../Drawer-kEE73B87.mjs";
|
|
19
19
|
import { A as y, W as Q } from "../WidgetContainer-B8MRJ5Y1.mjs";
|
|
20
20
|
import { C as X } from "../ConnectionsDrawer-CU3E2RLw.mjs";
|
package/dist/budgets/index.es.js
CHANGED
|
@@ -9,7 +9,7 @@ import Q from "@mui/material/styles/useTheme";
|
|
|
9
9
|
import { Text as y, CategoryIcon as H, Icon as N, H1 as ze, H3 as xe } from "@mxenabled/mxui";
|
|
10
10
|
import W from "@mui/material/List";
|
|
11
11
|
import { u as w, i as D, j as ee, m as j, p as te, g as X, b as ne, h as oe, a as Ue, d as ve } from "../hooks-CE2TKk4a.mjs";
|
|
12
|
-
import { f as T } from "../NumberFormatting-
|
|
12
|
+
import { f as T } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
13
13
|
import Ae from "@mui/material/Button";
|
|
14
14
|
import ae from "@mui/material/Divider";
|
|
15
15
|
import K from "@mui/material/ListItem";
|
|
@@ -19,7 +19,7 @@ import Y from "@mui/material/ListItemText";
|
|
|
19
19
|
import { b as M } from "../Localization-2MODESHW.mjs";
|
|
20
20
|
import { D as k } from "../Drawer-kEE73B87.mjs";
|
|
21
21
|
import Fe from "@mui/material/ListItemSecondaryAction";
|
|
22
|
-
import { C as He } from "../CurrencyInput-
|
|
22
|
+
import { C as He } from "../CurrencyInput-C4xNRL2W.mjs";
|
|
23
23
|
import { a as $ } from "../Dialog-CWW597AF.mjs";
|
|
24
24
|
import { C as We } from "../ConnectionsDrawer-CU3E2RLw.mjs";
|
|
25
25
|
import * as O from "d3";
|
|
@@ -28,7 +28,7 @@ import { u as se } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
|
28
28
|
import { L as G } from "../Loader-DUaFpDGv.mjs";
|
|
29
29
|
import { E as de } from "../EmptyState-DA_lfRBv.mjs";
|
|
30
30
|
import { A as L, W as Ke } from "../WidgetContainer-B8MRJ5Y1.mjs";
|
|
31
|
-
import { u as Ve } from "../BudgetUtil-
|
|
31
|
+
import { u as Ve } from "../BudgetUtil-psfk-Amb.mjs";
|
|
32
32
|
import { M as Ye } from "../MiniWidgetContainer-DTQdRK-3.mjs";
|
|
33
33
|
import { isAfter as Ze } from "date-fns/isAfter";
|
|
34
34
|
import { startOfToday as Z } from "date-fns/startOfToday";
|
|
@@ -37,7 +37,7 @@ import Je from "@mui/material/Snackbar";
|
|
|
37
37
|
import ye from "@mui/material/Tab";
|
|
38
38
|
import Qe from "@mui/material/Tabs";
|
|
39
39
|
import { e as et } from "../exportTransactionsToCSV-D8TTNrrE.mjs";
|
|
40
|
-
import { T as Te, a as tt } from "../TransactionDetails-
|
|
40
|
+
import { T as Te, a as tt } from "../TransactionDetails-B2Z5S7FM.mjs";
|
|
41
41
|
import pe from "@mui/material/Card";
|
|
42
42
|
import he from "@mui/material/CardContent";
|
|
43
43
|
import { S as ge } from "../StatusBar-BK_uYHAB.mjs";
|
|
@@ -46,7 +46,7 @@ import { u as nt, b as ot } from "../CategorySelectorDrawer-BmenK5bu.mjs";
|
|
|
46
46
|
import De from "@mui/material/CardHeader";
|
|
47
47
|
import { subDays as at } from "date-fns/subDays";
|
|
48
48
|
import rt from "@mui/material/IconButton";
|
|
49
|
-
import { M as st } from "../ManageIncome-
|
|
49
|
+
import { M as st } from "../ManageIncome-BXlzeXk6.mjs";
|
|
50
50
|
const it = I(() => {
|
|
51
51
|
const { budgets: t } = w(), { totalBudgeted: o } = D(), { incomeTotal: i } = ee(), s = i - o;
|
|
52
52
|
return /* @__PURE__ */ m(S, { direction: "row", justifyContent: "center", my: 16, spacing: 20, children: [
|
|
@@ -9,7 +9,7 @@ import s from "@mui/material/Stack";
|
|
|
9
9
|
import se from "@mui/material/styles/useTheme";
|
|
10
10
|
import { Text as u, P as O, Icon as G, InstitutionLogo as xe, H1 as de, H2 as Xe } from "@mxenabled/mxui";
|
|
11
11
|
import { G as Ye, t as me, u as L, p as ce, d as Ne, b as X, j as P, g as Oe, o as ke, h as He, a as Qe } from "../hooks-CE2TKk4a.mjs";
|
|
12
|
-
import { C as R } from "../CurrencyText-
|
|
12
|
+
import { C as R } from "../CurrencyText-kyC1aseI.mjs";
|
|
13
13
|
import { u as ue } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
14
14
|
import { L as te } from "../Loader-DUaFpDGv.mjs";
|
|
15
15
|
import { I as he } from "../CashflowStore-D9Dpuz7X.mjs";
|
|
@@ -17,16 +17,16 @@ import { C as Gn } from "../CashflowStore-D9Dpuz7X.mjs";
|
|
|
17
17
|
import { b as $ } from "../Localization-2MODESHW.mjs";
|
|
18
18
|
import { M as Ve } from "../MiniWidgetContainer-DTQdRK-3.mjs";
|
|
19
19
|
import { E as Ke } from "../EmptyState-DA_lfRBv.mjs";
|
|
20
|
-
import { R as Je } from "../RecurringSettings-
|
|
20
|
+
import { R as Je } from "../RecurringSettings-1t4mROQZ.mjs";
|
|
21
21
|
import Ze from "@mui/material/Tabs";
|
|
22
22
|
import ye from "@mui/material/Tab";
|
|
23
23
|
import { getUnixTime as B } from "date-fns/getUnixTime";
|
|
24
24
|
import ee from "@mui/material/List";
|
|
25
25
|
import ne from "@mui/material/ListItem";
|
|
26
|
-
import { A as et } from "../AccountListItem-
|
|
26
|
+
import { A as et } from "../AccountListItem-DbpLvx5I.mjs";
|
|
27
27
|
import { f as Y, D as Q } from "../Dialog-CWW597AF.mjs";
|
|
28
28
|
import tt from "@mui/material/ListSubheader";
|
|
29
|
-
import { f as Z } from "../NumberFormatting-
|
|
29
|
+
import { f as Z } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
30
30
|
import { isAfter as Fe } from "date-fns/isAfter";
|
|
31
31
|
import { isBefore as We } from "date-fns/isBefore";
|
|
32
32
|
import { isToday as $e } from "date-fns/isToday";
|
|
@@ -35,14 +35,14 @@ import { alpha as nt, keyframes as ot } from "@mui/material/styles";
|
|
|
35
35
|
import { DataGridPro as at } from "@mui/x-data-grid-pro";
|
|
36
36
|
import { T as Se } from "../TabContentContainer-j01JYR_7.mjs";
|
|
37
37
|
import M from "@mui/material/Button";
|
|
38
|
-
import { M as it, S as rt, i as st, d as we, c as ct } from "../ManageIncome-
|
|
38
|
+
import { M as it, S as rt, i as st, d as we, c as ct } from "../ManageIncome-BXlzeXk6.mjs";
|
|
39
39
|
import { D as Me } from "../Drawer-kEE73B87.mjs";
|
|
40
40
|
import { formatISO as lt } from "date-fns/formatISO";
|
|
41
41
|
import { fromUnixTime as _e } from "date-fns/fromUnixTime";
|
|
42
42
|
import { startOfMonth as dt } from "date-fns/startOfMonth";
|
|
43
43
|
import { subDays as Ge } from "date-fns/subDays";
|
|
44
|
-
import { S as mt, b as ut } from "../TransactionDetails-
|
|
45
|
-
import { F as ht, R as Ie, e as ve } from "../RecurringTransactions-
|
|
44
|
+
import { S as mt, b as ut } from "../TransactionDetails-B2Z5S7FM.mjs";
|
|
45
|
+
import { F as ht, R as Ie, e as ve } from "../RecurringTransactions-ej39mgA6.mjs";
|
|
46
46
|
import { h as pt } from "../DateUtil-BcuH7ErC.mjs";
|
|
47
47
|
import { endOfToday as ft } from "date-fns/endOfToday";
|
|
48
48
|
import { W as De, A as Ae } from "../WidgetContainer-B8MRJ5Y1.mjs";
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { default as React, CSSProperties } from 'react';
|
|
2
|
+
import { SxProps } from '@mui/material/styles';
|
|
2
3
|
import { MarkHandlers } from './linechart/CustomMark';
|
|
3
4
|
export type LineChartDataset = {
|
|
4
5
|
x: string;
|
|
@@ -15,6 +16,9 @@ type LineChartCurve = 'catmullRom' | 'linear' | 'monotoneX' | 'monotoneY' | 'nat
|
|
|
15
16
|
interface LineChartProps {
|
|
16
17
|
axisColor?: string;
|
|
17
18
|
baseline?: string;
|
|
19
|
+
chartFor?: string;
|
|
20
|
+
chartXaxisSx?: SxProps;
|
|
21
|
+
chartYaxisSx?: SxProps;
|
|
18
22
|
colors: (string | undefined)[];
|
|
19
23
|
curveType?: LineChartCurve;
|
|
20
24
|
customLegendVariant?: string;
|
|
@@ -46,6 +50,7 @@ interface LineChartProps {
|
|
|
46
50
|
showXAxisTicks?: boolean;
|
|
47
51
|
showYAxis?: boolean;
|
|
48
52
|
showYAxisTicks?: boolean;
|
|
53
|
+
tickIntervals?: any[] | 'auto' | ((value: any, index: number) => boolean) | undefined;
|
|
49
54
|
title?: string;
|
|
50
55
|
useCustomMark?: boolean;
|
|
51
56
|
valueFormatterString?: string;
|
package/dist/common/index.es.js
CHANGED
|
@@ -14,7 +14,7 @@ import { M as bs } from "../MicroWidgetContainer-C4QQHfD7.mjs";
|
|
|
14
14
|
import { M as xs } from "../MiniWidgetContainer-DTQdRK-3.mjs";
|
|
15
15
|
import { A as vs, D as Ds, W as As } from "../WidgetContainer-B8MRJ5Y1.mjs";
|
|
16
16
|
import { j as Ts, a as Bs, e as Is, n as Ns, A as Ms, f as ks, k as $s, d as Rs, m as Ps, E as Os, i as Us, N as Ls, h as Gs, P as Hs, o as Fs, S as Ws } from "../ConnectDrawer-DJA_S-rX.mjs";
|
|
17
|
-
import { C as Ys } from "../CurrencyInput-
|
|
17
|
+
import { C as Ys } from "../CurrencyInput-C4xNRL2W.mjs";
|
|
18
18
|
import { L as zs } from "../Loader-DUaFpDGv.mjs";
|
|
19
19
|
import { R as js } from "../ResponsiveButton-DZFp78fJ.mjs";
|
|
20
20
|
import { S as Vs } from "../SearchBox-B2_zLv8-.mjs";
|
|
@@ -22,23 +22,23 @@ import { T as at } from "../TransactionStore-B-Tq_YFE.mjs";
|
|
|
22
22
|
import { S as Js } from "../TransactionStore-B-Tq_YFE.mjs";
|
|
23
23
|
import { T as er } from "../TabContentContainer-j01JYR_7.mjs";
|
|
24
24
|
import { I as rr } from "../IconBacking-B9oC6uL2.mjs";
|
|
25
|
-
import { D as ar, F as nr, a as ir, c as cr, R as dr, S as lr } from "../RecurringTransactions-
|
|
25
|
+
import { D as ar, F as nr, a as ir, c as cr, R as dr, S as lr } from "../RecurringTransactions-ej39mgA6.mjs";
|
|
26
26
|
import { C as nt } from "../CashflowStore-D9Dpuz7X.mjs";
|
|
27
27
|
import { I as hr } from "../CashflowStore-D9Dpuz7X.mjs";
|
|
28
|
-
import { d as it } from "../GoalStore-
|
|
29
|
-
import { C as pr, G as mr, M as _r, T as fr } from "../GoalStore-
|
|
30
|
-
import { C as Sr } from "../CurrencyText-
|
|
28
|
+
import { d as it } from "../GoalStore-BgiYFwWB.mjs";
|
|
29
|
+
import { C as pr, G as mr, M as _r, T as fr } from "../GoalStore-BgiYFwWB.mjs";
|
|
30
|
+
import { C as Sr } from "../CurrencyText-kyC1aseI.mjs";
|
|
31
31
|
import { E as wr } from "../EmptyState-DA_lfRBv.mjs";
|
|
32
32
|
import { L as Cr } from "../ListItemAction-DSrYDGAP.mjs";
|
|
33
|
-
import { T as ct } from "../TrendsStore-
|
|
34
|
-
import { L as Dr, S as Ar } from "../TrendsStore-
|
|
33
|
+
import { T as ct } from "../TrendsStore-ZZ8X36lJ.mjs";
|
|
34
|
+
import { L as Dr, S as Ar } from "../TrendsStore-ZZ8X36lJ.mjs";
|
|
35
35
|
import { A as Tr, B as Br, I as Ir, N as Nr, T as Mr, a as kr } from "../ToggleListItem-r0Kx56wF.mjs";
|
|
36
36
|
import { jsxs as y, jsx as n } from "react/jsx-runtime";
|
|
37
37
|
import dt, { useRef as lt, useEffect as ut } from "react";
|
|
38
38
|
import { css as x, keyframes as ht } from "@mxenabled/cssinjs";
|
|
39
39
|
import { useTokens as C, Text as B } from "@mxenabled/mxui";
|
|
40
40
|
import { D as Rr } from "../Donut-1UMNcG67.mjs";
|
|
41
|
-
import { L as Or } from "../LineChart-
|
|
41
|
+
import { L as Or } from "../LineChart-B35qvXik.mjs";
|
|
42
42
|
import { S as Lr } from "../StatusBar-BK_uYHAB.mjs";
|
|
43
43
|
import { D as Hr, a as Fr, O as Wr, b as qr, f as Yr } from "../Dialog-CWW597AF.mjs";
|
|
44
44
|
import { D as gt, a as pt } from "../SingleSegmentDonut-BgbLgwHi.mjs";
|
|
@@ -47,9 +47,9 @@ import { D as jr } from "../Drawer-kEE73B87.mjs";
|
|
|
47
47
|
import { I as Vr, P as Zr, S as Jr } from "../Account-DoxALziV.mjs";
|
|
48
48
|
import { b as E } from "../Category-CevNQ03n.mjs";
|
|
49
49
|
import { C as eo, c as so, a as ro, P as oo } from "../Category-CevNQ03n.mjs";
|
|
50
|
-
import { C as no, f as io, b as co, a as lo, g as uo, i as ho } from "../NumberFormatting-
|
|
51
|
-
import { R as mt } from "../RecurringTransactionsStore-
|
|
52
|
-
import { S as po, T as mo } from "../RecurringTransactionsStore-
|
|
50
|
+
import { C as no, f as io, b as co, a as lo, g as uo, i as ho } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
51
|
+
import { R as mt } from "../RecurringTransactionsStore-DrzS1LmF.mjs";
|
|
52
|
+
import { S as po, T as mo } from "../RecurringTransactionsStore-DrzS1LmF.mjs";
|
|
53
53
|
import { G as fo, B as yo, C as So, W as bo, d as wo, a as xo, i as Co, t as vo, m as Do, x as Ao, y as Eo, g as To, w as Bo, u as Io, f as No, b as Mo, l as ko, z as $o, s as Ro, c as Po, q as Oo, n as Uo, A as Lo, j as Go, r as Ho, h as Fo, v as Wo, o as qo, p as Yo } from "../hooks-CE2TKk4a.mjs";
|
|
54
54
|
import { u as zo } from "../useAccountDisplayName-CyPD_TFR.mjs";
|
|
55
55
|
import { u as jo } from "../useInsightsEnabled-DSnpkUq0.mjs";
|
|
@@ -61,8 +61,8 @@ import { B as St } from "../BeatStore-IBnXd4YK.mjs";
|
|
|
61
61
|
import { endOfMonth as Z } from "date-fns/endOfMonth";
|
|
62
62
|
import { startOfMonth as J } from "date-fns/startOfMonth";
|
|
63
63
|
import { startOfToday as U } from "date-fns/startOfToday";
|
|
64
|
-
import { f as bt, a as wt, b as L } from "../BudgetUtil-
|
|
65
|
-
import { g as Jo, e as ta, c as ea, d as sa, i as ra } from "../BudgetUtil-
|
|
64
|
+
import { f as bt, a as wt, b as L } from "../BudgetUtil-psfk-Amb.mjs";
|
|
65
|
+
import { g as Jo, e as ta, c as ea, d as sa, i as ra } from "../BudgetUtil-psfk-Amb.mjs";
|
|
66
66
|
import { a as xt } from "../DebtsStore-CoZ30R-_.mjs";
|
|
67
67
|
import { a as Ct } from "../FinstrongStore-F2c607dj.mjs";
|
|
68
68
|
import { A as vt, m as Dt, a as At, b as Et } from "../InvestmentUtil-jOyOgzIB.mjs";
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import { RoundingFunction } from 'numeral';
|
|
2
2
|
import { CurrencyCodes } from '../constants';
|
|
3
|
+
export declare const generateEqualIntervals: (minValue: number, maxValue: number, tickCount: number) => number[];
|
|
3
4
|
export declare const formatCurrency: (amount: number | undefined, formatting: string, roundingFunction?: RoundingFunction) => string;
|
|
4
5
|
export declare const getCurrencyCodes: () => CurrencyCodes;
|
|
5
6
|
export declare const isValidNumber: (value: any) => boolean;
|
package/dist/debts/index.es.js
CHANGED
|
@@ -10,13 +10,13 @@ import { fromUnixTime as se } from "date-fns/fromUnixTime";
|
|
|
10
10
|
import { getUnixTime as ce } from "date-fns/getUnixTime";
|
|
11
11
|
import { D as B, M as Ee, I as Ie } from "../DebtsStore-CoZ30R-_.mjs";
|
|
12
12
|
import { a as Fr } from "../DebtsStore-CoZ30R-_.mjs";
|
|
13
|
-
import { f as M, a as Be } from "../NumberFormatting-
|
|
13
|
+
import { f as M, a as Be } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
14
14
|
import { f as K, D as U } from "../Dialog-CWW597AF.mjs";
|
|
15
15
|
import { G as Me, x as q, u as C, l as V, g as k, d as Z, b as Pe } from "../hooks-CE2TKk4a.mjs";
|
|
16
16
|
import { u as Y } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
17
17
|
import { D as te } from "../Drawer-kEE73B87.mjs";
|
|
18
18
|
import { b as A } from "../Localization-2MODESHW.mjs";
|
|
19
|
-
import { A as ke, u as Ne } from "../AccountDetailsHeader-
|
|
19
|
+
import { A as ke, u as Ne } from "../AccountDetailsHeader-D0FKqNmV.mjs";
|
|
20
20
|
import Fe from "@mui/material/Card";
|
|
21
21
|
import Re from "@mui/material/CardContent";
|
|
22
22
|
import Le from "@mui/material/CardHeader";
|
|
@@ -28,10 +28,10 @@ import de from "@mui/material/Tab";
|
|
|
28
28
|
import We from "@mui/material/Tabs";
|
|
29
29
|
import _e from "@mui/material/List";
|
|
30
30
|
import j from "@mui/material/Divider";
|
|
31
|
-
import { M as Ge, I as je, O as ze } from "../OriginalBalanceAction-
|
|
31
|
+
import { M as Ge, I as je, O as ze } from "../OriginalBalanceAction-BsxcvNEF.mjs";
|
|
32
32
|
import Xe from "@mui/material/TextField";
|
|
33
33
|
import { L as J } from "../ListItemAction-DSrYDGAP.mjs";
|
|
34
|
-
import { C as ae } from "../CurrencyInput-
|
|
34
|
+
import { C as ae } from "../CurrencyInput-C4xNRL2W.mjs";
|
|
35
35
|
import pe from "@mui/material/Alert";
|
|
36
36
|
import me from "@mui/material/AlertTitle";
|
|
37
37
|
import he from "@mui/material/Paper";
|
|
@@ -22,7 +22,7 @@ import { L as N } from "../Loader-DUaFpDGv.mjs";
|
|
|
22
22
|
import { F as No, a as Ko } from "../FinstrongStore-F2c607dj.mjs";
|
|
23
23
|
import q from "@mui/material/Button";
|
|
24
24
|
import J from "@mui/material/Card";
|
|
25
|
-
import { L as be } from "../LineChart-
|
|
25
|
+
import { L as be } from "../LineChart-B35qvXik.mjs";
|
|
26
26
|
import { k as xe } from "../ConnectDrawer-DJA_S-rX.mjs";
|
|
27
27
|
import Xe from "@mui/material/Accordion";
|
|
28
28
|
import je from "@mui/material/AccordionDetails";
|
|
@@ -30,7 +30,7 @@ import Ue from "@mui/material/AccordionSummary";
|
|
|
30
30
|
import Ve from "@mui/material/CardHeader";
|
|
31
31
|
import { u as Ye } from "../useDimensions-27p2evRx.mjs";
|
|
32
32
|
import { C as qe } from "../ConnectionsDrawer-CU3E2RLw.mjs";
|
|
33
|
-
import { R as Je } from "../RecurringSettings-
|
|
33
|
+
import { R as Je } from "../RecurringSettings-1t4mROQZ.mjs";
|
|
34
34
|
import Qe from "@mui/material/TextField";
|
|
35
35
|
import { u as Ce } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
36
36
|
import { a as Ze } from "../Dialog-CWW597AF.mjs";
|
|
@@ -40,7 +40,7 @@ import { LocalizationProvider as ot } from "@mui/x-date-pickers/LocalizationProv
|
|
|
40
40
|
import { D as V } from "../Drawer-kEE73B87.mjs";
|
|
41
41
|
import oe from "@mui/material/Tab";
|
|
42
42
|
import nt from "@mui/material/Tabs";
|
|
43
|
-
import { f as rt } from "../NumberFormatting-
|
|
43
|
+
import { f as rt } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
44
44
|
import { T as ne } from "../TabContentContainer-j01JYR_7.mjs";
|
|
45
45
|
import it from "@mui/lab/Timeline";
|
|
46
46
|
import st, { timelineItemClasses as at } from "@mui/lab/TimelineItem";
|
package/dist/goals/index.es.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { g as ue, T as d, G as me, a as We, M as J, C as ye, b as Pe } from "../GoalStore-
|
|
2
|
-
import { c as Yn, d as Zn } from "../GoalStore-
|
|
1
|
+
import { g as ue, T as d, G as me, a as We, M as J, C as ye, b as Pe } from "../GoalStore-BgiYFwWB.mjs";
|
|
2
|
+
import { c as Yn, d as Zn } from "../GoalStore-BgiYFwWB.mjs";
|
|
3
3
|
import { jsxs as r, jsx as e, Fragment as U } from "react/jsx-runtime";
|
|
4
4
|
import y from "react";
|
|
5
5
|
import { observer as D } from "mobx-react-lite";
|
|
@@ -19,12 +19,12 @@ import $e from "@mui/material/CardHeader";
|
|
|
19
19
|
import { Payments as Se, NoteStack as Re, Person as Ee, ChevronRight as M, DragHandle as Xe, CheckCircle as Ue, Icon as be, ExpandLess as Ye, ExpandMore as Ze, AddBox as ve, Trophy as qe } from "@mxenabled/mx-icons";
|
|
20
20
|
import { u as C, l as I, a as xe, d as V, o as Ie, g as Ge, b as Ne } from "../hooks-CE2TKk4a.mjs";
|
|
21
21
|
import { u as he } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
22
|
-
import { f as v } from "../NumberFormatting-
|
|
22
|
+
import { f as v } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
23
23
|
import { S as Je } from "../StatusBar-BK_uYHAB.mjs";
|
|
24
24
|
import E from "@mui/material/Divider";
|
|
25
25
|
import L from "@mui/material/List";
|
|
26
26
|
import { L as ee } from "../ListItemAction-DSrYDGAP.mjs";
|
|
27
|
-
import { C as ke } from "../CurrencyInput-
|
|
27
|
+
import { C as ke } from "../CurrencyInput-C4xNRL2W.mjs";
|
|
28
28
|
import { fromUnixTime as Q } from "date-fns/fromUnixTime";
|
|
29
29
|
import N from "@mui/material/ListItem";
|
|
30
30
|
import k from "@mui/material/ListItemButton";
|
|
@@ -38,11 +38,11 @@ import { g as we, A as fe } from "../ConnectDrawer-DJA_S-rX.mjs";
|
|
|
38
38
|
import tt from "@mui/material/Collapse";
|
|
39
39
|
import nt from "@mui/material/ListItemIcon";
|
|
40
40
|
import ot from "@mui/material/Checkbox";
|
|
41
|
-
import { u as at, A as rt } from "../AccountDetailsHeader-
|
|
42
|
-
import { A as it } from "../AccountDetailsContent-
|
|
41
|
+
import { u as at, A as rt } from "../AccountDetailsHeader-D0FKqNmV.mjs";
|
|
42
|
+
import { A as it } from "../AccountDetailsContent-BpY7i5Vt.mjs";
|
|
43
43
|
import { u as st } from "../useAccountDisplayName-CyPD_TFR.mjs";
|
|
44
44
|
import De from "@mui/material/TextField";
|
|
45
|
-
import { M as lt, I as ct, O as dt } from "../OriginalBalanceAction-
|
|
45
|
+
import { M as lt, I as ct, O as dt } from "../OriginalBalanceAction-BsxcvNEF.mjs";
|
|
46
46
|
import { getUnixTime as mt } from "date-fns/getUnixTime";
|
|
47
47
|
import { isValid as ut } from "date-fns/isValid";
|
|
48
48
|
import { AdapterDateFns as _t } from "@mui/x-date-pickers/AdapterDateFnsV3";
|
|
@@ -18,7 +18,7 @@ import { Text as r, H1 as fe, P as ve, InstitutionLogo as ne } from "@mxenabled/
|
|
|
18
18
|
import Ue from "@mui/material/Button";
|
|
19
19
|
import { u as E, g as be, s as H, b as Q, d as se } from "../hooks-CE2TKk4a.mjs";
|
|
20
20
|
import { A as z, W as je } from "../WidgetContainer-B8MRJ5Y1.mjs";
|
|
21
|
-
import { a as ze, f as oe } from "../NumberFormatting-
|
|
21
|
+
import { a as ze, f as oe } from "../NumberFormatting-Buh7u8Oi.mjs";
|
|
22
22
|
import { u as U } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
23
23
|
import le from "@mui/material/styles/useTheme";
|
|
24
24
|
import { Icon as k } from "@mxenabled/mx-icons";
|