@mx-cartographer/experiences 7.11.22 → 7.11.24
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 +11 -0
- package/dist/{CategorySelectorDrawer-5n6Pil_E.mjs → CategorySelectorDrawer-wfUTIbLR.mjs} +1 -1
- package/dist/Dialog-Ck34yr-d.mjs +63 -0
- package/dist/{ListItemAction-CfXGuY7a.mjs → ListItemAction-4KB7P75M.mjs} +1 -1
- package/dist/{ManageIncome-C0ddaiMR.mjs → ManageIncome-4Colv0Oz.mjs} +2 -2
- package/dist/{NotificationSettings-DCbMa5mg.mjs → NotificationSettings-BH2yOwTB.mjs} +1 -1
- package/dist/{OriginalBalanceAction-CW_xOa6Z.mjs → OriginalBalanceAction-BM6rT_Cn.mjs} +1 -1
- package/dist/{RecurringSettings-CD1_vCES.mjs → RecurringSettings-DI1hZYMK.mjs} +1 -1
- package/dist/{TransactionDetails-CgC3Qu7o.mjs → TransactionDetails-pYMs84EF.mjs} +125 -123
- package/dist/{WidgetContainer-BSCjBupR.mjs → WidgetContainer-Ud1mWn0G.mjs} +1 -1
- package/dist/accounts/index.es.js +3 -3
- package/dist/budgets/index.es.js +5 -5
- package/dist/cashflow/index.es.js +3 -3
- package/dist/categories/index.es.js +1 -1
- package/dist/common/index.es.js +3 -3
- package/dist/common/types/localization/RecurringCopy.d.ts +1 -0
- package/dist/debts/index.es.js +3 -3
- package/dist/finstrong/index.es.js +4 -4
- package/dist/goals/index.es.js +235 -216
- package/dist/help/index.es.js +1 -1
- package/dist/insights/components/shared/ChartDrawerTemplate/TipSection.d.ts +3 -1
- package/dist/insights/index.es.js +70 -59
- package/dist/investments/index.es.js +1 -1
- package/dist/networth/index.es.js +1 -1
- package/dist/notifications/index.es.js +1 -1
- package/dist/recurringtransactions/index.es.js +303 -329
- package/dist/settings/index.es.js +5 -5
- package/dist/spending/index.es.js +2 -2
- package/dist/transactions/index.es.js +5 -5
- package/dist/trends/index.es.js +2 -2
- package/package.json +1 -1
- package/dist/Dialog-DdCwLgrl.mjs +0 -60
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [7.11.24] - 03-16-2026
|
|
2
|
+
|
|
3
|
+
- **FIXED** - Add visible tooltip above `RecurrenceCalendar` legend for a11y
|
|
4
|
+
- **FIXED** - Fix aria labels on `RecurrenceDay` to always include date
|
|
5
|
+
- **FIXED** - Update heading markup hierarchies to be logical for a11y
|
|
6
|
+
- **FIXED** - Add aria-label to inner `Dialog` elements with `role="dialog"` in `BudgetsWidget`\
|
|
7
|
+
|
|
8
|
+
## [7.11.23] - 03-16-2026
|
|
9
|
+
|
|
10
|
+
- **UPDATED** - small tweaks in the css of the tip section and displaying the existing amount in the edit currency dialog modal
|
|
11
|
+
|
|
1
12
|
## [7.11.22] - 03-13-2026
|
|
2
13
|
|
|
3
14
|
- **UPDATED** - Theming to use updated MuiPaper border radius
|
|
@@ -16,7 +16,7 @@ import { Text as I, TextField as H, CategoryIcon as J } from "@mxenabled/mxui";
|
|
|
16
16
|
import Q from "@mui/material/Collapse";
|
|
17
17
|
import Z from "@mui/material/DialogContent";
|
|
18
18
|
import { b as g } from "./Localization-CPkpIwIx.mjs";
|
|
19
|
-
import { D as ee } from "./Dialog-
|
|
19
|
+
import { D as ee } from "./Dialog-Ck34yr-d.mjs";
|
|
20
20
|
import te from "@mui/material/Box";
|
|
21
21
|
import oe from "@mui/material/Chip";
|
|
22
22
|
import v from "@mui/material/IconButton";
|
|
@@ -0,0 +1,63 @@
|
|
|
1
|
+
import { jsx as r, jsxs as y } from "react/jsx-runtime";
|
|
2
|
+
import x from "@mui/material/Dialog";
|
|
3
|
+
import P from "@mui/material/DialogContent";
|
|
4
|
+
import { DialogHeader as u, DialogFooter as A } from "@mxenabled/mxui";
|
|
5
|
+
const $ = ({
|
|
6
|
+
className: e,
|
|
7
|
+
copy: o,
|
|
8
|
+
disablePrimaryButton: t = !1,
|
|
9
|
+
isOpen: n = !1,
|
|
10
|
+
onClose: a,
|
|
11
|
+
onPrimaryAction: c,
|
|
12
|
+
primaryColor: s = "primary",
|
|
13
|
+
primaryText: m = "Confirm",
|
|
14
|
+
onSecondaryAction: l,
|
|
15
|
+
secondaryColor: d = "primary",
|
|
16
|
+
secondaryText: p = "Cancel",
|
|
17
|
+
children: g,
|
|
18
|
+
...f
|
|
19
|
+
}) => {
|
|
20
|
+
const i = o?.title ?? "", D = o?.close_aria ?? "Close", b = () => {
|
|
21
|
+
c?.(), a();
|
|
22
|
+
}, h = () => {
|
|
23
|
+
l && l(), a();
|
|
24
|
+
};
|
|
25
|
+
return /* @__PURE__ */ r("div", { className: `mx-cmn-dialog ${e}`, children: /* @__PURE__ */ y(
|
|
26
|
+
x,
|
|
27
|
+
{
|
|
28
|
+
PaperProps: {
|
|
29
|
+
"aria-label": i
|
|
30
|
+
},
|
|
31
|
+
"aria-label": i,
|
|
32
|
+
"aria-labelledby": void 0,
|
|
33
|
+
onClose: a,
|
|
34
|
+
open: n,
|
|
35
|
+
sx: {
|
|
36
|
+
"& .MuiDialog-paperScrollPaper": {
|
|
37
|
+
backgroundColor: "background.default"
|
|
38
|
+
},
|
|
39
|
+
height: "100%"
|
|
40
|
+
},
|
|
41
|
+
...f,
|
|
42
|
+
children: [
|
|
43
|
+
/* @__PURE__ */ r(u, { copy: { title: i, close_aria: D }, onClose: a }),
|
|
44
|
+
/* @__PURE__ */ r(P, { sx: { lineHeight: 1.5 }, children: g }),
|
|
45
|
+
/* @__PURE__ */ r(
|
|
46
|
+
A,
|
|
47
|
+
{
|
|
48
|
+
isPrimaryDisabled: t,
|
|
49
|
+
onPrimaryAction: b,
|
|
50
|
+
onSecondaryAction: h,
|
|
51
|
+
primaryColor: s,
|
|
52
|
+
primaryText: m,
|
|
53
|
+
secondaryColor: d,
|
|
54
|
+
secondaryText: p
|
|
55
|
+
}
|
|
56
|
+
)
|
|
57
|
+
]
|
|
58
|
+
}
|
|
59
|
+
) });
|
|
60
|
+
}, H = $;
|
|
61
|
+
export {
|
|
62
|
+
H as D
|
|
63
|
+
};
|
|
@@ -7,7 +7,7 @@ import I from "@mui/material/ListItemText";
|
|
|
7
7
|
import L from "@mui/material/Stack";
|
|
8
8
|
import { ChevronRight as _ } from "@mxenabled/mx-icons";
|
|
9
9
|
import { Text as m } from "@mxenabled/mxui";
|
|
10
|
-
import { D as g } from "./Dialog-
|
|
10
|
+
import { D as g } from "./Dialog-Ck34yr-d.mjs";
|
|
11
11
|
import { u as j } from "./hooks-BxkfR-Ff.mjs";
|
|
12
12
|
const q = v(
|
|
13
13
|
({
|
|
@@ -18,7 +18,7 @@ import { parseISO as me } from "date-fns/parseISO";
|
|
|
18
18
|
import J from "@mui/material/Button";
|
|
19
19
|
import { Delete as pe, Add as ye, ReceiptLong as he } from "@mxenabled/mx-icons";
|
|
20
20
|
import { T as V, u as fe, S as ge, a as Ce } from "./StatusIndicator-wyBzyHJc.mjs";
|
|
21
|
-
import { T as be } from "./TransactionDetails-
|
|
21
|
+
import { T as be } from "./TransactionDetails-pYMs84EF.mjs";
|
|
22
22
|
import { addYears as j } from "date-fns/addYears";
|
|
23
23
|
import { getDayOfYear as xe } from "date-fns/getDayOfYear";
|
|
24
24
|
import { setDayOfYear as Se } from "date-fns/setDayOfYear";
|
|
@@ -30,7 +30,7 @@ import { b as Re, f as te } from "./NumberFormatting-QCaNwbjv.mjs";
|
|
|
30
30
|
import { D as N } from "./Drawer-DV4NTsFg.mjs";
|
|
31
31
|
import { A as O } from "./Analytics-i5h6BxR1.mjs";
|
|
32
32
|
import { f as Ee, D as Le } from "./DateFormats-BMpMrZpW.mjs";
|
|
33
|
-
import { D as Oe } from "./Dialog-
|
|
33
|
+
import { D as Oe } from "./Dialog-Ck34yr-d.mjs";
|
|
34
34
|
import { formatISO as Te } from "date-fns/formatISO";
|
|
35
35
|
import { fromUnixTime as ke } from "date-fns/fromUnixTime";
|
|
36
36
|
import { S as Ne } from "./SearchBox-B7km148n.mjs";
|
|
@@ -18,7 +18,7 @@ import { A as le, T as R, a as D, N as b } from "./Notification-CMBNDGC-.mjs";
|
|
|
18
18
|
import { u as S, r as T, o as A, d as J, g as re, a as X, b as de } from "./hooks-BxkfR-Ff.mjs";
|
|
19
19
|
import { b as me } from "./Localization-CPkpIwIx.mjs";
|
|
20
20
|
import { b as _e, f as he } from "./NumberFormatting-QCaNwbjv.mjs";
|
|
21
|
-
import { D as N } from "./Dialog-
|
|
21
|
+
import { D as N } from "./Dialog-Ck34yr-d.mjs";
|
|
22
22
|
import { C as ue } from "./CurrencyInput-DuMktPu3.mjs";
|
|
23
23
|
import { u as fe } from "./useScreenSize-B6JyS_Lj.mjs";
|
|
24
24
|
import { D as q } from "./Drawer-DV4NTsFg.mjs";
|
|
@@ -2,7 +2,7 @@ import { jsx as o } from "react/jsx-runtime";
|
|
|
2
2
|
import _ from "react";
|
|
3
3
|
import { observer as p } from "mobx-react-lite";
|
|
4
4
|
import v from "@mui/material/TextField";
|
|
5
|
-
import { L as y } from "./ListItemAction-
|
|
5
|
+
import { L as y } from "./ListItemAction-4KB7P75M.mjs";
|
|
6
6
|
import { u as h, k as b } from "./hooks-BxkfR-Ff.mjs";
|
|
7
7
|
import { a as T, f as S } from "./NumberFormatting-QCaNwbjv.mjs";
|
|
8
8
|
import { C as f } from "./CurrencyInput-DuMktPu3.mjs";
|
|
@@ -7,7 +7,7 @@ import R from "@mui/material/Tabs";
|
|
|
7
7
|
import d from "@mui/material/Divider";
|
|
8
8
|
import b 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-4Colv0Oz.mjs";
|
|
11
11
|
import { u as _, i as A, g as f } from "./hooks-BxkfR-Ff.mjs";
|
|
12
12
|
import { R as y, F as N } from "./RecurringTransactions-CYNpe_RS.mjs";
|
|
13
13
|
import { A as m } from "./Analytics-i5h6BxR1.mjs";
|