@mx-cartographer/experiences 7.0.59-alpha.al0 → 7.0.59
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 +8 -0
- package/dist/{EmptyState-w2yYDuKG.mjs → EmptyState-DsXpMcro.mjs} +26 -24
- package/dist/{RecurringSettings-qv7DNYac.mjs → RecurringSettings-B486z99o.mjs} +29 -29
- package/dist/budgets/index.es.js +1 -1
- package/dist/cashflow/components/CashflowWidgetContent.d.ts +3 -5
- package/dist/cashflow/index.es.js +410 -424
- package/dist/common/components/EmptyState.d.ts +1 -0
- package/dist/common/index.es.js +1 -1
- package/dist/finstrong/index.es.js +1 -1
- package/dist/goals/index.es.js +4 -4
- package/dist/help/HelpWidget.d.ts +1 -1
- package/dist/help/index.es.js +10 -10
- package/dist/investments/index.es.js +1 -1
- package/dist/networth/index.es.js +1 -1
- package/dist/recurringtransactions/components/RecurringSettingsDrawer.d.ts +2 -1
- package/dist/recurringtransactions/components/shared/RecurringSettings.d.ts +5 -1
- package/dist/recurringtransactions/index.es.js +50 -50
- package/dist/trends/index.es.js +351 -350
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [7.0.59] - 10-27-2025
|
|
2
|
+
|
|
3
|
+
- **UPDATED** - Cash Flow mini widget zero state
|
|
4
|
+
|
|
5
|
+
## [7.0.58] - 10-24-2025
|
|
6
|
+
|
|
7
|
+
- **FIXED** - Trends Insights Micro Widget navigation overlapped in stand-alone widget
|
|
8
|
+
|
|
1
9
|
## [7.0.57] - 10-22-2025
|
|
2
10
|
|
|
3
11
|
- **FIXED** - Layout cutoff issue on Create Budgets for mobile devices
|
|
@@ -1,41 +1,42 @@
|
|
|
1
|
-
import { jsxs as
|
|
2
|
-
import
|
|
3
|
-
import
|
|
4
|
-
import { Icon as
|
|
5
|
-
import { H2 as
|
|
6
|
-
const
|
|
7
|
-
icon:
|
|
8
|
-
iconColor:
|
|
9
|
-
header:
|
|
1
|
+
import { jsxs as o, jsx as t } from "react/jsx-runtime";
|
|
2
|
+
import i from "@mui/material/Button";
|
|
3
|
+
import c from "@mui/material/Stack";
|
|
4
|
+
import { Icon as x } from "@mxenabled/mx-icons";
|
|
5
|
+
import { H2 as f, Text as g } from "@mxenabled/mxui";
|
|
6
|
+
const k = ({
|
|
7
|
+
icon: s,
|
|
8
|
+
iconColor: l,
|
|
9
|
+
header: p,
|
|
10
10
|
onClick: a,
|
|
11
11
|
primaryButton: r,
|
|
12
|
+
primaryButtonStartIcon: n,
|
|
12
13
|
secondaryButton: e,
|
|
13
|
-
subText:
|
|
14
|
-
sx:
|
|
15
|
-
variant:
|
|
16
|
-
}) => /* @__PURE__ */
|
|
17
|
-
|
|
14
|
+
subText: m,
|
|
15
|
+
sx: d,
|
|
16
|
+
variant: h = "buttons"
|
|
17
|
+
}) => /* @__PURE__ */ o(
|
|
18
|
+
c,
|
|
18
19
|
{
|
|
19
20
|
sx: {
|
|
20
21
|
mt: 54,
|
|
21
22
|
alignItems: "center",
|
|
22
23
|
alignSelf: "center",
|
|
23
|
-
...
|
|
24
|
+
...d
|
|
24
25
|
},
|
|
25
26
|
children: [
|
|
26
|
-
/* @__PURE__ */ t(
|
|
27
|
-
/* @__PURE__ */ t(
|
|
27
|
+
/* @__PURE__ */ t(x, { name: s, size: 54, sx: { color: l } }),
|
|
28
|
+
/* @__PURE__ */ t(f, { color: "text.primary", sx: { textWrap: "wrap", textAlign: "center" }, children: p }),
|
|
28
29
|
/* @__PURE__ */ t(
|
|
29
|
-
|
|
30
|
+
g,
|
|
30
31
|
{
|
|
31
32
|
color: "text.secondary",
|
|
32
33
|
sx: { textAlign: "center", textWrap: "wrap", width: "calc(100% - 8px)" },
|
|
33
34
|
variant: "Paragraph",
|
|
34
|
-
children:
|
|
35
|
+
children: m
|
|
35
36
|
}
|
|
36
37
|
),
|
|
37
|
-
|
|
38
|
-
|
|
38
|
+
h === "buttons" && (r || e) && /* @__PURE__ */ o(
|
|
39
|
+
c,
|
|
39
40
|
{
|
|
40
41
|
className: "buttons-footer",
|
|
41
42
|
sx: {
|
|
@@ -44,16 +45,17 @@ const S = ({
|
|
|
44
45
|
},
|
|
45
46
|
children: [
|
|
46
47
|
r && /* @__PURE__ */ t(
|
|
47
|
-
|
|
48
|
+
i,
|
|
48
49
|
{
|
|
49
50
|
onClick: () => a?.("primary"),
|
|
51
|
+
startIcon: n ? /* @__PURE__ */ t(x, { name: n }) : void 0,
|
|
50
52
|
sx: { textWrap: "nowrap" },
|
|
51
53
|
variant: "contained",
|
|
52
54
|
children: r
|
|
53
55
|
}
|
|
54
56
|
),
|
|
55
57
|
e && /* @__PURE__ */ t(
|
|
56
|
-
|
|
58
|
+
i,
|
|
57
59
|
{
|
|
58
60
|
onClick: () => a?.("secondary"),
|
|
59
61
|
sx: { textWrap: "nowrap" },
|
|
@@ -68,5 +70,5 @@ const S = ({
|
|
|
68
70
|
}
|
|
69
71
|
);
|
|
70
72
|
export {
|
|
71
|
-
|
|
73
|
+
k as E
|
|
72
74
|
};
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
import { jsx as e, Fragment as x, jsxs as t } from "react/jsx-runtime";
|
|
2
|
-
import
|
|
3
|
-
import { observer as
|
|
4
|
-
import
|
|
5
|
-
import
|
|
2
|
+
import u from "react";
|
|
3
|
+
import { observer as h } from "mobx-react-lite";
|
|
4
|
+
import c from "@mui/material/Box";
|
|
5
|
+
import p from "@mui/material/Tab";
|
|
6
6
|
import b from "@mui/material/Tabs";
|
|
7
|
-
import
|
|
7
|
+
import d from "@mui/material/Divider";
|
|
8
8
|
import R from "@mui/material/List";
|
|
9
9
|
import T from "@mui/material/Stack";
|
|
10
10
|
import { R as C, A as S, a as E, M as v } from "./ManageIncome-BX7dzGF8.mjs";
|
|
11
|
-
import { u as
|
|
11
|
+
import { u as _, j as A, g as f } from "./hooks-CE2TKk4a.mjs";
|
|
12
12
|
import { R as y, F as N } from "./RecurringTransactions-DTUx9VN1.mjs";
|
|
13
|
-
import { A as
|
|
14
|
-
const I =
|
|
15
|
-
const { recurring:
|
|
16
|
-
o(
|
|
13
|
+
import { A as m } from "./WidgetContainer-B8MRJ5Y1.mjs";
|
|
14
|
+
const I = h(() => {
|
|
15
|
+
const { recurring: g } = _(), { repeatingTransactions: n } = A(), { onEvent: o } = f(), l = (r) => {
|
|
16
|
+
o(m.RECURRING_TRANSACTIONS_CLICK_EXPENSE, {
|
|
17
17
|
repeating_transaction_guid: r.guid
|
|
18
18
|
});
|
|
19
|
-
},
|
|
20
|
-
o(
|
|
21
|
-
}, i =
|
|
19
|
+
}, a = () => {
|
|
20
|
+
o(m.RECURRING_TRANSACTIONS_CLICK_ADD_EXPENSE);
|
|
21
|
+
}, i = n.filter(
|
|
22
22
|
(r) => r.repeating_transaction_type !== y.Income && (r.transactions.length > 0 || r.recurrence_type === N.EveryYear)
|
|
23
23
|
);
|
|
24
24
|
return /* @__PURE__ */ e(x, { children: i.length !== 0 ? /* @__PURE__ */ t(
|
|
@@ -29,19 +29,19 @@ const I = u(() => {
|
|
|
29
29
|
maxHeight: "calc(100vh - 109px)"
|
|
30
30
|
},
|
|
31
31
|
children: [
|
|
32
|
-
/* @__PURE__ */ e(
|
|
33
|
-
/* @__PURE__ */ e(C, { onClick:
|
|
32
|
+
/* @__PURE__ */ e(c, { sx: { flex: 1, overflow: "auto" }, children: /* @__PURE__ */ e(R, { sx: { bgcolor: "background.paper" }, children: i.map((r, s) => /* @__PURE__ */ t(u.Fragment, { children: [
|
|
33
|
+
/* @__PURE__ */ e(C, { onClick: l, repeatingTransaction: r }),
|
|
34
34
|
/* @__PURE__ */ e(
|
|
35
|
-
|
|
35
|
+
d,
|
|
36
36
|
{
|
|
37
|
-
variant:
|
|
37
|
+
variant: s < i.length - 1 ? "inset" : "fullWidth"
|
|
38
38
|
}
|
|
39
39
|
)
|
|
40
40
|
] }, r.guid)) }) }),
|
|
41
|
-
/* @__PURE__ */ t(
|
|
42
|
-
/* @__PURE__ */ e(
|
|
41
|
+
/* @__PURE__ */ t(c, { children: [
|
|
42
|
+
/* @__PURE__ */ e(d, {}),
|
|
43
43
|
/* @__PURE__ */ e(
|
|
44
|
-
|
|
44
|
+
c,
|
|
45
45
|
{
|
|
46
46
|
sx: {
|
|
47
47
|
alignContent: "center",
|
|
@@ -51,30 +51,30 @@ const I = u(() => {
|
|
|
51
51
|
py: 12,
|
|
52
52
|
textAlign: "right"
|
|
53
53
|
},
|
|
54
|
-
children: /* @__PURE__ */ e(S, { label:
|
|
54
|
+
children: /* @__PURE__ */ e(S, { label: g.add_expense, onAddRecurringTransaction: a })
|
|
55
55
|
}
|
|
56
56
|
)
|
|
57
57
|
] })
|
|
58
58
|
]
|
|
59
59
|
}
|
|
60
60
|
) : /* @__PURE__ */ e(E, { zeroStateFor: "expenses" }) });
|
|
61
|
-
}), X =
|
|
62
|
-
const [n,
|
|
63
|
-
return /* @__PURE__ */ t(
|
|
61
|
+
}), X = h(({ defaultSelectedTab: g = 0 }) => {
|
|
62
|
+
const [n, o] = u.useState(g), { onEvent: l } = f(), { recurring: a } = _();
|
|
63
|
+
return /* @__PURE__ */ t(c, { bgcolor: "background.default", height: "100%", children: [
|
|
64
64
|
/* @__PURE__ */ t(
|
|
65
65
|
b,
|
|
66
66
|
{
|
|
67
|
-
onChange: (
|
|
68
|
-
|
|
69
|
-
|
|
67
|
+
onChange: (r, s) => {
|
|
68
|
+
o(s), l(
|
|
69
|
+
s === 0 ? "recurring_transactions_widget_manage_expenses" : "recurring_transactions_widget_edit_income"
|
|
70
70
|
);
|
|
71
71
|
},
|
|
72
72
|
sx: { bgcolor: "background.paper", mb: 0 },
|
|
73
73
|
value: n,
|
|
74
74
|
variant: "fullWidth",
|
|
75
75
|
children: [
|
|
76
|
-
/* @__PURE__ */ e(
|
|
77
|
-
/* @__PURE__ */ e(
|
|
76
|
+
/* @__PURE__ */ e(p, { label: a.expenses }),
|
|
77
|
+
/* @__PURE__ */ e(p, { label: a.income })
|
|
78
78
|
]
|
|
79
79
|
}
|
|
80
80
|
),
|
package/dist/budgets/index.es.js
CHANGED
|
@@ -26,7 +26,7 @@ import * as O from "d3";
|
|
|
26
26
|
import Xe from "@mui/material/Tooltip";
|
|
27
27
|
import { u as se } from "../useScreenSize-B6JyS_Lj.mjs";
|
|
28
28
|
import { L as G } from "../Loader-DUaFpDGv.mjs";
|
|
29
|
-
import { E as de } from "../EmptyState-
|
|
29
|
+
import { E as de } from "../EmptyState-DsXpMcro.mjs";
|
|
30
30
|
import { A as L, W as Ke } from "../WidgetContainer-B8MRJ5Y1.mjs";
|
|
31
31
|
import { u as Ve } from "../BudgetUtil-2EncZLBQ.mjs";
|
|
32
32
|
import { M as Ye } from "../MiniWidgetContainer-DTQdRK-3.mjs";
|
|
@@ -1,6 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
}
|
|
5
|
-
declare const _default: React.FunctionComponent<CashflowWidgetContentProps>;
|
|
1
|
+
declare const _default: (() => import("react/jsx-runtime").JSX.Element) & {
|
|
2
|
+
displayName: string;
|
|
3
|
+
};
|
|
6
4
|
export default _default;
|