@mx-cartographer/experiences 7.2.17 → 7.2.19-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/CHANGELOG.md +14 -0
- package/dist/{AccountDetailsContent-CsH1w_GZ.mjs → AccountDetailsContent-lnLfEC2C.mjs} +1 -1
- package/dist/{ManageIncome-CsCM4rNt.mjs → ManageIncome-Dk25_VxX.mjs} +1 -1
- package/dist/{NotificationStore-C6PH6MKm.mjs → NotificationStore-86g0bKKR.mjs} +11 -11
- package/dist/{RecurringSettings-DZu2hw1r.mjs → RecurringSettings-kt3yHC1m.mjs} +1 -1
- package/dist/{TransactionDetails-CDtya0KS.mjs → TransactionDetails-CFKOzFKe.mjs} +1 -1
- package/dist/accounts/index.es.js +2 -2
- package/dist/budgets/index.es.js +3 -12
- package/dist/cashflow/index.es.js +3 -3
- package/dist/common/index.es.js +261 -251
- package/dist/common/stores/GlobalStore.d.ts +4 -1
- package/dist/finstrong/index.es.js +1 -1
- package/dist/goals/index.es.js +1 -1
- package/dist/notifications/index.es.js +37 -37
- package/dist/recurringtransactions/index.es.js +4 -4
- package/dist/spending/index.es.js +1 -1
- package/dist/transactions/index.es.js +2 -2
- package/dist/trends/index.es.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
## [7.2.20] - 12-02-2025
|
|
2
|
+
|
|
3
|
+
- **FIXED** - Lonely `Actions` header if no bottom actions in `TransactionDetails`
|
|
4
|
+
- **FIXED** - Uses transaction `description` so that a user's text update will be reflected in `TransactionDetails`
|
|
5
|
+
- **UPDATE** - `GlobalStore` emits an update when a subscribed-to variable changes. Good for external libraries like Pulse.
|
|
6
|
+
|
|
7
|
+
## [7.2.19] - 12-02-2025
|
|
8
|
+
|
|
9
|
+
- **FIXED** - Budget Bubbles tooltips to anchor on element
|
|
10
|
+
|
|
11
|
+
## [7.2.18] - 12-02-2025
|
|
12
|
+
|
|
13
|
+
- **UPDATED** - Insights app bell icon has_been_viewed fixed
|
|
14
|
+
|
|
1
15
|
## [7.2.17] - 12-01-2025
|
|
2
16
|
|
|
3
17
|
- **ADDED** - Load time tracking for full standalone widgets
|
|
@@ -44,7 +44,7 @@ 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-CFKOzFKe.mjs";
|
|
48
48
|
import { T as j } from "./TabContentContainer-j01JYR_7.mjs";
|
|
49
49
|
const U = ({
|
|
50
50
|
children: e,
|
|
@@ -17,7 +17,7 @@ import { endOfMonth as _e } from "date-fns/endOfMonth";
|
|
|
17
17
|
import { parseISO as me } from "date-fns/parseISO";
|
|
18
18
|
import $ from "@mui/material/Button";
|
|
19
19
|
import { Delete as pe, Add as he, ReceiptLong as ye } from "@mxenabled/mx-icons";
|
|
20
|
-
import { T as X, a as ge, u as fe, S as Ce, b as be } from "./TransactionDetails-
|
|
20
|
+
import { T as X, a as ge, u as fe, S as Ce, b as be } from "./TransactionDetails-CFKOzFKe.mjs";
|
|
21
21
|
import { getDayOfYear as xe } from "date-fns/getDayOfYear";
|
|
22
22
|
import { setDayOfYear as Se } from "date-fns/setDayOfYear";
|
|
23
23
|
import { AdapterDateFns as ve } from "@mui/x-date-pickers/AdapterDateFnsV3";
|
|
@@ -1,30 +1,30 @@
|
|
|
1
1
|
import { makeAutoObservable as c, observable as f, runInAction as h } from "mobx";
|
|
2
2
|
import { fromUnixTime as o, isSameDay as d } from "date-fns";
|
|
3
|
-
import { F as l, A as
|
|
3
|
+
import { F as l, A as a } from "./Fetch-87LIQbEA.mjs";
|
|
4
4
|
class s {
|
|
5
5
|
fetchInstance;
|
|
6
|
-
constructor(t, i,
|
|
7
|
-
this.fetchInstance = new l(t, i, void 0,
|
|
6
|
+
constructor(t, i, n) {
|
|
7
|
+
this.fetchInstance = new l(t, i, void 0, n);
|
|
8
8
|
}
|
|
9
|
-
getNotifications = () => this.fetchInstance.get(
|
|
9
|
+
getNotifications = () => this.fetchInstance.get(a.NOTIFICATIONS).then(
|
|
10
10
|
(t) => t.notifications.map((i) => i.notification)
|
|
11
11
|
).finally();
|
|
12
|
-
updateNotification = (t) => this.fetchInstance.put(`${
|
|
12
|
+
updateNotification = (t) => this.fetchInstance.put(`${a.NOTIFICATIONS}/${t.guid}`, {
|
|
13
13
|
guid: t.guid,
|
|
14
14
|
has_been_viewed: t.has_been_viewed
|
|
15
15
|
}).then((i) => i.notification).finally();
|
|
16
16
|
// Note: The notifications/mark_all_as_viewed endpoint is broken, but still returns 202.
|
|
17
17
|
// A bug ticket has been filed to fix it, but should not require any changes here.
|
|
18
|
-
markAllAsViewed = (t) => this.fetchInstance.put(`${
|
|
18
|
+
markAllAsViewed = (t) => this.fetchInstance.put(`${a.NOTIFICATIONS}/mark_all_as_viewed`, { channel: t }).finally();
|
|
19
19
|
}
|
|
20
20
|
const w = (e, t) => {
|
|
21
|
-
const i = o(t[e].delivered_at),
|
|
22
|
-
return !d(i,
|
|
21
|
+
const i = o(t[e].delivered_at), n = o(t[e - 1]?.delivered_at);
|
|
22
|
+
return !d(i, n);
|
|
23
23
|
};
|
|
24
24
|
function u(e) {
|
|
25
25
|
const i = Math.floor(Date.now() / 1e3);
|
|
26
|
-
return e.filter((
|
|
27
|
-
const r =
|
|
26
|
+
return e.filter((n) => {
|
|
27
|
+
const r = n.delivered_at;
|
|
28
28
|
return i - r <= 604800;
|
|
29
29
|
});
|
|
30
30
|
}
|
|
@@ -57,7 +57,7 @@ class A {
|
|
|
57
57
|
}
|
|
58
58
|
};
|
|
59
59
|
markAllAsViewed = async () => {
|
|
60
|
-
this.notifications.forEach((t) => t.has_been_viewed = !0), await this.api.markAllAsViewed()
|
|
60
|
+
this.notifications.forEach((t) => t.has_been_viewed = !0), await this.api.markAllAsViewed();
|
|
61
61
|
};
|
|
62
62
|
updateNotification = async (t) => {
|
|
63
63
|
t.has_been_viewed = !0, await this.api.updateNotification(t);
|
|
@@ -7,7 +7,7 @@ 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-Dk25_VxX.mjs";
|
|
11
11
|
import { u as _, j as A, g as f } from "./hooks-D6XlXHf4.mjs";
|
|
12
12
|
import { R as y, F as N } from "./RecurringTransactions-ej39mgA6.mjs";
|
|
13
13
|
import { A as m } from "./WidgetContainer-EbrN1oIo.mjs";
|
|
@@ -1305,7 +1305,7 @@ const it = ({ transaction: t, onClick: r }) => {
|
|
|
1305
1305
|
i === q.Tags && /* @__PURE__ */ e(Kt, { transaction: a }),
|
|
1306
1306
|
/* @__PURE__ */ e(Z, { variant: u < r.length - 1 ? "inset" : "fullWidth" })
|
|
1307
1307
|
] }, i)) }) }),
|
|
1308
|
-
!d && /* @__PURE__ */ l(_.Fragment, { children: [
|
|
1308
|
+
!d && t.length && /* @__PURE__ */ l(_.Fragment, { children: [
|
|
1309
1309
|
/* @__PURE__ */ e(T, { bold: !0, mb: 8, ml: 26, mt: 16, variant: "Body", children: "Actions" }),
|
|
1310
1310
|
/* @__PURE__ */ e(ne, { square: !0, sx: { boxShadow: "none" }, children: /* @__PURE__ */ l(J, { children: [
|
|
1311
1311
|
t.map((i, u) => /* @__PURE__ */ l(_.Fragment, { children: [
|
|
@@ -7,8 +7,8 @@ import E from "@mui/material/List";
|
|
|
7
7
|
import O from "@mui/material/ListSubheader";
|
|
8
8
|
import A from "@mui/system/Stack";
|
|
9
9
|
import { Text as v } from "@mxenabled/mxui";
|
|
10
|
-
import { A as K } from "../AccountDetailsContent-
|
|
11
|
-
import { u as N1 } from "../AccountDetailsContent-
|
|
10
|
+
import { A as K } from "../AccountDetailsContent-lnLfEC2C.mjs";
|
|
11
|
+
import { u as N1 } from "../AccountDetailsContent-lnLfEC2C.mjs";
|
|
12
12
|
import { u as z, A as P } from "../AccountDetailsHeader-Df1JkzYi.mjs";
|
|
13
13
|
import { A as W } from "../AccountListItem-CeY_WIpj.mjs";
|
|
14
14
|
import { a as Y } from "../AccountFields-DUToRRqW.mjs";
|
package/dist/budgets/index.es.js
CHANGED
|
@@ -38,7 +38,7 @@ import tt from "@mui/material/Snackbar";
|
|
|
38
38
|
import Ce from "@mui/material/Tab";
|
|
39
39
|
import nt from "@mui/material/Tabs";
|
|
40
40
|
import { e as ot } from "../exportTransactionsToCSV-BwwmL4pM.mjs";
|
|
41
|
-
import { T as De, a as at } from "../TransactionDetails-
|
|
41
|
+
import { T as De, a as at } from "../TransactionDetails-CFKOzFKe.mjs";
|
|
42
42
|
import fe from "@mui/material/Card";
|
|
43
43
|
import be from "@mui/material/CardContent";
|
|
44
44
|
import { S as he } from "../StatusBar-BK_uYHAB.mjs";
|
|
@@ -47,7 +47,7 @@ import { u as rt, b as st } from "../CategorySelectorDrawer-DUe4lH5-.mjs";
|
|
|
47
47
|
import Ee from "@mui/material/CardHeader";
|
|
48
48
|
import { subDays as it } from "date-fns/subDays";
|
|
49
49
|
import ct from "@mui/material/IconButton";
|
|
50
|
-
import { M as lt } from "../ManageIncome-
|
|
50
|
+
import { M as lt } from "../ManageIncome-Dk25_VxX.mjs";
|
|
51
51
|
const dt = I(() => {
|
|
52
52
|
const { budgets: t } = w(), { totalBudgeted: o } = D(), { incomeTotal: i } = ne(), s = i - o;
|
|
53
53
|
return /* @__PURE__ */ m(S, { direction: "row", justifyContent: "center", my: 16, spacing: 20, children: [
|
|
@@ -329,16 +329,7 @@ function At({ bubble: t, isDraggable: o, onClick: i = () => {
|
|
|
329
329
|
stroke-opacity: 0.8;
|
|
330
330
|
}
|
|
331
331
|
` }),
|
|
332
|
-
/* @__PURE__ */ e(
|
|
333
|
-
Ve,
|
|
334
|
-
{
|
|
335
|
-
followCursor: !0,
|
|
336
|
-
open: s,
|
|
337
|
-
slotProps: { popper: M },
|
|
338
|
-
title: E,
|
|
339
|
-
children: /* @__PURE__ */ e("circle", { fill: g, id: `circle-${h}`, r: p })
|
|
340
|
-
}
|
|
341
|
-
),
|
|
332
|
+
/* @__PURE__ */ e(Ve, { open: s, slotProps: { popper: M }, title: E, children: /* @__PURE__ */ e("circle", { fill: g, id: `circle-${h}`, r: p }) }),
|
|
342
333
|
/* @__PURE__ */ e("svg", { x: v, y: A, children: /* @__PURE__ */ e(N, { name: u, size: x, sx: { fill: d } }) }),
|
|
343
334
|
p > P && /* @__PURE__ */ e(
|
|
344
335
|
b,
|
|
@@ -17,7 +17,7 @@ import { C as zn } from "../CashflowStore-D9Dpuz7X.mjs";
|
|
|
17
17
|
import { b as M } from "../Localization-2MODESHW.mjs";
|
|
18
18
|
import { M as Je } from "../MiniWidgetContainer-D0gfmbaF.mjs";
|
|
19
19
|
import { E as Ze } from "../EmptyState-DA_lfRBv.mjs";
|
|
20
|
-
import { R as et } from "../RecurringSettings-
|
|
20
|
+
import { R as et } from "../RecurringSettings-kt3yHC1m.mjs";
|
|
21
21
|
import tt from "@mui/material/Tabs";
|
|
22
22
|
import Ce from "@mui/material/Tab";
|
|
23
23
|
import { getUnixTime as B } from "date-fns/getUnixTime";
|
|
@@ -35,13 +35,13 @@ import { alpha as at, keyframes as it } from "@mui/material/styles";
|
|
|
35
35
|
import { DataGridPro as rt } from "@mui/x-data-grid-pro";
|
|
36
36
|
import { T as Se } from "../TabContentContainer-j01JYR_7.mjs";
|
|
37
37
|
import G from "@mui/material/Button";
|
|
38
|
-
import { M as st, S as ct, i as lt, d as _e, c as dt } from "../ManageIncome-
|
|
38
|
+
import { M as st, S as ct, i as lt, d as _e, c as dt } from "../ManageIncome-Dk25_VxX.mjs";
|
|
39
39
|
import { D as Ge } from "../Drawer-kEE73B87.mjs";
|
|
40
40
|
import { formatISO as mt } from "date-fns/formatISO";
|
|
41
41
|
import { fromUnixTime as Ie } from "date-fns/fromUnixTime";
|
|
42
42
|
import { startOfMonth as ut } from "date-fns/startOfMonth";
|
|
43
43
|
import { subDays as je } from "date-fns/subDays";
|
|
44
|
-
import { S as ht, b as pt } from "../TransactionDetails-
|
|
44
|
+
import { S as ht, b as pt } from "../TransactionDetails-CFKOzFKe.mjs";
|
|
45
45
|
import { F as ft, R as De, e as ve } from "../RecurringTransactions-ej39mgA6.mjs";
|
|
46
46
|
import { h as gt } from "../DateUtil-BcuH7ErC.mjs";
|
|
47
47
|
import { endOfToday as bt } from "date-fns/endOfToday";
|