@mx-cartographer/experiences 7.11.4 → 7.11.6
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-DpC8T96X.mjs → CategorySelectorDrawer-zT9pFvTa.mjs} +1 -1
- package/dist/Dialog-DdCwLgrl.mjs +60 -0
- package/dist/{ListItemAction-Dq1lMdxh.mjs → ListItemAction-BDnpuLln.mjs} +1 -1
- package/dist/{ManageIncome-C9VHBLye.mjs → ManageIncome-C05btqU-.mjs} +2 -2
- package/dist/{NotificationSettings-Bw4fdVRU.mjs → NotificationSettings-BYv2INpX.mjs} +1 -1
- package/dist/{OriginalBalanceAction-CBZ_YHmB.mjs → OriginalBalanceAction-CRevNVIM.mjs} +1 -1
- package/dist/{RecurringSettings-C9wCLrKK.mjs → RecurringSettings-B0SSXpiK.mjs} +1 -1
- package/dist/{TransactionDetails-DGLtjFZF.mjs → TransactionDetails-Cym3mIjc.mjs} +249 -239
- package/dist/{WidgetContainer-B5jzz8M1.mjs → WidgetContainer-BEpJCqAV.mjs} +1 -1
- package/dist/accounts/index.es.js +4 -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/debts/index.es.js +3 -3
- package/dist/finstrong/index.es.js +4 -4
- package/dist/goals/index.es.js +4 -4
- package/dist/help/index.es.js +1 -1
- 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 +5 -5
- 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-BqUCsQvo.mjs +0 -58
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,14 @@
|
|
|
1
|
+
## [7.11.6] - 03-02-2026
|
|
2
|
+
|
|
3
|
+
- **FIXED** - Account Details drawer a11y issues
|
|
4
|
+
|
|
5
|
+
## [7.11.5] - 03-02-2026
|
|
6
|
+
|
|
7
|
+
- **FIXED** - `HideAction` broken visibility off icon
|
|
8
|
+
- **FIXED** - `HideAction` accessibility improvements (aria, keyboard focus trap, etc)
|
|
9
|
+
- **FIXED** - `TransactionDetails` action list cannot have dialog `div` as direct child of `ul`/`ol` for accessibility
|
|
10
|
+
- **FIXED** - `TagRow` checkbox redundant screenreader announcement
|
|
11
|
+
|
|
1
12
|
## [7.11.4] - 02-27-2026
|
|
2
13
|
|
|
3
14
|
- **FIXED** - Trends Widget | Empty state flash before data load
|
|
@@ -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 p } from "./Localization-2MODESHW.mjs";
|
|
19
|
-
import { D as ee } from "./Dialog-
|
|
19
|
+
import { D as ee } from "./Dialog-DdCwLgrl.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,60 @@
|
|
|
1
|
+
import { jsx as i, jsxs as b } from "react/jsx-runtime";
|
|
2
|
+
import x from "@mui/material/Dialog";
|
|
3
|
+
import u from "@mui/material/DialogContent";
|
|
4
|
+
import { DialogHeader as A, DialogFooter as P } from "@mxenabled/mxui";
|
|
5
|
+
const $ = ({
|
|
6
|
+
className: e,
|
|
7
|
+
copy: r,
|
|
8
|
+
disablePrimaryButton: t = !1,
|
|
9
|
+
isOpen: n = !1,
|
|
10
|
+
onClose: a,
|
|
11
|
+
onPrimaryAction: c,
|
|
12
|
+
primaryColor: s = "primary",
|
|
13
|
+
primaryText: m = "Confirm",
|
|
14
|
+
onSecondaryAction: o,
|
|
15
|
+
secondaryColor: d = "primary",
|
|
16
|
+
secondaryText: g = "Cancel",
|
|
17
|
+
children: p,
|
|
18
|
+
...f
|
|
19
|
+
}) => {
|
|
20
|
+
const l = r?.title ?? "", D = r?.close_aria ?? "Close", h = () => {
|
|
21
|
+
c?.(), a();
|
|
22
|
+
}, y = () => {
|
|
23
|
+
o && o(), a();
|
|
24
|
+
};
|
|
25
|
+
return /* @__PURE__ */ i("div", { className: `mx-cmn-dialog ${e}`, children: /* @__PURE__ */ b(
|
|
26
|
+
x,
|
|
27
|
+
{
|
|
28
|
+
"aria-label": l,
|
|
29
|
+
"aria-labelledby": void 0,
|
|
30
|
+
onClose: a,
|
|
31
|
+
open: n,
|
|
32
|
+
sx: {
|
|
33
|
+
"& .MuiDialog-paperScrollPaper": {
|
|
34
|
+
backgroundColor: "background.default"
|
|
35
|
+
},
|
|
36
|
+
height: "100%"
|
|
37
|
+
},
|
|
38
|
+
...f,
|
|
39
|
+
children: [
|
|
40
|
+
/* @__PURE__ */ i(A, { copy: { title: l, close_aria: D }, onClose: a }),
|
|
41
|
+
/* @__PURE__ */ i(u, { sx: { lineHeight: 1.5 }, children: p }),
|
|
42
|
+
/* @__PURE__ */ i(
|
|
43
|
+
P,
|
|
44
|
+
{
|
|
45
|
+
isPrimaryDisabled: t,
|
|
46
|
+
onPrimaryAction: h,
|
|
47
|
+
onSecondaryAction: y,
|
|
48
|
+
primaryColor: s,
|
|
49
|
+
primaryText: m,
|
|
50
|
+
secondaryColor: d,
|
|
51
|
+
secondaryText: g
|
|
52
|
+
}
|
|
53
|
+
)
|
|
54
|
+
]
|
|
55
|
+
}
|
|
56
|
+
) });
|
|
57
|
+
}, H = $;
|
|
58
|
+
export {
|
|
59
|
+
H as D
|
|
60
|
+
};
|
|
@@ -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-DdCwLgrl.mjs";
|
|
11
11
|
import { u as j } from "./hooks-0kWPTHNb.mjs";
|
|
12
12
|
const q = v(
|
|
13
13
|
({
|
|
@@ -18,7 +18,7 @@ import { parseISO as me } from "date-fns/parseISO";
|
|
|
18
18
|
import Z 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 J, u as fe, S as ge, a as Ce } from "./TransactionList-DrtItQUk.mjs";
|
|
21
|
-
import { T as be } from "./TransactionDetails-
|
|
21
|
+
import { T as be } from "./TransactionDetails-Cym3mIjc.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 ee } from "./NumberFormatting-DjTD0t3W.mjs";
|
|
|
30
30
|
import { D as N } from "./Drawer-DV4NTsFg.mjs";
|
|
31
31
|
import { A as L } from "./Analytics-i5h6BxR1.mjs";
|
|
32
32
|
import { f as Ee, D as Te } from "./DateFormats-Cs-NbEZ7.mjs";
|
|
33
|
-
import { D as Le } from "./Dialog-
|
|
33
|
+
import { D as Le } from "./Dialog-DdCwLgrl.mjs";
|
|
34
34
|
import { formatISO as Oe } 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-0kWPTHNb.mjs";
|
|
19
19
|
import { b as me } from "./Localization-2MODESHW.mjs";
|
|
20
20
|
import { b as _e, f as he } from "./NumberFormatting-DjTD0t3W.mjs";
|
|
21
|
-
import { D as N } from "./Dialog-
|
|
21
|
+
import { D as N } from "./Dialog-DdCwLgrl.mjs";
|
|
22
22
|
import { C as ue } from "./CurrencyInput-PMOAH5R3.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-BDnpuLln.mjs";
|
|
6
6
|
import { u as h, l as b } from "./hooks-0kWPTHNb.mjs";
|
|
7
7
|
import { a as T, f as S } from "./NumberFormatting-DjTD0t3W.mjs";
|
|
8
8
|
import { C as f } from "./CurrencyInput-PMOAH5R3.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-C05btqU-.mjs";
|
|
11
11
|
import { u as _, i as A, g as f } from "./hooks-0kWPTHNb.mjs";
|
|
12
12
|
import { R as y, F as N } from "./RecurringTransactions-B_I4_FGO.mjs";
|
|
13
13
|
import { A as m } from "./Analytics-i5h6BxR1.mjs";
|