@mx-cartographer/experiences 7.13.5 → 7.13.7

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 CHANGED
@@ -1,3 +1,12 @@
1
+ ## [7.13.7] - 03-27-2026
2
+
3
+ - **UPDATED** - Added the prop in BudgetDetailsDrawerV2 to access the transaction list props
4
+
5
+ ## [7.13.6] - 03-26-2026
6
+
7
+ - **UPDATED** - search box placeholder colors to meet color contrast ratios
8
+ - **FIXED** - semantic HTML in CategoryList
9
+
1
10
  ## [7.13.5] - 03-26-2026
2
11
 
3
12
  - **FIXED** - Updated custom tooltip formatting for Finstrong
@@ -21,7 +21,7 @@ import te from "@mui/material/Box";
21
21
  import oe from "@mui/material/Chip";
22
22
  import B from "@mui/material/IconButton";
23
23
  import { u as ae } from "./useAriaLive-MkYebyUR.mjs";
24
- import { S as re } from "./SearchBox-B7km148n.mjs";
24
+ import { S as re } from "./SearchBox-CwDgvWVJ.mjs";
25
25
  import { L as P } from "./Loader-D3rjKx72.mjs";
26
26
  import { D as ne } from "./Drawer-Bbe4AMB1.mjs";
27
27
  const b = () => {
@@ -328,7 +328,7 @@ const se = ({
328
328
  e.guid
329
329
  ) }),
330
330
  /* @__PURE__ */ t(k, { "aria-hidden": "true", component: "li", sx: { ml: 58 } }),
331
- /* @__PURE__ */ t("li", { role: "presentation", style: { listStyle: "none" }, children: /* @__PURE__ */ t(pe, { categories: s, parentCategory: e }) })
331
+ /* @__PURE__ */ t("li", { style: { listStyle: "none" }, children: /* @__PURE__ */ t(pe, { categories: s, parentCategory: e }) })
332
332
  ] });
333
333
  }, he = E(Ee), Se = () => {
334
334
  const { categories: e } = f(), { searchValue: s } = b(), { categories: o } = S(), i = ((a, c = "") => a.reduce((r, n) => {
@@ -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-CIKUOoN_.mjs";
21
- import { T as be } from "./TransactionDetails-BmVM5f4V.mjs";
21
+ import { T as be } from "./TransactionDetails-DgRWcoyX.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";
@@ -33,7 +33,7 @@ import { f as Ee, D as Le } from "./DateFormats-BMpMrZpW.mjs";
33
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
- import { S as Ne } from "./SearchBox-B7km148n.mjs";
36
+ import { S as Ne } from "./SearchBox-CwDgvWVJ.mjs";
37
37
  import { h as Me } from "./DateUtil-wcYTmDRD.mjs";
38
38
  import { b as q } from "./Category-CevNQ03n.mjs";
39
39
  import { T as ne } from "./Transaction-CqjlF6SO.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-DlV2oFD3.mjs";
10
+ import { R as C, A as S, a as E, M as v } from "./ManageIncome-C2RsnWsK.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-BOzBqfdg.mjs";
13
13
  import { A as m } from "./Analytics-BYItVAe-.mjs";
@@ -0,0 +1,48 @@
1
+ import { jsx as o } from "react/jsx-runtime";
2
+ import { observer as s } from "mobx-react-lite";
3
+ import m from "@mui/material/Box";
4
+ import p from "@mui/material/IconButton";
5
+ import t from "@mui/material/InputAdornment";
6
+ import { TextField as d, Icon as n } from "@mxenabled/mxui";
7
+ const x = ({
8
+ ariaLabel: c = "Search",
9
+ cancelAriaLabel: a = "Cancel Search",
10
+ onChange: e,
11
+ placeholder: i = "Search",
12
+ searchValue: r
13
+ }) => /* @__PURE__ */ o(m, { className: "mx-cmn-search-box", px: 24, py: 16, children: /* @__PURE__ */ o(
14
+ d,
15
+ {
16
+ InputProps: {
17
+ startAdornment: /* @__PURE__ */ o(t, { position: "start", children: /* @__PURE__ */ o(n, { name: "search", size: 26, sx: { color: "action.active" } }) }),
18
+ endAdornment: /* @__PURE__ */ o(t, { position: "end", sx: { p: 0 }, children: r ? /* @__PURE__ */ o(
19
+ p,
20
+ {
21
+ "aria-label": a,
22
+ className: "mx-cat-cancel-search-button",
23
+ color: "primary",
24
+ onClick: () => e(""),
25
+ children: /* @__PURE__ */ o(n, { name: "cancel", size: 24 })
26
+ }
27
+ ) : null }),
28
+ sx: {
29
+ "& .MuiOutlinedInput-notchedOutline": {
30
+ borderColor: "text.secondary",
31
+ opacity: 0.5
32
+ },
33
+ "& input::placeholder": { color: "text.secondary", opacity: 1 }
34
+ }
35
+ },
36
+ "aria-label": c,
37
+ name: "search",
38
+ onChange: (l) => e(l.target.value),
39
+ placeholder: i,
40
+ sx: {
41
+ width: "100%"
42
+ },
43
+ value: r
44
+ }
45
+ ) }), I = s(x);
46
+ export {
47
+ I as S
48
+ };