@mx-cartographer/experiences 6.25.2 → 6.25.3-alpha.al1

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.25.3] - 08-21-2025
2
+
3
+ - **CHANGED** - new Trends Widget to use Detailed Categories
4
+
1
5
  ## [6.25.2] - 08-21-2025
2
6
 
3
7
  - **FIXED** - Extra Scrollable Space in Recurring Transactions MicroWidget below 288px.
@@ -6,7 +10,7 @@
6
10
 
7
11
  - **ADDED** - `Profile` drawer with API for `Finstrong` widget
8
12
 
9
- ## [6.25.00] - 08-20-2025
13
+ ## [6.25.0] - 08-20-2025
10
14
 
11
15
  - **ADDED** - (new) TrendsWidget, TrendsStore, TrendsChartTotals, TrendsInsights
12
16
  - **ADDED** - CategoryList, CategoryDetailDrawer, CategoryDetailChart
@@ -55,13 +55,8 @@ export interface DetailedCategory extends Category {
55
55
  totalAverageAmount: number;
56
56
  totalMonthlyAmounts: MonthlyAmount[];
57
57
  }
58
- export interface CategoryListItem {
59
- guid: string;
60
- name: string;
61
- amount: number;
62
- transactions?: Transaction[];
63
- color?: string;
64
- chartLabel?: string;
58
+ export interface DetailedCategoryWithTransactions extends DetailedCategory {
59
+ transactions: Transaction[];
65
60
  }
66
61
  export interface CategoryTotal {
67
62
  amount: number;
@@ -6,7 +6,7 @@ export type { Beat, DataSeries } from './Beat';
6
6
  export { UserVerification } from './Beat';
7
7
  export type { Budget, BudgetColors, DetailedBudget } from './Budget';
8
8
  export type { CashflowEvent, CashflowSequence, RepeatDay, RepeatInterval, RepeatMonth, RepeatWeekday, } from './Cashflow';
9
- export type { Category, CategoryListItem, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, MonthlyAmount, MonthlyCategoryTotals, } from './Category';
9
+ export type { Category, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, DetailedCategoryWithTransactions, MonthlyAmount, MonthlyCategoryTotals, } from './Category';
10
10
  export type { Client, ClientColorScheme, ClientCommunicationProfile, ClientInsightProfile, ClientProfile, ClientStyleProfile, } from './Client';
11
11
  export type { DateType, DateRange } from './Date';
12
12
  export type { Expense } from './Expense';