@mx-cartographer/experiences 6.26.0 → 6.26.1
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 -5
- package/dist/categories/util/CategoryUtil.d.ts +2 -3
- package/dist/common/types/Category.d.ts +8 -2
- package/dist/common/types/index.d.ts +1 -1
- package/dist/index.es.js +3059 -3070
- package/dist/index.es.js.map +1 -1
- package/dist/trends/components/CategoriesList.d.ts +5 -5
- package/dist/trends/components/CategoriesListItem.d.ts +4 -7
- package/dist/trends/components/CategoryDetailChart.d.ts +1 -5
- package/dist/trends/stores/TrendsStore.d.ts +16 -11
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,14 @@
|
|
|
1
|
+
## [6.26.1] - 08-27-2025
|
|
2
|
+
|
|
3
|
+
- **REVERTED** - 6.25.6 & 6.25.11 releases due to production issues
|
|
4
|
+
|
|
1
5
|
## [6.26.0] - 08-27-2025
|
|
2
6
|
|
|
3
7
|
- **CHANGED** - `GlobalStore` now accepts props for data
|
|
4
8
|
|
|
5
|
-
|
|
9
|
+
~~## [6.25.11] - 08-26-2025~~
|
|
6
10
|
|
|
7
|
-
|
|
11
|
+
~~- **ADDED** - New Trends Widget | Add tooltip to category details chart~~
|
|
8
12
|
|
|
9
13
|
## [6.25.10] - 08-26-2025
|
|
10
14
|
|
|
@@ -24,9 +28,9 @@
|
|
|
24
28
|
|
|
25
29
|
- **UPDATED** - StackedLineChart to have responsive height based on widget and legend dimensions
|
|
26
30
|
|
|
27
|
-
|
|
31
|
+
~~## [6.25.6] - 08-25-2025~~
|
|
28
32
|
|
|
29
|
-
|
|
33
|
+
~~- **CHANGED** - new Trends Widget to use Detailed Categories~~
|
|
30
34
|
|
|
31
35
|
## [6.25.5] - 08-25-2025
|
|
32
36
|
|
|
@@ -48,7 +52,7 @@
|
|
|
48
52
|
|
|
49
53
|
- **ADDED** - `Profile` drawer with API for `Finstrong` widget
|
|
50
54
|
|
|
51
|
-
## [6.25.
|
|
55
|
+
## [6.25.00] - 08-20-2025
|
|
52
56
|
|
|
53
57
|
- **ADDED** - (new) TrendsWidget, TrendsStore, TrendsChartTotals, TrendsInsights
|
|
54
58
|
- **ADDED** - CategoryList, CategoryDetailDrawer, CategoryDetailChart
|
|
@@ -1,12 +1,11 @@
|
|
|
1
1
|
import { Theme } from '@mui/material';
|
|
2
|
-
import { Category, DateRangeCategoryTotals, DetailedCategory, MonthlyCategoryTotals
|
|
2
|
+
import { Category, DateRangeCategoryTotals, DetailedCategory, MonthlyCategoryTotals } from '../../common';
|
|
3
3
|
/**
|
|
4
4
|
* Augment categories
|
|
5
5
|
* @param categories - Categories to augment
|
|
6
6
|
* @param monthlyCategoryTotals - Monthly category totals
|
|
7
7
|
* @param currentCategoryTotals - Current month category totals
|
|
8
|
-
* @param transactions - Transactions to be filtered by category
|
|
9
8
|
*/
|
|
10
|
-
export declare const augmentCategories: (categories: Category[], currentCategoryTotals: DateRangeCategoryTotals[], monthlyCategoryTotals: MonthlyCategoryTotals[]
|
|
9
|
+
export declare const augmentCategories: (categories: Category[], currentCategoryTotals: DateRangeCategoryTotals[], monthlyCategoryTotals: MonthlyCategoryTotals[]) => DetailedCategory[];
|
|
11
10
|
export declare const getCategoryColor: (guid: string, theme: Theme) => string;
|
|
12
11
|
export declare const getCategoryIcon: (guid: string) => string | undefined;
|
|
@@ -42,7 +42,6 @@ export interface MonthlyAmount {
|
|
|
42
42
|
* @totalAmount - The total amount (including subcategories) for the current month
|
|
43
43
|
* @totalAverageAmount - The total average amount (including subcategories) for this category
|
|
44
44
|
* @totalMonthlyAmounts - The past 12 total monthly amounts (including subcategories)
|
|
45
|
-
* @transactions - The transactions for this category
|
|
46
45
|
*/
|
|
47
46
|
export interface DetailedCategory extends Category {
|
|
48
47
|
averageAmount: number;
|
|
@@ -55,7 +54,14 @@ export interface DetailedCategory extends Category {
|
|
|
55
54
|
totalAmount: number;
|
|
56
55
|
totalAverageAmount: number;
|
|
57
56
|
totalMonthlyAmounts: MonthlyAmount[];
|
|
58
|
-
|
|
57
|
+
}
|
|
58
|
+
export interface CategoryListItem {
|
|
59
|
+
guid: string;
|
|
60
|
+
name: string;
|
|
61
|
+
amount: number;
|
|
62
|
+
transactions?: Transaction[];
|
|
63
|
+
color?: string;
|
|
64
|
+
chartLabel?: string;
|
|
59
65
|
}
|
|
60
66
|
export interface CategoryTotal {
|
|
61
67
|
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, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, MonthlyAmount, MonthlyCategoryTotals, } from './Category';
|
|
9
|
+
export type { Category, CategoryListItem, CategoryTotal, DateRangeCategoryTotals, DetailedCategory, 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';
|