@mx-cartographer/experiences 7.4.12 → 7.4.14

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 (48) hide show
  1. package/CHANGELOG.md +8 -0
  2. package/dist/{Account-BrOTlmeK.mjs → Account-CvR2-dSR.mjs} +1 -1
  3. package/dist/{AccountDetailsContent-BcWGqnxx.mjs → AccountDetailsContent-CitErkuS.mjs} +87 -80
  4. package/dist/{AccountDetailsHeader-C8MxsxhN.mjs → AccountDetailsHeader-BkG3MNYo.mjs} +3 -3
  5. package/dist/{AccountFields-BQZ-o6Kj.mjs → AccountFields-zCMqet85.mjs} +2 -2
  6. package/dist/{AccountListItem-aIE9WWTO.mjs → AccountListItem-DHrz8Mml.mjs} +3 -3
  7. package/dist/{AccountStore-DqO84Aer.mjs → AccountStore-LgfBcYMe.mjs} +1 -1
  8. package/dist/{Accounts-DC_A4UCa.mjs → Accounts-Bzy1_REQ.mjs} +1 -1
  9. package/dist/{CategorySelectorDrawer-SUgfE5GN.mjs → CategorySelectorDrawer-B-I3kajA.mjs} +1 -1
  10. package/dist/{ConnectDrawer-KL8t1qSC.mjs → ConnectDrawer-BkvlItWx.mjs} +1 -1
  11. package/dist/{ConnectionsDrawer-DaK5uIL5.mjs → ConnectionsDrawer-VmuVFHbL.mjs} +2 -2
  12. package/dist/{DebtsStore-DVPZbv2C.mjs → DebtsStore-Bq-aPy-5.mjs} +1 -1
  13. package/dist/Drawer-By9V-B5L.mjs +178 -0
  14. package/dist/{GoalStore-o4rrjGSJ.mjs → GoalStore-1P19goZ7.mjs} +1 -1
  15. package/dist/{Help-BjLMsuMS.mjs → Help-Ea3BlXQp.mjs} +1 -1
  16. package/dist/{ManageIncome-BcSaZ_b1.mjs → ManageIncome-CaoQl609.mjs} +3 -3
  17. package/dist/MicroWidgetContainer-r6mtxRer.mjs +52 -0
  18. package/dist/MiniWidgetContainer-Bg02sF1Y.mjs +71 -0
  19. package/dist/{NetWorthStore-DG2X69jG.mjs → NetWorthStore-rC0q7P7t.mjs} +2 -2
  20. package/dist/{NotificationSettings-Cy0qgDf6.mjs → NotificationSettings-uzM8tCoH.mjs} +1 -1
  21. package/dist/{RecurringSettings-BAberQCv.mjs → RecurringSettings-B4ybrS0B.mjs} +2 -2
  22. package/dist/{SpendingLegend-DLh6CQbW.mjs → SpendingLegend-DsNH6ziK.mjs} +1 -1
  23. package/dist/{TransactionDetails-CXy1vL_K.mjs → TransactionDetails-m5PddMQn.mjs} +3 -3
  24. package/dist/{WidgetContainer-CaPjoWeE.mjs → WidgetContainer-CoFDmQRE.mjs} +2 -2
  25. package/dist/accounts/index.es.js +14 -14
  26. package/dist/analytics/index.es.js +1 -1
  27. package/dist/budgets/index.es.js +7 -7
  28. package/dist/cashflow/index.es.js +7 -7
  29. package/dist/categories/index.es.js +1 -1
  30. package/dist/common/index.es.js +12 -12
  31. package/dist/dashboard/index.es.js +1 -1
  32. package/dist/debts/index.es.js +6 -6
  33. package/dist/finstrong/index.es.js +9 -9
  34. package/dist/goals/index.es.js +9 -9
  35. package/dist/help/index.es.js +2 -2
  36. package/dist/investments/index.es.js +3 -3
  37. package/dist/networth/index.es.js +6 -6
  38. package/dist/notifications/index.es.js +2 -2
  39. package/dist/recurringtransactions/index.es.js +8 -8
  40. package/dist/settings/index.es.js +6 -6
  41. package/dist/spending/index.es.js +5 -5
  42. package/dist/transactions/index.es.js +6 -6
  43. package/dist/trends/index.es.js +6 -6
  44. package/dist/{useAccountDisplayName-Cjx8YmKK.mjs → useAccountDisplayName-B7iXTNM8.mjs} +1 -1
  45. package/package.json +1 -1
  46. package/dist/Drawer-BEtCk82g.mjs +0 -163
  47. package/dist/MicroWidgetContainer-B2hO9rOG.mjs +0 -45
  48. package/dist/MiniWidgetContainer-98-hKFqm.mjs +0 -56
@@ -0,0 +1,178 @@
1
+ import { jsxs as u, jsx as r } from "react/jsx-runtime";
2
+ import s from "@mui/material/Box";
3
+ import h from "@mui/material/Stack";
4
+ import { H2 as S, Drawer as B } from "@mxenabled/mxui";
5
+ import b from "@mui/material/Button";
6
+ import v from "@mui/material/IconButton";
7
+ import { ArrowBack as j } from "@mxenabled/mx-icons";
8
+ const $ = ({
9
+ footerStyles: a = {},
10
+ hasSecondaryAction: t = !0,
11
+ isPrimaryDisabled: i,
12
+ onPrimaryAction: o,
13
+ onSecondaryAction: e,
14
+ primaryButtonProps: n = {},
15
+ primaryColor: c = "primary",
16
+ primaryText: d = "Save",
17
+ secondaryColor: l = "primary",
18
+ secondaryText: p = "Cancel"
19
+ }) => /* @__PURE__ */ u(
20
+ h,
21
+ {
22
+ sx: {
23
+ bgcolor: "background.paper",
24
+ flexDirection: "row",
25
+ gap: 16,
26
+ justifyContent: "flex-end",
27
+ p: 24,
28
+ ...a
29
+ },
30
+ children: [
31
+ t && /* @__PURE__ */ r(
32
+ b,
33
+ {
34
+ color: l,
35
+ onClick: e,
36
+ variant: o ? "outlined" : "contained",
37
+ children: p
38
+ }
39
+ ),
40
+ o && /* @__PURE__ */ r(
41
+ b,
42
+ {
43
+ ...n,
44
+ color: c,
45
+ disabled: i,
46
+ onClick: o,
47
+ variant: "contained",
48
+ children: d
49
+ }
50
+ )
51
+ ]
52
+ }
53
+ ), F = ({
54
+ ariaLabelClose: a,
55
+ onClose: t,
56
+ shouldShowBorders: i,
57
+ shouldShowShadow: o,
58
+ title: e
59
+ }) => /* @__PURE__ */ u(
60
+ h,
61
+ {
62
+ "aria-level": 1,
63
+ direction: "row",
64
+ role: "heading",
65
+ sx: {
66
+ alignItems: "center",
67
+ backgroundColor: "background.paper",
68
+ ...i && {
69
+ borderBottom: 1,
70
+ borderTop: 1,
71
+ borderColor: "border.light"
72
+ },
73
+ ...o && {
74
+ boxShadow: "0px 2px 8px 0px #6A73811F"
75
+ },
76
+ padding: "8px 8px 8px 8px"
77
+ },
78
+ children: [
79
+ /* @__PURE__ */ r(v, { "aria-label": a, color: "primary", onClick: t, children: /* @__PURE__ */ r(j, { color: "primary", sx: { fontSize: 22 } }) }),
80
+ /* @__PURE__ */ r(
81
+ s,
82
+ {
83
+ sx: {
84
+ flexGrow: 1,
85
+ margin: "auto",
86
+ textAlign: "center"
87
+ },
88
+ children: /* @__PURE__ */ r(
89
+ S,
90
+ {
91
+ bold: !0,
92
+ id: `${e?.replace(/\s+/g, "-").toLowerCase()}-header-title`,
93
+ variant: "Body",
94
+ children: e
95
+ }
96
+ )
97
+ }
98
+ ),
99
+ /* @__PURE__ */ r(s, { width: "44px" })
100
+ ]
101
+ }
102
+ ), H = ({
103
+ ariaLabelClose: a = "Close",
104
+ children: t,
105
+ footerStyles: i = {},
106
+ hasSecondaryAction: o = !0,
107
+ id: e,
108
+ isOpen: n,
109
+ isPrimaryDisabled: c,
110
+ onClose: d,
111
+ onPrimaryAction: l,
112
+ onSecondaryAction: p,
113
+ primaryButtonProps: g,
114
+ primaryColor: m = "primary",
115
+ primaryText: w,
116
+ secondaryColor: f = "secondary",
117
+ secondaryText: k,
118
+ shouldShowHeaderBorders: C = !0,
119
+ shouldShowHeaderShadow: y = !1,
120
+ title: x,
121
+ ...D
122
+ }) => /* @__PURE__ */ r(
123
+ B,
124
+ {
125
+ id: e,
126
+ isOpen: n,
127
+ onClose: d,
128
+ slotProps: {
129
+ root: {
130
+ role: "dialog",
131
+ "aria-modal": "true",
132
+ "aria-labelledby": `${x?.replace(/\s+/g, "-").toLowerCase()}-header-title`
133
+ }
134
+ },
135
+ sx: {
136
+ "& .MuiDrawer-paper": {
137
+ backgroundColor: "background.default",
138
+ borderRadius: 0
139
+ },
140
+ height: "100%",
141
+ "& .MuiToolbar-root": {
142
+ backgroundColor: "background.paper"
143
+ }
144
+ },
145
+ ...D,
146
+ children: /* @__PURE__ */ u(h, { height: "100%", justifyContent: "space-between", children: [
147
+ /* @__PURE__ */ r(
148
+ F,
149
+ {
150
+ ariaLabelClose: a,
151
+ onClose: d,
152
+ shouldShowBorders: C,
153
+ shouldShowShadow: y,
154
+ title: x
155
+ }
156
+ ),
157
+ /* @__PURE__ */ r(s, { height: "100%", overflow: "auto", children: t }),
158
+ l && /* @__PURE__ */ r(
159
+ $,
160
+ {
161
+ footerStyles: i,
162
+ hasSecondaryAction: o,
163
+ isPrimaryDisabled: c,
164
+ onPrimaryAction: l,
165
+ onSecondaryAction: p ?? d,
166
+ primaryButtonProps: g,
167
+ primaryColor: m,
168
+ primaryText: w,
169
+ secondaryColor: f,
170
+ secondaryText: k
171
+ }
172
+ )
173
+ ] })
174
+ }
175
+ ), R = H;
176
+ export {
177
+ R as D
178
+ };
@@ -7,7 +7,7 @@ import O from "@mui/material/CardHeader";
7
7
  import S from "@mui/material/Stack";
8
8
  import { AccountBalance as w, ChevronRight as L } from "@mxenabled/mx-icons";
9
9
  import { Text as A } from "@mxenabled/mxui";
10
- import { l as b } from "./ConnectDrawer-KL8t1qSC.mjs";
10
+ import { l as b } from "./ConnectDrawer-BkvlItWx.mjs";
11
11
  import { a as y } from "./hooks-ZMp65DFz.mjs";
12
12
  import { makeAutoObservable as D, runInAction as c } from "mobx";
13
13
  import { F as v, A as i } from "./Fetch-DecPFeGU.mjs";
@@ -21,7 +21,7 @@ import { observer as rt } from "mobx-react-lite";
21
21
  import at from "@mui/material/Alert";
22
22
  import ct from "@mui/material/Snackbar";
23
23
  import lt from "@mui/material/TextField";
24
- import { D as U } from "./Drawer-BEtCk82g.mjs";
24
+ import { D as U } from "./Drawer-By9V-B5L.mjs";
25
25
  import { L as dt } from "./Loader-DUaFpDGv.mjs";
26
26
  import Ot from "@mui/material/ListItemAvatar";
27
27
  import Nt from "@mui/material/ListItem";
@@ -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, b as fe, S as Ce, c as be } from "./TransactionDetails-CXy1vL_K.mjs";
20
+ import { T as X, a as ge, b as fe, S as Ce, c as be } from "./TransactionDetails-m5PddMQn.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";
@@ -25,8 +25,8 @@ import { DatePicker as we } from "@mui/x-date-pickers";
25
25
  import { LocalizationProvider as Ae } from "@mui/x-date-pickers/LocalizationProvider";
26
26
  import { u as w, j as F, g as G, b as Ie, h as Z, o as De } from "./hooks-ZMp65DFz.mjs";
27
27
  import { b as Ee, f as J } from "./NumberFormatting-DjTD0t3W.mjs";
28
- import { D as O } from "./Drawer-BEtCk82g.mjs";
29
- import { A as R } from "./WidgetContainer-CaPjoWeE.mjs";
28
+ import { D as O } from "./Drawer-By9V-B5L.mjs";
29
+ import { A as R } from "./WidgetContainer-CoFDmQRE.mjs";
30
30
  import { f as Re, a as Te, D as Le } from "./Dialog-BPTr3qHE.mjs";
31
31
  import { formatISO as Oe } from "date-fns/formatISO";
32
32
  import { fromUnixTime as ke } from "date-fns/fromUnixTime";
@@ -0,0 +1,52 @@
1
+ import { jsx as r, jsxs as h, Fragment as f } from "react/jsx-runtime";
2
+ import x from "@mui/material/Button";
3
+ import u from "@mui/material/Card";
4
+ import C from "@mui/material/CardContent";
5
+ import b from "@mui/material/CardHeader";
6
+ import { P as g, H3 as v } from "@mxenabled/mxui";
7
+ import { ChevronRight as W } from "@mxenabled/mx-icons";
8
+ import { u as M } from "./useDimensions-27p2evRx.mjs";
9
+ import { W as w } from "./hooks-ZMp65DFz.mjs";
10
+ const y = ({
11
+ children: o,
12
+ className: e,
13
+ ctaLabel: n,
14
+ onCTAClick: a,
15
+ subHeader: i,
16
+ sx: s,
17
+ title: c,
18
+ variant: l = "borderless"
19
+ }) => {
20
+ const [d, { height: m, width: p }] = M(), t = /* @__PURE__ */ h(f, { children: [
21
+ /* @__PURE__ */ r(
22
+ b,
23
+ {
24
+ action: /* @__PURE__ */ r(
25
+ x,
26
+ {
27
+ endIcon: /* @__PURE__ */ r(W, { size: 20 }),
28
+ onClick: a,
29
+ size: "small",
30
+ sx: {
31
+ "&:focus-visible, &:focus": {
32
+ outline: "2px solid",
33
+ outlineColor: "primary.main",
34
+ outlineOffset: "2px"
35
+ }
36
+ },
37
+ variant: "text",
38
+ children: n
39
+ }
40
+ ),
41
+ subheader: i && /* @__PURE__ */ r(g, { sx: { color: "text.secondary" }, variant: "body2", children: i }),
42
+ sx: { p: 0, pb: 8, width: "calc(100% - 8px)", "& .MuiCardHeader-action": { mt: 0 } },
43
+ title: /* @__PURE__ */ r(v, { sx: { width: "calc(100% - 10px)" }, children: c })
44
+ }
45
+ ),
46
+ /* @__PURE__ */ r(C, { ref: d, sx: { p: 0, ":last-child": { pb: 0 } }, children: /* @__PURE__ */ r(w, { availableHeight: m, availableWidth: p, children: o }) })
47
+ ] });
48
+ return l === "borderless" ? t : /* @__PURE__ */ r(u, { className: e, sx: { alignItems: "center", p: 16, ...s }, children: t });
49
+ }, F = y;
50
+ export {
51
+ F as M
52
+ };
@@ -0,0 +1,71 @@
1
+ import { jsxs as r, jsx as i, Fragment as x } from "react/jsx-runtime";
2
+ import g from "@mui/material/Box";
3
+ import u from "@mui/material/Button";
4
+ import C from "@mui/material/Card";
5
+ import v from "@mui/material/CardHeader";
6
+ import b from "@mui/material/CardContent";
7
+ import W from "@mui/material/IconButton";
8
+ import { Icon as z, ChevronRight as H } from "@mxenabled/mx-icons";
9
+ import { H3 as I, Text as B, P as M } from "@mxenabled/mxui";
10
+ import { u as S } from "./useDimensions-27p2evRx.mjs";
11
+ import { W as j } from "./hooks-ZMp65DFz.mjs";
12
+ const w = ({
13
+ children: a,
14
+ className: l = "mx-cmn-mini-widget",
15
+ closeLabel: m,
16
+ contentStyles: s,
17
+ onClose: e,
18
+ onPrimaryCtaClick: o,
19
+ primaryCtaLabel: d = "",
20
+ subTitle: n = "",
21
+ sx: c = {},
22
+ title: t = ""
23
+ }) => {
24
+ const [p, { height: f, width: h }] = S();
25
+ return /* @__PURE__ */ r(C, { className: l, sx: { ...c }, children: [
26
+ /* @__PURE__ */ i(
27
+ v,
28
+ {
29
+ sx: { pb: 8 },
30
+ title: /* @__PURE__ */ r(x, { children: [
31
+ /* @__PURE__ */ r(
32
+ g,
33
+ {
34
+ sx: {
35
+ alignItems: "center",
36
+ display: "grid",
37
+ gap: 2,
38
+ gridTemplateColumns: "1fr auto",
39
+ pb: 4
40
+ },
41
+ children: [
42
+ t && /* @__PURE__ */ i(I, { children: t }),
43
+ e ? /* @__PURE__ */ i(W, { "aria-label": m, onClick: e, size: "small", children: /* @__PURE__ */ i(z, { name: "close", size: 24 }) }) : o && /* @__PURE__ */ i(
44
+ u,
45
+ {
46
+ endIcon: /* @__PURE__ */ i(H, {}),
47
+ onClick: o,
48
+ size: "small",
49
+ sx: {
50
+ "&:focus-visible, &:focus": {
51
+ outline: "2px solid",
52
+ outlineColor: "primary.main",
53
+ outlineOffset: "2px"
54
+ }
55
+ },
56
+ children: /* @__PURE__ */ i(B, { bold: !0, variant: "Small", children: d })
57
+ }
58
+ )
59
+ ]
60
+ }
61
+ ),
62
+ n && /* @__PURE__ */ i(M, { color: "text.secondary", sx: { fontSize: 15, lineHeight: "20px" }, variant: "Small", children: n })
63
+ ] })
64
+ }
65
+ ),
66
+ /* @__PURE__ */ i(b, { ref: p, sx: { p: 0, ...s }, children: /* @__PURE__ */ i(j, { availableHeight: f, availableWidth: h, children: a }) })
67
+ ] });
68
+ }, E = w;
69
+ export {
70
+ E as M
71
+ };
@@ -3,8 +3,8 @@ import { format as A } from "date-fns/format";
3
3
  import { fromUnixTime as W } from "date-fns/fromUnixTime";
4
4
  import { startOfMonth as _ } from "date-fns/startOfMonth";
5
5
  import { subMonths as B } from "date-fns/subMonths";
6
- import { a as b } from "./Accounts-DC_A4UCa.mjs";
7
- import { e as N, a as M, f as v } from "./ConnectDrawer-KL8t1qSC.mjs";
6
+ import { a as b } from "./Accounts-Bzy1_REQ.mjs";
7
+ import { e as N, a as M, f as v } from "./ConnectDrawer-BkvlItWx.mjs";
8
8
  const f = 13, L = (n, t) => n.filter((e) => {
9
9
  const { is_closed: r, is_deleted: s, is_hidden: a, is_manual: i } = e;
10
10
  return r || s || a ? !1 : i || !e.guid ? !0 : t.some((l) => n.some((g) => l.guid === g.member_guid));
@@ -21,7 +21,7 @@ import { b as de, f as me } from "./NumberFormatting-DjTD0t3W.mjs";
21
21
  import { D as N } from "./Dialog-BPTr3qHE.mjs";
22
22
  import { C as he } from "./CurrencyInput-itK0R3wV.mjs";
23
23
  import { u as _e } from "./useScreenSize-B6JyS_Lj.mjs";
24
- import { D as J } from "./Drawer-BEtCk82g.mjs";
24
+ import { D as J } from "./Drawer-By9V-B5L.mjs";
25
25
  import ue from "@mui/material/Collapse";
26
26
  import pe from "@mui/material/Card";
27
27
  import fe from "@mui/material/CardContent";
@@ -7,10 +7,10 @@ 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-BcSaZ_b1.mjs";
10
+ import { R as C, A as S, a as E, M as v } from "./ManageIncome-CaoQl609.mjs";
11
11
  import { u as _, j as A, g as f } from "./hooks-ZMp65DFz.mjs";
12
12
  import { R as y, F as N } from "./RecurringTransactions-BqijW_8S.mjs";
13
- import { A as m } from "./WidgetContainer-CaPjoWeE.mjs";
13
+ import { A as m } from "./WidgetContainer-CoFDmQRE.mjs";
14
14
  const I = h(() => {
15
15
  const { recurring: g } = _(), { repeatingTransactions: n } = A(), { onEvent: o } = f(), l = (r) => {
16
16
  o(m.RECURRING_TRANSACTIONS_CLICK_EXPENSE, {
@@ -8,7 +8,7 @@ import f from "@mui/material/Stack";
8
8
  import { useTheme as N } from "@mui/material/styles";
9
9
  import { CategoryIcon as k, CategoryIconVariants as A, Text as h } from "@mxenabled/mxui";
10
10
  import { D as G } from "./Donut-Dmy3JTWd.mjs";
11
- import { u as O } from "./TransactionDetails-CXy1vL_K.mjs";
11
+ import { u as O } from "./TransactionDetails-m5PddMQn.mjs";
12
12
  import { u as $ } from "./hooks-ZMp65DFz.mjs";
13
13
  import { u as j } from "./useScreenSize-B6JyS_Lj.mjs";
14
14
  import { f as D } from "./NumberFormatting-DjTD0t3W.mjs";
@@ -17,7 +17,7 @@ import { fromUnixTime as Y } from "date-fns/fromUnixTime";
17
17
  import { isSameDay as Ne } from "date-fns/isSameDay";
18
18
  import { h as Ye } from "./DateUtil-CBdcsyuk.mjs";
19
19
  import { L as Ie } from "./Loader-DUaFpDGv.mjs";
20
- import { A as P } from "./WidgetContainer-CaPjoWeE.mjs";
20
+ import { A as P } from "./WidgetContainer-CoFDmQRE.mjs";
21
21
  import re from "@mui/material/Paper";
22
22
  import de from "@mui/material/Button";
23
23
  import je from "@mui/material/FormGroup";
@@ -30,10 +30,10 @@ import B from "@mui/material/ListItem";
30
30
  import { D as W, f as we, a as Ee } from "./Dialog-BPTr3qHE.mjs";
31
31
  import U from "@mui/material/ListItemButton";
32
32
  import X from "@mui/material/ListItemIcon";
33
- import { a as Oe } from "./CategorySelectorDrawer-SUgfE5GN.mjs";
33
+ import { a as Oe } from "./CategorySelectorDrawer-B-I3kajA.mjs";
34
34
  import { b as le } from "./Localization-2MODESHW.mjs";
35
35
  import { getUnixTime as Ze } from "date-fns/getUnixTime";
36
- import { D as ue } from "./Drawer-BEtCk82g.mjs";
36
+ import { D as ue } from "./Drawer-By9V-B5L.mjs";
37
37
  import ye from "@mui/material/InputAdornment";
38
38
  import Je from "@mui/material/Checkbox";
39
39
  import pe from "@mui/material/Grid";
@@ -36,8 +36,8 @@ import we from "@mui/material/ToggleButton";
36
36
  import Ke from "@mui/material/ToggleButtonGroup";
37
37
  import Ge from "@mui/material/styles/useTheme";
38
38
  import { f as K, a as G, D as Me } from "./Dialog-BPTr3qHE.mjs";
39
- import { D as We } from "./Drawer-BEtCk82g.mjs";
40
- import { k as ye, l as xe } from "./ConnectDrawer-KL8t1qSC.mjs";
39
+ import { D as We } from "./Drawer-By9V-B5L.mjs";
40
+ import { k as ye, l as xe } from "./ConnectDrawer-BkvlItWx.mjs";
41
41
  const ve = {
42
42
  ACCOUNTS_CLICK_ACCOUNT: "accounts_widget_click_account",
43
43
  ACCOUNTS_CLICK_CONNECT: "accounts_widget_click_connect_accounts",
@@ -8,29 +8,29 @@ import O from "@mui/material/ListSubheader";
8
8
  import Z from "@mui/system/Stack";
9
9
  import { Text as g } from "@mxenabled/mxui";
10
10
  import { useTheme as Q } from "@mui/material/styles";
11
- import { u as U, A as X } from "../AccountDetailsHeader-C8MxsxhN.mjs";
11
+ import { u as U, A as X } from "../AccountDetailsHeader-BkG3MNYo.mjs";
12
12
  import { L as e1 } from "../LineChart-BQRxZF3p.mjs";
13
13
  import { g as t1, a as n1, b as l1 } from "../SpendingData-BuJ03S9d.mjs";
14
14
  import { m as i1, u as M, b as S, d as W, g as P, a as o1 } from "../hooks-ZMp65DFz.mjs";
15
- import { A as I, l as G, m as C1 } from "../ConnectDrawer-KL8t1qSC.mjs";
16
- import { F as C3, M as d3 } from "../ConnectDrawer-KL8t1qSC.mjs";
17
- import { I as $, P as j, S as Y } from "../Account-BrOTlmeK.mjs";
18
- import { a as d1 } from "../AccountFields-BQZ-o6Kj.mjs";
19
- import { g as s3, b as a3 } from "../AccountFields-BQZ-o6Kj.mjs";
20
- import { A as N } from "../AccountListItem-aIE9WWTO.mjs";
21
- import { A as c1 } from "../AccountDetailsContent-BcWGqnxx.mjs";
22
- import { u as L3 } from "../AccountDetailsContent-BcWGqnxx.mjs";
15
+ import { A as I, l as G, m as C1 } from "../ConnectDrawer-BkvlItWx.mjs";
16
+ import { F as C3, M as d3 } from "../ConnectDrawer-BkvlItWx.mjs";
17
+ import { I as $, P as j, S as Y } from "../Account-CvR2-dSR.mjs";
18
+ import { a as d1 } from "../AccountFields-zCMqet85.mjs";
19
+ import { g as s3, b as a3 } from "../AccountFields-zCMqet85.mjs";
20
+ import { A as N } from "../AccountListItem-DHrz8Mml.mjs";
21
+ import { A as c1 } from "../AccountDetailsContent-CitErkuS.mjs";
22
+ import { u as L3 } from "../AccountDetailsContent-CitErkuS.mjs";
23
23
  import { f as D } from "../NumberFormatting-DjTD0t3W.mjs";
24
- import { D as s1 } from "../Drawer-BEtCk82g.mjs";
25
- import { A as x, W as a1 } from "../WidgetContainer-CaPjoWeE.mjs";
26
- import { C as r1 } from "../ConnectionsDrawer-DaK5uIL5.mjs";
24
+ import { D as s1 } from "../Drawer-By9V-B5L.mjs";
25
+ import { A as x, W as a1 } from "../WidgetContainer-CoFDmQRE.mjs";
26
+ import { C as r1 } from "../ConnectionsDrawer-VmuVFHbL.mjs";
27
27
  import { u as K } from "../useScreenSize-B6JyS_Lj.mjs";
28
28
  import { u as B } from "../useWidgetLoadTimer-hIOioiKx.mjs";
29
29
  import { L as w } from "../Loader-DUaFpDGv.mjs";
30
30
  import L1 from "@mui/material/ListItem";
31
- import { M as z } from "../MiniWidgetContainer-98-hKFqm.mjs";
31
+ import { M as z } from "../MiniWidgetContainer-Bg02sF1Y.mjs";
32
32
  import u1 from "@mui/material/Stack";
33
- import { A as h3, a as H3 } from "../AccountStore-DqO84Aer.mjs";
33
+ import { A as h3, a as H3 } from "../AccountStore-LgfBcYMe.mjs";
34
34
  const h1 = (o, C) => {
35
35
  const l = $.includes(C) ? t1(o) : [], t = j.includes(C) ? n1(o) : [], L = Y.includes(C) ? l1(o) : [];
36
36
  return [l, t, L].filter((i) => i.length > 0);
@@ -8,7 +8,7 @@ import a from "@mui/material/Stack";
8
8
  import _ from "@mui/material/styles/useTheme";
9
9
  import { Text as u, TextField as L } from "@mxenabled/mxui";
10
10
  import { L as W } from "../Loader-DUaFpDGv.mjs";
11
- import { M as j } from "../MiniWidgetContainer-98-hKFqm.mjs";
11
+ import { M as j } from "../MiniWidgetContainer-Bg02sF1Y.mjs";
12
12
  import { k as f, u as b, g as q, b as E } from "../hooks-ZMp65DFz.mjs";
13
13
  import Q from "@mui/material/ToggleButton";
14
14
  import G from "@mui/material/ToggleButtonGroup";
@@ -17,21 +17,21 @@ import ie from "@mui/material/ListItemAvatar";
17
17
  import Y from "@mui/material/ListItemButton";
18
18
  import Z from "@mui/material/ListItemText";
19
19
  import { b as L } from "../Localization-2MODESHW.mjs";
20
- import { D as P } from "../Drawer-BEtCk82g.mjs";
20
+ import { D as P } from "../Drawer-By9V-B5L.mjs";
21
21
  import Xe from "@mui/material/ListItemSecondaryAction";
22
22
  import { C as Ve } from "../CurrencyInput-itK0R3wV.mjs";
23
23
  import { D as z } from "../Dialog-BPTr3qHE.mjs";
24
- import { C as Ye } from "../ConnectionsDrawer-DaK5uIL5.mjs";
24
+ import { C as Ye } from "../ConnectionsDrawer-VmuVFHbL.mjs";
25
25
  import * as E from "d3";
26
26
  import Ze from "@mui/material/Tooltip";
27
27
  import { useTheme as qe } from "@mui/material/styles";
28
28
  import { u as ce } from "../useScreenSize-B6JyS_Lj.mjs";
29
29
  import { L as U } from "../Loader-DUaFpDGv.mjs";
30
30
  import { E as ue } from "../EmptyState-DoxNUae-.mjs";
31
- import { A as $, W as Je } from "../WidgetContainer-CaPjoWeE.mjs";
31
+ import { A as $, W as Je } from "../WidgetContainer-CoFDmQRE.mjs";
32
32
  import { u as Qe } from "../BudgetUtil-BmZXkL0C.mjs";
33
33
  import { u as we } from "../useWidgetLoadTimer-hIOioiKx.mjs";
34
- import { M as et } from "../MiniWidgetContainer-98-hKFqm.mjs";
34
+ import { M as et } from "../MiniWidgetContainer-Bg02sF1Y.mjs";
35
35
  import { isAfter as tt } from "date-fns/isAfter";
36
36
  import { startOfToday as J } from "date-fns/startOfToday";
37
37
  import De from "@mui/material/Alert";
@@ -39,16 +39,16 @@ import Ie from "@mui/material/Snackbar";
39
39
  import _e from "@mui/material/Tab";
40
40
  import nt from "@mui/material/Tabs";
41
41
  import { e as ot } from "../exportTransactionsToCSV-DuAaI5XA.mjs";
42
- import { T as Ee, a as at } from "../TransactionDetails-CXy1vL_K.mjs";
42
+ import { T as Ee, a as at } from "../TransactionDetails-m5PddMQn.mjs";
43
43
  import he from "@mui/material/Card";
44
44
  import fe from "@mui/material/CardContent";
45
45
  import { S as pe } from "../StatusBar-BK_uYHAB.mjs";
46
46
  import { S as Oe } from "../SingleSegmentDonut-BgbLgwHi.mjs";
47
- import { u as rt, b as st } from "../CategorySelectorDrawer-SUgfE5GN.mjs";
47
+ import { u as rt, b as st } from "../CategorySelectorDrawer-B-I3kajA.mjs";
48
48
  import Me from "@mui/material/CardHeader";
49
49
  import { subDays as it } from "date-fns/subDays";
50
50
  import ct from "@mui/material/IconButton";
51
- import { M as lt } from "../ManageIncome-BcSaZ_b1.mjs";
51
+ import { M as lt } from "../ManageIncome-CaoQl609.mjs";
52
52
  const dt = I(() => {
53
53
  const { budgets: t } = w(), { totalBudgeted: n } = D(), { incomeTotal: i } = ne(), s = i - n;
54
54
  return /* @__PURE__ */ m(C, { direction: "row", justifyContent: "center", my: 16, spacing: 20, children: [
@@ -16,15 +16,15 @@ import { I as fe } from "../CashflowStore-D9Dpuz7X.mjs";
16
16
  import { C as Bn } from "../CashflowStore-D9Dpuz7X.mjs";
17
17
  import { b as M } from "../Localization-2MODESHW.mjs";
18
18
  import { u as We } from "../useWidgetLoadTimer-hIOioiKx.mjs";
19
- import { M as Je } from "../MiniWidgetContainer-98-hKFqm.mjs";
19
+ import { M as Je } from "../MiniWidgetContainer-Bg02sF1Y.mjs";
20
20
  import { E as Ze } from "../EmptyState-DoxNUae-.mjs";
21
- import { R as et } from "../RecurringSettings-BAberQCv.mjs";
21
+ import { R as et } from "../RecurringSettings-B4ybrS0B.mjs";
22
22
  import tt from "@mui/material/Tabs";
23
23
  import Ce from "@mui/material/Tab";
24
24
  import { getUnixTime as U } from "date-fns/getUnixTime";
25
25
  import ne from "@mui/material/List";
26
26
  import ae from "@mui/material/ListItem";
27
- import { A as nt } from "../AccountListItem-aIE9WWTO.mjs";
27
+ import { A as nt } from "../AccountListItem-DHrz8Mml.mjs";
28
28
  import { f as Y, a as Q } from "../Dialog-BPTr3qHE.mjs";
29
29
  import ot from "@mui/material/ListSubheader";
30
30
  import { f as te } from "../NumberFormatting-DjTD0t3W.mjs";
@@ -36,17 +36,17 @@ import { alpha as at, keyframes as it } from "@mui/material/styles";
36
36
  import { DataGridPro as rt } from "@mui/x-data-grid-pro";
37
37
  import { T as Se } from "../TabContentContainer-j01JYR_7.mjs";
38
38
  import G from "@mui/material/Button";
39
- import { M as st, S as ct, i as lt, d as _e, c as dt } from "../ManageIncome-BcSaZ_b1.mjs";
40
- import { D as je } from "../Drawer-BEtCk82g.mjs";
39
+ import { M as st, S as ct, i as lt, d as _e, c as dt } from "../ManageIncome-CaoQl609.mjs";
40
+ import { D as je } from "../Drawer-By9V-B5L.mjs";
41
41
  import { formatISO as mt } from "date-fns/formatISO";
42
42
  import { fromUnixTime as Ie } from "date-fns/fromUnixTime";
43
43
  import { startOfMonth as ut } from "date-fns/startOfMonth";
44
44
  import { subDays as ze } from "date-fns/subDays";
45
- import { S as ht, c as pt } from "../TransactionDetails-CXy1vL_K.mjs";
45
+ import { S as ht, c as pt } from "../TransactionDetails-m5PddMQn.mjs";
46
46
  import { F as ft, R as De, e as ve } from "../RecurringTransactions-BqijW_8S.mjs";
47
47
  import { h as gt } from "../DateUtil-CBdcsyuk.mjs";
48
48
  import { endOfToday as bt } from "date-fns/endOfToday";
49
- import { W as Ae, A as Ee } from "../WidgetContainer-CaPjoWeE.mjs";
49
+ import { W as Ae, A as Ee } from "../WidgetContainer-CoFDmQRE.mjs";
50
50
  import { F as xt, A as B } from "../Fetch-DecPFeGU.mjs";
51
51
  const V = () => {
52
52
  if (!f.useContext(Ve))
@@ -1,4 +1,4 @@
1
- import { b as o, C as a, a as t, u as C } from "../CategorySelectorDrawer-SUgfE5GN.mjs";
1
+ import { b as o, C as a, a as t, u as C } from "../CategorySelectorDrawer-B-I3kajA.mjs";
2
2
  import { C as g } from "../CategoryStore-U7hOZAbP.mjs";
3
3
  export {
4
4
  o as CategoryRow,
@@ -10,10 +10,10 @@ import { T as rt } from "../User-Cnlegl1N.mjs";
10
10
  import { C as ps, b as ms, L as _s, a as fs } from "../User-Cnlegl1N.mjs";
11
11
  import { H as ot } from "../Help-DhcC-C05.mjs";
12
12
  import { E as Ss } from "../Help-DhcC-C05.mjs";
13
- import { M as ws } from "../MicroWidgetContainer-B2hO9rOG.mjs";
14
- import { M as Cs } from "../MiniWidgetContainer-98-hKFqm.mjs";
15
- import { A as Ds, D as As, W as Es } from "../WidgetContainer-CaPjoWeE.mjs";
16
- import { k as Bs, a as Is, e as Ns, h as Ms, A as $s, f as ks, l as Rs, d as Us, n as Ps, E as Os, j as Ls, N as Gs, i as Hs, P as Fs, o as Ws, S as qs } from "../ConnectDrawer-KL8t1qSC.mjs";
13
+ import { M as ws } from "../MicroWidgetContainer-r6mtxRer.mjs";
14
+ import { M as Cs } from "../MiniWidgetContainer-Bg02sF1Y.mjs";
15
+ import { A as Ds, D as As, W as Es } from "../WidgetContainer-CoFDmQRE.mjs";
16
+ import { k as Bs, a as Is, e as Ns, h as Ms, A as $s, f as ks, l as Rs, d as Us, n as Ps, E as Os, j as Ls, N as Gs, i as Hs, P as Fs, o as Ws, S as qs } from "../ConnectDrawer-BkvlItWx.mjs";
17
17
  import { C as Qs } from "../CurrencyInput-itK0R3wV.mjs";
18
18
  import { L as Xs } from "../Loader-DUaFpDGv.mjs";
19
19
  import { R as Ks } from "../ResponsiveButton-DZFp78fJ.mjs";
@@ -25,8 +25,8 @@ import { I as or } from "../IconBacking-B9oC6uL2.mjs";
25
25
  import { D as nr, F as ir, a as cr, c as dr, R as lr, S as ur } from "../RecurringTransactions-BqijW_8S.mjs";
26
26
  import { C as nt } from "../CashflowStore-D9Dpuz7X.mjs";
27
27
  import { I as gr } from "../CashflowStore-D9Dpuz7X.mjs";
28
- import { d as it } from "../GoalStore-o4rrjGSJ.mjs";
29
- import { C as mr, G as _r, M as fr, T as yr } from "../GoalStore-o4rrjGSJ.mjs";
28
+ import { d as it } from "../GoalStore-1P19goZ7.mjs";
29
+ import { C as mr, G as _r, M as fr, T as yr } from "../GoalStore-1P19goZ7.mjs";
30
30
  import { C as br } from "../CurrencyText-Dr0EZ7bp.mjs";
31
31
  import { E as xr } from "../EmptyState-DoxNUae-.mjs";
32
32
  import { L as vr } from "../ListItemAction-BxTkF6Tz.mjs";
@@ -41,20 +41,20 @@ import { S as Rr } from "../StatusBar-BK_uYHAB.mjs";
41
41
  import { a as Pr, D as Or, O as Lr, b as Gr, f as Hr } from "../Dialog-BPTr3qHE.mjs";
42
42
  import { D as gt, a as pt } from "../SingleSegmentDonut-BgbLgwHi.mjs";
43
43
  import { S as Wr } from "../SingleSegmentDonut-BgbLgwHi.mjs";
44
- import { D as Yr } from "../Drawer-BEtCk82g.mjs";
45
- import { I as zr, P as Xr, S as jr } from "../Account-BrOTlmeK.mjs";
44
+ import { D as Yr } from "../Drawer-By9V-B5L.mjs";
45
+ import { I as zr, P as Xr, S as jr } from "../Account-CvR2-dSR.mjs";
46
46
  import { b as E } from "../Category-CevNQ03n.mjs";
47
47
  import { C as Vr, c as Zr, a as Jr, P as to } from "../Category-CevNQ03n.mjs";
48
48
  import { C as so, f as ro, b as oo, a as ao, g as no, i as io } from "../NumberFormatting-DjTD0t3W.mjs";
49
49
  import { R as mt } from "../RecurringTransactionsStore-BhBUVm9a.mjs";
50
50
  import { S as lo, T as uo } from "../RecurringTransactionsStore-BhBUVm9a.mjs";
51
51
  import { G as go, C as po, D as mo, W as _o, d as fo, a as yo, i as So, t as bo, m as wo, w as xo, x as Co, g as vo, z as Do, u as Ao, f as Eo, b as To, l as Bo, A as Io, s as No, y as Mo, c as $o, q as ko, n as Ro, B as Uo, j as Po, r as Oo, h as Lo, v as Go, o as Ho, p as Fo } from "../hooks-ZMp65DFz.mjs";
52
- import { u as qo } from "../useAccountDisplayName-Cjx8YmKK.mjs";
52
+ import { u as qo } from "../useAccountDisplayName-B7iXTNM8.mjs";
53
53
  import { u as Qo } from "../useInsightsEnabled-B7dxpDrX.mjs";
54
54
  import { u as Xo } from "../useScreenSize-B6JyS_Lj.mjs";
55
55
  import { u as Ko } from "../useWidgetLoadTimer-hIOioiKx.mjs";
56
56
  import { makeAutoObservable as f, runInAction as p, reaction as _t, autorun as ft } from "mobx";
57
- import { a as yt } from "../AccountStore-DqO84Aer.mjs";
57
+ import { a as yt } from "../AccountStore-LgfBcYMe.mjs";
58
58
  import St from "posthog-js";
59
59
  import { B as bt } from "../BeatStore-D_NYuBSz.mjs";
60
60
  import { endOfMonth as Z } from "date-fns/endOfMonth";
@@ -62,11 +62,11 @@ import { startOfMonth as J } from "date-fns/startOfMonth";
62
62
  import { startOfToday as O } from "date-fns/startOfToday";
63
63
  import { f as wt, a as xt, b as L } from "../BudgetUtil-BmZXkL0C.mjs";
64
64
  import { g as Zo, e as Jo, c as ta, d as ea, i as sa } from "../BudgetUtil-BmZXkL0C.mjs";
65
- import { a as Ct } from "../DebtsStore-DVPZbv2C.mjs";
65
+ import { a as Ct } from "../DebtsStore-Bq-aPy-5.mjs";
66
66
  import { F as vt } from "../FinstrongStore-BIrX0Xg2.mjs";
67
67
  import { A as Dt, m as At, a as Et, b as Tt } from "../InvestmentUtil-jOyOgzIB.mjs";
68
68
  import { M as Bt } from "../MerchantStore-WvZ4gnQe.mjs";
69
- import { N as It } from "../NetWorthStore-DG2X69jG.mjs";
69
+ import { N as It } from "../NetWorthStore-rC0q7P7t.mjs";
70
70
  import { a as Nt } from "../SettingsStore-krIRNwHK.mjs";
71
71
  import { addMonths as Mt } from "date-fns/addMonths";
72
72
  import { getMonth as T } from "date-fns/getMonth";