@mx-cartographer/experiences 7.0.63 → 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 +8 -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-BX7dzGF8.mjs → ManageIncome-BXlzeXk6.mjs} +83 -74
- 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-B486z99o.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
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [7.0.65] - 10-31-2025
|
|
2
|
+
|
|
3
|
+
- **FIXED** - BUG Fixed - Networth Y axis label
|
|
4
|
+
|
|
5
|
+
## [7.0.64] - 10-31-2025
|
|
6
|
+
|
|
7
|
+
- **FIXED** - Limit create recurring transaction list to transactions with merchants
|
|
8
|
+
|
|
1
9
|
## [7.0.63] - 10-28-2025
|
|
2
10
|
|
|
3
11
|
- **ADDED** - deep link support for manage income view in Cash Flow widget
|
|
@@ -11,9 +11,9 @@ import M from "@mui/material/Divider";
|
|
|
11
11
|
import v from "@mui/material/ListItem";
|
|
12
12
|
import N from "@mui/material/ListItemButton";
|
|
13
13
|
import w from "@mui/material/ListItemText";
|
|
14
|
-
import { u as D } from "./AccountDetailsHeader-
|
|
14
|
+
import { u as D } from "./AccountDetailsHeader-D0FKqNmV.mjs";
|
|
15
15
|
import { d as z, u as E, g as O, h as X } from "./hooks-CE2TKk4a.mjs";
|
|
16
|
-
import { A as at } from "./AccountListItem-
|
|
16
|
+
import { A as at } from "./AccountListItem-DbpLvx5I.mjs";
|
|
17
17
|
import { A as k } from "./WidgetContainer-B8MRJ5Y1.mjs";
|
|
18
18
|
import { a as V, f as B, D as K } from "./Dialog-CWW597AF.mjs";
|
|
19
19
|
import { b as h } from "./Localization-2MODESHW.mjs";
|
|
@@ -37,14 +37,14 @@ import { LocalizationProvider as ft } from "@mui/x-date-pickers-pro";
|
|
|
37
37
|
import At from "@mui/material/MenuItem";
|
|
38
38
|
import bt from "@mui/material/Select";
|
|
39
39
|
import Tt from "@mui/material/TextField";
|
|
40
|
-
import { C as St } from "./CurrencyInput-
|
|
41
|
-
import { b as Dt } from "./AccountFields-
|
|
40
|
+
import { C as St } from "./CurrencyInput-C4xNRL2W.mjs";
|
|
41
|
+
import { b as Dt } from "./AccountFields-CgkCSvJV.mjs";
|
|
42
42
|
import Et from "@mui/material/Alert";
|
|
43
43
|
import yt from "@mui/material/AlertTitle";
|
|
44
44
|
import xt from "@mui/material/Link";
|
|
45
45
|
import wt from "@mui/material/Paper";
|
|
46
46
|
import { subDays as kt, startOfToday as It, endOfToday as Mt } from "date-fns";
|
|
47
|
-
import { T as vt, a as Lt } from "./TransactionDetails-
|
|
47
|
+
import { T as vt, a as Lt } from "./TransactionDetails-B2Z5S7FM.mjs";
|
|
48
48
|
import { T as j } from "./TabContentContainer-j01JYR_7.mjs";
|
|
49
49
|
const U = ({
|
|
50
50
|
children: e,
|
|
@@ -2,7 +2,7 @@ import { jsx as e, jsxs as u } from "react/jsx-runtime";
|
|
|
2
2
|
import { observer as p } from "mobx-react-lite";
|
|
3
3
|
import d from "@mui/material/Stack";
|
|
4
4
|
import { H3 as w, InstitutionLogo as I, Text as m, H2 as L } from "@mxenabled/mxui";
|
|
5
|
-
import { g as v } from "./AccountFields-
|
|
5
|
+
import { g as v } from "./AccountFields-CgkCSvJV.mjs";
|
|
6
6
|
import h from "react";
|
|
7
7
|
import { G as E, d as y, m as S, u as _, f as G } from "./hooks-CE2TKk4a.mjs";
|
|
8
8
|
import O from "@mui/material/Card";
|
|
@@ -10,13 +10,13 @@ import P from "@mui/material/CardContent";
|
|
|
10
10
|
import M from "@mui/material/CardHeader";
|
|
11
11
|
import { useTheme as B } from "@mui/material/styles";
|
|
12
12
|
import { g as H, a as U, b as j } from "./SpendingData-D5vsfYKo.mjs";
|
|
13
|
-
import { L as z } from "./LineChart-
|
|
13
|
+
import { L as z } from "./LineChart-B35qvXik.mjs";
|
|
14
14
|
import { I as f, P as g, S as C } from "./Account-DoxALziV.mjs";
|
|
15
15
|
import { A } from "./ConnectDrawer-DJA_S-rX.mjs";
|
|
16
16
|
import { L as Y } from "./Loader-DUaFpDGv.mjs";
|
|
17
17
|
import { f as R, D as $ } from "./Dialog-CWW597AF.mjs";
|
|
18
18
|
import { u as k } from "./useAccountDisplayName-CyPD_TFR.mjs";
|
|
19
|
-
import { f as F } from "./NumberFormatting-
|
|
19
|
+
import { f as F } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
20
20
|
const b = () => {
|
|
21
21
|
if (!h.useContext(E))
|
|
22
22
|
throw new Error("useCategoryUiStore() must be used within the GlobalDataContext");
|
|
@@ -2,7 +2,7 @@ import { jsx as u } from "react/jsx-runtime";
|
|
|
2
2
|
import { Icon as p, Text as y } from "@mxenabled/mxui";
|
|
3
3
|
import { F as m, A as d, a as v, P as h, b as F } from "./ConnectDrawer-DJA_S-rX.mjs";
|
|
4
4
|
import { i as T, u as D, a as A, b as g, c as O } from "./Accounts-CNnOAmr2.mjs";
|
|
5
|
-
import { f as _, i as b, a as N, b as S } from "./NumberFormatting-
|
|
5
|
+
import { f as _, i as b, a as N, b as S } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
6
6
|
import { b as i } from "./Localization-2MODESHW.mjs";
|
|
7
7
|
import { f as o, D as f } from "./Dialog-CWW597AF.mjs";
|
|
8
8
|
const w = (l, e) => {
|
|
@@ -10,11 +10,11 @@ import B from "@mui/material/styles/useTheme";
|
|
|
10
10
|
import { InstitutionLogo as L, Text as o } from "@mxenabled/mxui";
|
|
11
11
|
import { Error as A } from "@mxenabled/mx-icons";
|
|
12
12
|
import { I as j } from "./IconBacking-B9oC6uL2.mjs";
|
|
13
|
-
import { g as T } from "./AccountFields-
|
|
13
|
+
import { g as T } from "./AccountFields-CgkCSvJV.mjs";
|
|
14
14
|
import { u as X } from "./useAccountDisplayName-CyPD_TFR.mjs";
|
|
15
15
|
import { d } from "./ConnectDrawer-DJA_S-rX.mjs";
|
|
16
16
|
import { u as $ } from "./hooks-CE2TKk4a.mjs";
|
|
17
|
-
import { f as k } from "./NumberFormatting-
|
|
17
|
+
import { f as k } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
18
18
|
const w = {
|
|
19
19
|
gridRow: 1,
|
|
20
20
|
gridColumn: 1,
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { i as _ } from "./hooks-CE2TKk4a.mjs";
|
|
2
2
|
import { b as d } from "./Category-CevNQ03n.mjs";
|
|
3
3
|
import { b as f } from "./Localization-2MODESHW.mjs";
|
|
4
|
-
import { f as l } from "./NumberFormatting-
|
|
4
|
+
import { f as l } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
5
5
|
const p = (n, e) => n.find((t) => t.guid === e), B = (n, e) => n.find((t) => t.guid === e), T = (n, e) => {
|
|
6
6
|
const t = n.find((r) => r.subCategories.find((a) => a.guid === e));
|
|
7
7
|
if (t)
|
|
@@ -4,7 +4,7 @@ import { css as q } from "@mxenabled/cssinjs";
|
|
|
4
4
|
import { v4 as B } from "uuid";
|
|
5
5
|
import { useTokens as O, TextField as W, P as p } from "@mxenabled/mxui";
|
|
6
6
|
import { b as _, g as d } from "./Localization-2MODESHW.mjs";
|
|
7
|
-
import { g as j, C as D, f as y, M as C } from "./NumberFormatting-
|
|
7
|
+
import { g as j, C as D, f as y, M as C } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
8
8
|
import { u as F } from "./hooks-CE2TKk4a.mjs";
|
|
9
9
|
const G = ({
|
|
10
10
|
allowDecimals: o = !0,
|
|
@@ -15,7 +15,7 @@ import { fromUnixTime as G } from "date-fns/fromUnixTime";
|
|
|
15
15
|
import { addYears as x } from "date-fns/addYears";
|
|
16
16
|
import { getUnixTime as K } from "date-fns/getUnixTime";
|
|
17
17
|
import { b as E } from "./Localization-2MODESHW.mjs";
|
|
18
|
-
import { a as F } from "./NumberFormatting-
|
|
18
|
+
import { a as F } from "./NumberFormatting-Buh7u8Oi.mjs";
|
|
19
19
|
import { f as B, D as U } from "./Dialog-CWW597AF.mjs";
|
|
20
20
|
var a = /* @__PURE__ */ ((e) => (e[e.DEBT_TRACK = 1] = "DEBT_TRACK", e[e.SAVINGS_TRACK = 2] = "SAVINGS_TRACK", e[e.RETIREMENT_TRACK = 3] = "RETIREMENT_TRACK", e[e.EMERGENCY_FUND_TRACK = 4] = "EMERGENCY_FUND_TRACK", e))(a || {}), $ = /* @__PURE__ */ ((e) => (e[e.SAVE_AMOUNT = 1] = "SAVE_AMOUNT", e[e.KEEP_BALANCE_BELOW = 2] = "KEEP_BALANCE_BELOW", e[e.KEEP_BALANCE_ABOVE = 3] = "KEEP_BALANCE_ABOVE", e[e.ACTION = 4] = "ACTION", e))($ || {}), l = /* @__PURE__ */ ((e) => (e[e.AUTOMOBILE = 1] = "AUTOMOBILE", e[e.COLLEGE = 2] = "COLLEGE", e[e.HOUSE = 3] = "HOUSE", e[e.RECREATIONAL_VEHICLE = 4] = "RECREATIONAL_VEHICLE", e[e.VACATION = 5] = "VACATION", e[e.ELECTRONIC = 6] = "ELECTRONIC", e[e.OTHER = 7] = "OTHER", e[e.RETIREMENT = 8] = "RETIREMENT", e[e.EMERGENCY_FUND = 9] = "EMERGENCY_FUND", e[e.SETUP_BUDGETS = 10] = "SETUP_BUDGETS", e[e.START_MONEY_MANAGEMENT = 11] = "START_MONEY_MANAGEMENT", e[e.CREDIT_CARD = 12] = "CREDIT_CARD", e[e.LINE_OF_CREDIT = 13] = "LINE_OF_CREDIT", e[e.LOANS = 14] = "LOANS", e))(l || {});
|
|
21
21
|
const at = ({ description: e, label: t, title: o }) => {
|