@mx-cartographer/experiences 6.26.20 → 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,7 @@
1
+ ## [6.26.21] - 09-09-2025
2
+
3
+ - **UPDATED** - new trends widget to filter out transfer category
4
+
1
5
  ## [6.26.20] - 09-09-2025
2
6
 
3
7
  - **FIXED** - `NetWorth` Assets & Liabilities - account names preventing amounts from showing
package/dist/index.es.js CHANGED
@@ -24823,7 +24823,7 @@ class ab {
24823
24823
  this.visibleListLength = n;
24824
24824
  };
24825
24825
  get sortedDetailedCategoriesWithTransactions() {
24826
- 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));
24827
24827
  }
24828
24828
  get selectedDateRangeMonthCount() {
24829
24829
  return po(this.selectedDateRange.end, this.selectedDateRange.start) + 1;