@mx-cartographer/experiences 6.26.27 → 6.26.29
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/index.es.js +23 -7
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
## [6.26.29] - 09-11-2025
|
2
|
+
|
3
|
+
- **FIXED** - credit limit was shown in place of available credit in the accounts list and details
|
4
|
+
|
5
|
+
## [6.26.28] - 09-11-2025
|
6
|
+
|
7
|
+
- **FIXED** - `NetWorth` Gains & Losses - account names preventing amounts from showing
|
8
|
+
|
1
9
|
## [6.26.27] - 09-10-2025
|
2
10
|
|
3
11
|
- **UPDATED** - Remove categories filtering in `TrendsInsights`
|
package/dist/index.es.js
CHANGED
@@ -9906,7 +9906,7 @@ const Tm = {
|
|
9906
9906
|
H(e.minimum_payment, "0,0.00"),
|
9907
9907
|
de(c, ie.FULL_MONTH_DAY)
|
9908
9908
|
) });
|
9909
|
-
} else e.credit_limit && (o = n.available_credit, r = H(e.credit_limit, "0,0.00"));
|
9909
|
+
} else e.credit_limit && (o = n.available_credit, r = H(e.credit_limit - (e?.balance ?? 0), "0,0.00"));
|
9910
9910
|
}
|
9911
9911
|
return {
|
9912
9912
|
firstSubtitle: i,
|
@@ -16579,13 +16579,13 @@ const Gf = ({ amount: e, copy: n, trendValue: i }) => {
|
|
16579
16579
|
/* @__PURE__ */ t(j, { sx: { backgroundColor: s.palette.background.paper, py: 14 }, children: /* @__PURE__ */ t(
|
16580
16580
|
oe,
|
16581
16581
|
{
|
16582
|
-
primary: /* @__PURE__ */ d(b, { direction: "row", justifyContent: "space-between",
|
16583
|
-
/* @__PURE__ */ t(C, { variant: "Body", children: c.accountName }),
|
16582
|
+
primary: /* @__PURE__ */ d(b, { direction: "row", justifyContent: "space-between", children: [
|
16583
|
+
/* @__PURE__ */ t(C, { sx: { mr: 10 }, variant: "Body", children: c.accountName }),
|
16584
16584
|
/* @__PURE__ */ t(
|
16585
16585
|
je,
|
16586
16586
|
{
|
16587
16587
|
amount: c.gain,
|
16588
|
-
sx: { color: s.palette.success.main, fontWeight: 700 },
|
16588
|
+
sx: { color: s.palette.success.main, flexShrink: 0, fontWeight: 700 },
|
16589
16589
|
variant: "Body"
|
16590
16590
|
}
|
16591
16591
|
)
|
@@ -16612,9 +16612,25 @@ const Gf = ({ amount: e, copy: n, trendValue: i }) => {
|
|
16612
16612
|
children: /* @__PURE__ */ t(
|
16613
16613
|
oe,
|
16614
16614
|
{
|
16615
|
-
primary: /* @__PURE__ */ d(b, { direction: "row", justifyContent: "space-between",
|
16616
|
-
/* @__PURE__ */ t(
|
16617
|
-
|
16615
|
+
primary: /* @__PURE__ */ d(b, { direction: "row", justifyContent: "space-between", children: [
|
16616
|
+
/* @__PURE__ */ t(
|
16617
|
+
C,
|
16618
|
+
{
|
16619
|
+
sx: {
|
16620
|
+
mr: 10
|
16621
|
+
},
|
16622
|
+
variant: "Body",
|
16623
|
+
children: c.accountName
|
16624
|
+
}
|
16625
|
+
),
|
16626
|
+
/* @__PURE__ */ t(
|
16627
|
+
je,
|
16628
|
+
{
|
16629
|
+
amount: c.loss,
|
16630
|
+
sx: { flexShrink: 0, fontWeight: 700 },
|
16631
|
+
variant: "Body"
|
16632
|
+
}
|
16633
|
+
)
|
16618
16634
|
] }),
|
16619
16635
|
sx: { px: 16 }
|
16620
16636
|
}
|