@mx-cartographer/experiences 9.0.0 → 9.0.2

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.
Files changed (29) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/{CategorySelectorDrawer-CmaDLhnf.mjs → CategorySelectorDrawer-8soGrhB8.mjs} +1 -1
  3. package/dist/Dialog-Bvd2n8hz.mjs +66 -0
  4. package/dist/{ListItemAction-CwspSmQi.mjs → ListItemAction-CzZ8s39Z.mjs} +1 -1
  5. package/dist/{ManageIncome-B1JfqslT.mjs → ManageIncome-D1yBODQi.mjs} +2 -2
  6. package/dist/{NotificationSettings-6p-h5phZ.mjs → NotificationSettings-B4JA5IKE.mjs} +1 -1
  7. package/dist/{OriginalBalanceAction-CkJPnp2c.mjs → OriginalBalanceAction-BybTXDtO.mjs} +1 -1
  8. package/dist/{RecurringSettings-cm6MK_aS.mjs → RecurringSettings-D2xbNb67.mjs} +1 -1
  9. package/dist/{TransactionDetails-C3dlAzYf.mjs → TransactionDetails-DctXr07p.mjs} +2 -2
  10. package/dist/{WidgetContainer-DNuz_s7W.mjs → WidgetContainer-CmbU4CBH.mjs} +204 -201
  11. package/dist/accounts/index.es.js +3 -3
  12. package/dist/budgets/index.es.js +5 -5
  13. package/dist/cashflow/index.es.js +3 -3
  14. package/dist/categories/index.es.js +1 -1
  15. package/dist/common/index.es.js +3 -3
  16. package/dist/debts/index.es.js +3 -3
  17. package/dist/finstrong/index.es.js +4 -4
  18. package/dist/goals/index.es.js +4 -4
  19. package/dist/help/index.es.js +1 -1
  20. package/dist/investments/index.es.js +1 -1
  21. package/dist/networth/index.es.js +1 -1
  22. package/dist/notifications/index.es.js +1 -1
  23. package/dist/recurringtransactions/index.es.js +5 -5
  24. package/dist/settings/index.es.js +5 -5
  25. package/dist/spending/index.es.js +2 -2
  26. package/dist/transactions/index.es.js +5 -5
  27. package/dist/trends/index.es.js +2 -2
  28. package/package.json +1 -1
  29. package/dist/Dialog-CwWc0AbH.mjs +0 -63
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ ## [9.0.2] - 05-18-2026
2
+
3
+ - **UPDATED** - Widget size changed event to return content size instead of container size
4
+
5
+ ## [9.0.1] - 05-15-2026
6
+
7
+ - **FIXED** - Bug Fixed - Edit Budget Dialog was cutting out of the frame for smaller devices - Bug Fixed
8
+
1
9
  ## [9.0.0] - 05-14-2026
2
10
 
3
11
  - **UPDATED** - Upgraded core dependencies: React 18 to 19, MUI 5 to 7, MXUI 1 to 2, mx-icons 1 to 2, and Storybook 8.6.4 to 8.6.18
@@ -16,7 +16,7 @@ import { CheckCircle as M, Edit as j, Delete as X, ExpandMore as z } from "@mxen
16
16
  import { Text as q, TextField as H, CategoryIcon as J } from "@mxenabled/mxui";
17
17
  import Q from "@mui/material/Collapse";
18
18
  import Z from "@mui/material/DialogContent";
19
- import { D as ee } from "./Dialog-CwWc0AbH.mjs";
19
+ import { D as ee } from "./Dialog-Bvd2n8hz.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,66 @@
1
+ import { jsx as i, jsxs as x } from "react/jsx-runtime";
2
+ import y from "@mui/material/Dialog";
3
+ import P from "@mui/material/DialogContent";
4
+ import { DialogHeader as S, DialogFooter as A } from "@mxenabled/mxui";
5
+ import { u as M } from "./useScreenSize-mWpmnh5w.mjs";
6
+ const W = ({
7
+ className: l,
8
+ copy: o,
9
+ disablePrimaryButton: t = !1,
10
+ isOpen: n = !1,
11
+ onClose: a,
12
+ onPrimaryAction: s,
13
+ primaryColor: c = "primary",
14
+ primaryText: m = "Confirm",
15
+ onSecondaryAction: e,
16
+ secondaryColor: p = "primary",
17
+ secondaryText: d = "Cancel",
18
+ children: g,
19
+ ...f
20
+ }) => {
21
+ const r = o?.title ?? "", u = o?.close_aria ?? "Close", { isSmallMobile: h } = M(), D = () => {
22
+ s?.(), a();
23
+ }, b = () => {
24
+ e && e(), a();
25
+ };
26
+ return /* @__PURE__ */ i("div", { className: `mx-cmn-dialog ${l}`, children: /* @__PURE__ */ x(
27
+ y,
28
+ {
29
+ "aria-label": r,
30
+ "aria-labelledby": void 0,
31
+ maxWidth: "xs",
32
+ onClose: a,
33
+ open: n,
34
+ slotProps: {
35
+ paper: { "aria-label": r }
36
+ },
37
+ sx: {
38
+ "& .MuiDialog-paperScrollPaper": {
39
+ backgroundColor: "background.default"
40
+ },
41
+ ...h && { "& .MuiDialog-paper": { minWidth: "100%" } },
42
+ height: "100%"
43
+ },
44
+ ...f,
45
+ children: [
46
+ /* @__PURE__ */ i(S, { copy: { title: r, close_aria: u }, onClose: a, truncate: !0 }),
47
+ /* @__PURE__ */ i(P, { sx: { lineHeight: 1.5 }, children: g }),
48
+ /* @__PURE__ */ i(
49
+ A,
50
+ {
51
+ isPrimaryDisabled: t,
52
+ onPrimaryAction: D,
53
+ onSecondaryAction: b,
54
+ primaryColor: c,
55
+ primaryText: m,
56
+ secondaryColor: p,
57
+ secondaryText: d
58
+ }
59
+ )
60
+ ]
61
+ }
62
+ ) });
63
+ };
64
+ export {
65
+ W as D
66
+ };
@@ -8,7 +8,7 @@ import L from "@mui/material/Stack";
8
8
  import { ChevronRight as _ } from "@mxenabled/mx-icons";
9
9
  import { Text as a } from "@mxenabled/mxui";
10
10
  import { u as g } from "./hooks-BaO_gOI6.mjs";
11
- import { D as j } from "./Dialog-CwWc0AbH.mjs";
11
+ import { D as j } from "./Dialog-Bvd2n8hz.mjs";
12
12
  const q = v(
13
13
  ({
14
14
  children: n,
@@ -19,7 +19,7 @@ import { parseISO as pe } from "date-fns/parseISO";
19
19
  import V from "@mui/material/Button";
20
20
  import { Delete as ye, Add as he, ReceiptLong as fe } from "@mxenabled/mx-icons";
21
21
  import { T as ee, u as ge, S as Ce, a as be } from "./EmbeddedCard-DPwJjqMH.mjs";
22
- import { T as xe } from "./TransactionDetails-C3dlAzYf.mjs";
22
+ import { T as xe } from "./TransactionDetails-DctXr07p.mjs";
23
23
  import { addYears as j } from "date-fns/addYears";
24
24
  import { getDayOfYear as Se } from "date-fns/getDayOfYear";
25
25
  import { setDayOfYear as ve } from "date-fns/setDayOfYear";
@@ -31,7 +31,7 @@ import { S as M, D as z } from "./Select-BFt-HD-L.mjs";
31
31
  import { D as N } from "./Drawer-BXqqBMxg.mjs";
32
32
  import { A as O } from "./Analytics-CzGzz_sE.mjs";
33
33
  import { f as Ee, D as Le } from "./DateFormats-HudZ3Bjs.mjs";
34
- import { D as Oe } from "./Dialog-CwWc0AbH.mjs";
34
+ import { D as Oe } from "./Dialog-Bvd2n8hz.mjs";
35
35
  import { formatISO as Te } from "date-fns/formatISO";
36
36
  import { fromUnixTime as ke } from "date-fns/fromUnixTime";
37
37
  import { S as Ne } from "./SearchBox-Cpgu_gdO.mjs";
@@ -19,7 +19,7 @@ import { b as re, f as de } from "./NumberFormatting--XMeeBfr.mjs";
19
19
  import { u as k, A as T, C as S, d as J, g as me, a as q, b as he } from "./hooks-BaO_gOI6.mjs";
20
20
  import { A as ue, N as b } from "./Notification-DTNYSd8P.mjs";
21
21
  import { T as R, a as D } from "./ToggleListItem-Dl1lXNwj.mjs";
22
- import { D as B } from "./Dialog-CwWc0AbH.mjs";
22
+ import { D as B } from "./Dialog-Bvd2n8hz.mjs";
23
23
  import { C as _e } from "./CurrencyInput-adTIRtL3.mjs";
24
24
  import { u as fe } from "./useScreenSize-mWpmnh5w.mjs";
25
25
  import { D as K } from "./Drawer-BXqqBMxg.mjs";
@@ -4,7 +4,7 @@ import { observer as p } from "mobx-react-lite";
4
4
  import v from "@mui/material/TextField";
5
5
  import { a as T, f as S } from "./NumberFormatting--XMeeBfr.mjs";
6
6
  import { u as y, k as h } from "./hooks-BaO_gOI6.mjs";
7
- import { L as b } from "./ListItemAction-CwspSmQi.mjs";
7
+ import { L as b } from "./ListItemAction-CzZ8s39Z.mjs";
8
8
  import { C as f } from "./CurrencyInput-adTIRtL3.mjs";
9
9
  const F = p(({ goal: e }) => {
10
10
  const { goals: n } = y(), { setAlert: r, setSelectedGoal: l, updateGoal: m } = h(), [t, s] = _.useState(e.interest_rate ?? 0), c = !e.guid, i = t < 0, d = async () => {
@@ -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-B1JfqslT.mjs";
10
+ import { R as C, A as S, a as E, M as v } from "./ManageIncome-D1yBODQi.mjs";
11
11
  import { u as _, i as A, g as f } from "./hooks-BaO_gOI6.mjs";
12
12
  import { R as y, F as N } from "./RecurringTransactionsUtil-B3rLEx_g.mjs";
13
13
  import { A as m } from "./Analytics-CzGzz_sE.mjs";
@@ -37,8 +37,8 @@ import { BarChart as mt } from "@mui/x-charts";
37
37
  import { L as _t } from "./Loader-CxeBwuPG.mjs";
38
38
  import Q from "@mui/material/ListItemButton";
39
39
  import X from "@mui/material/ListItemIcon";
40
- import { b as Fe } from "./CategorySelectorDrawer-CmaDLhnf.mjs";
41
- import { D as ae } from "./Dialog-CwWc0AbH.mjs";
40
+ import { b as Fe } from "./CategorySelectorDrawer-8soGrhB8.mjs";
41
+ import { D as ae } from "./Dialog-Bvd2n8hz.mjs";
42
42
  import { D as _e } from "./Drawer-BXqqBMxg.mjs";
43
43
  import { b as gt, C as pt, a as ht } from "./CurrencyDialog-DumQCTPO.mjs";
44
44
  import Pe from "@mui/material/InputAdornment";