@mx-cartographer/experiences 6.25.1 → 6.25.3-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 +9 -1
- package/dist/common/types/Category.d.ts +2 -7
- package/dist/common/types/index.d.ts +1 -1
- package/dist/index.es.js +1570 -1554
- package/dist/index.es.js.map +1 -1
- package/dist/trends/components/CategoriesList.d.ts +2 -3
- package/dist/trends/components/CategoriesListItem.d.ts +2 -2
- package/dist/trends/components/CategoryDetailChart.d.ts +4 -1
- package/dist/trends/stores/TrendsStore.d.ts +8 -12
- package/dist/trends/utils/TrendsData.d.ts +2 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,8 +1,16 @@
|
|
|
1
|
+
## [6.25.3] - 08-21-2025
|
|
2
|
+
|
|
3
|
+
- **CHANGED** - new Trends Widget to use Detailed Categories
|
|
4
|
+
|
|
5
|
+
## [6.25.2] - 08-21-2025
|
|
6
|
+
|
|
7
|
+
- **FIXED** - Extra Scrollable Space in Recurring Transactions MicroWidget below 288px.
|
|
8
|
+
|
|
1
9
|
## [6.25.1] - 08-21-2025
|
|
2
10
|
|
|
3
11
|
- **ADDED** - `Profile` drawer with API for `Finstrong` widget
|
|
4
12
|
|
|
5
|
-
## [6.25.
|
|
13
|
+
## [6.25.0] - 08-20-2025
|
|
6
14
|
|
|
7
15
|
- **ADDED** - (new) TrendsWidget, TrendsStore, TrendsChartTotals, TrendsInsights
|
|
8
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
|
|
59
|
-
|
|
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,
|
|
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';
|