@mx-cartographer/experiences 6.26.19 → 6.26.21-alpha.al0

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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## [6.26.21] - 09-09-2025
2
+
3
+ - **UPDATED** - new trends widget to filter out transfer category
4
+
5
+ ## [6.26.20] - 09-09-2025
6
+
7
+ - **FIXED** - `NetWorth` Assets & Liabilities - account names preventing amounts from showing
8
+
1
9
  ## [6.26.19] - 09-09-2025
2
10
 
3
11
  - **FIXED** - CTA button cutoff on layout
package/dist/index.es.js CHANGED
@@ -16382,8 +16382,26 @@ const Gf = ({ amount: e, copy: n, trendValue: i }) => {
16382
16382
  se,
16383
16383
  {
16384
16384
  primary: /* @__PURE__ */ d(b, { direction: "row", justifyContent: "space-between", sx: { fontWeight: 400 }, children: [
16385
- /* @__PURE__ */ t(C, { variant: "Body", children: r.accountName }),
16386
- /* @__PURE__ */ t(Xe, { amount: r.balance, variant: "Small" })
16385
+ /* @__PURE__ */ t(
16386
+ C,
16387
+ {
16388
+ sx: {
16389
+ marginRight: 10
16390
+ },
16391
+ variant: "Body",
16392
+ children: r.accountName
16393
+ }
16394
+ ),
16395
+ /* @__PURE__ */ t(
16396
+ Xe,
16397
+ {
16398
+ amount: r.balance,
16399
+ sx: {
16400
+ flexShrink: 0
16401
+ },
16402
+ variant: "Small"
16403
+ }
16404
+ )
16387
16405
  ] }),
16388
16406
  sx: { pl: 72, pr: 16 }
16389
16407
  }
@@ -24805,7 +24823,7 @@ class ab {
24805
24823
  this.visibleListLength = n;
24806
24824
  };
24807
24825
  get sortedDetailedCategoriesWithTransactions() {
24808
- return this.globalStore.categoryStore.detailedCategoriesWithTransactions.slice().filter((n) => n.totalAmount !== 0).sort((n, i) => Math.abs(i.totalAmount) - Math.abs(n.totalAmount));
24826
+ return this.globalStore.categoryStore.detailedCategoriesWithTransactions.slice().filter((n) => n.totalAmount !== 0).filter((n) => n.isTransfer === !1).sort((n, i) => Math.abs(i.totalAmount) - Math.abs(n.totalAmount));
24809
24827
  }
24810
24828
  get selectedDateRangeMonthCount() {
24811
24829
  return po(this.selectedDateRange.end, this.selectedDateRange.start) + 1;