@mx-cartographer/experiences 7.0.59-alpha.al1 → 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 +5 -1
- package/dist/{EmptyState-w2yYDuKG.mjs → EmptyState-DsXpMcro.mjs} +26 -24
- package/dist/budgets/index.es.js +1 -1
- package/dist/cashflow/index.es.js +143 -142
- package/dist/common/components/EmptyState.d.ts +1 -0
- package/dist/common/index.es.js +1 -1
- package/dist/goals/index.es.js +1 -1
- 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/index.es.js +107 -107
- package/dist/trends/index.es.js +351 -350
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,7 +1,11 @@
|
|
|
1
|
-
## [7.0.
|
|
1
|
+
## [7.0.59] - 10-27-2025
|
|
2
2
|
|
|
3
3
|
- **UPDATED** - Cash Flow mini widget zero state
|
|
4
4
|
|
|
5
|
+
## [7.0.58] - 10-24-2025
|
|
6
|
+
|
|
7
|
+
- **FIXED** - Trends Insights Micro Widget navigation overlapped in stand-alone widget
|
|
8
|
+
|
|
5
9
|
## [7.0.57] - 10-22-2025
|
|
6
10
|
|
|
7
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
|
};
|
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";
|