@mx-cartographer/experiences 6.25.3-alpha.al3 → 6.25.4
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 +7 -3
- package/dist/common/components/charts/LineChart.d.ts +2 -0
- package/dist/common/components/charts/linechart/CustomLegend.d.ts +4 -2
- package/dist/common/components/charts/linechart/CustomMark.d.ts +1 -0
- package/dist/common/types/Category.d.ts +7 -2
- package/dist/common/types/index.d.ts +1 -1
- package/dist/common/types/localization/FinstrongCopy.d.ts +20 -1
- package/dist/index.es.js +5729 -5714
- package/dist/index.es.js.map +1 -1
- package/dist/trends/components/CategoriesList.d.ts +3 -2
- package/dist/trends/components/CategoriesListItem.d.ts +2 -2
- package/dist/trends/components/CategoryDetailChart.d.ts +1 -4
- package/dist/trends/stores/TrendsStore.d.ts +12 -8
- package/dist/trends/utils/TrendsData.d.ts +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,10 @@
|
|
|
1
|
-
## [6.25.
|
|
1
|
+
## [6.25.4] - 08-22-2025
|
|
2
2
|
|
|
3
|
-
- **
|
|
3
|
+
- **ADDED** - Key Indicators section for `Finstrong`
|
|
4
|
+
|
|
5
|
+
## [6.25.3] - 08-22-2025
|
|
6
|
+
|
|
7
|
+
- **ADDED** - Copy content for the `Profile` drawer in the `Finstrong` widget
|
|
4
8
|
|
|
5
9
|
## [6.25.2] - 08-21-2025
|
|
6
10
|
|
|
@@ -10,7 +14,7 @@
|
|
|
10
14
|
|
|
11
15
|
- **ADDED** - `Profile` drawer with API for `Finstrong` widget
|
|
12
16
|
|
|
13
|
-
## [6.25.
|
|
17
|
+
## [6.25.00] - 08-20-2025
|
|
14
18
|
|
|
15
19
|
- **ADDED** - (new) TrendsWidget, TrendsStore, TrendsChartTotals, TrendsInsights
|
|
16
20
|
- **ADDED** - CategoryList, CategoryDetailDrawer, CategoryDetailChart
|
|
@@ -14,12 +14,14 @@ interface LineChartProps {
|
|
|
14
14
|
baseline?: string;
|
|
15
15
|
colors: (string | undefined)[];
|
|
16
16
|
curveType?: LineChartCurve;
|
|
17
|
+
customLegendVariant?: string;
|
|
17
18
|
datasets: LineChartDataset[];
|
|
18
19
|
height?: number;
|
|
19
20
|
isGraphClippingXAxis?: boolean;
|
|
20
21
|
labels: LineChartLabel[];
|
|
21
22
|
labelBackgroundColor?: string;
|
|
22
23
|
labelFontColor?: string;
|
|
24
|
+
labelFontSize?: number;
|
|
23
25
|
margin?: {
|
|
24
26
|
top?: number;
|
|
25
27
|
right?: number;
|
|
@@ -1,9 +1,11 @@
|
|
|
1
1
|
import { LineChartLabel } from '../LineChart';
|
|
2
|
-
export declare const CustomLegendLabel: ({ label }: {
|
|
2
|
+
export declare const CustomLegendLabel: ({ label, customLegendVariant, }: {
|
|
3
3
|
label: LineChartLabel;
|
|
4
|
+
customLegendVariant?: string;
|
|
4
5
|
}) => import("react/jsx-runtime").JSX.Element | null;
|
|
5
|
-
declare const _default: (({ average, labels, series, style, title, valueFormatterString, }: {
|
|
6
|
+
declare const _default: (({ average, customLegendVariant, labels, series, style, title, valueFormatterString, }: {
|
|
6
7
|
average?: number;
|
|
8
|
+
customLegendVariant?: string;
|
|
7
9
|
labels?: LineChartLabel[];
|
|
8
10
|
series: any[];
|
|
9
11
|
title?: string;
|
|
@@ -11,6 +11,7 @@ interface CustomMarkProps extends MarkElementProps {
|
|
|
11
11
|
yData: number[];
|
|
12
12
|
labelBackgroundColor?: string;
|
|
13
13
|
labelFontColor?: string;
|
|
14
|
+
labelFontSize?: number;
|
|
14
15
|
valueFormatterString?: string;
|
|
15
16
|
}
|
|
16
17
|
export declare const CustomMark: React.FC<CustomMarkProps>;
|
|
@@ -55,8 +55,13 @@ export interface DetailedCategory extends Category {
|
|
|
55
55
|
totalAverageAmount: number;
|
|
56
56
|
totalMonthlyAmounts: MonthlyAmount[];
|
|
57
57
|
}
|
|
58
|
-
export interface
|
|
59
|
-
|
|
58
|
+
export interface CategoryListItem {
|
|
59
|
+
guid: string;
|
|
60
|
+
name: string;
|
|
61
|
+
amount: number;
|
|
62
|
+
transactions?: Transaction[];
|
|
63
|
+
color?: string;
|
|
64
|
+
chartLabel?: string;
|
|
60
65
|
}
|
|
61
66
|
export interface CategoryTotal {
|
|
62
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,
|
|
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';
|
|
@@ -46,15 +46,27 @@ interface KeyIndicatorSpend {
|
|
|
46
46
|
title: string;
|
|
47
47
|
}
|
|
48
48
|
export interface FinstrongCopy {
|
|
49
|
+
account: string;
|
|
50
|
+
accounts: string;
|
|
51
|
+
add_profile_item: string;
|
|
49
52
|
building: string;
|
|
53
|
+
complete: string;
|
|
50
54
|
connect_more_accounts_button: string;
|
|
51
55
|
connect_more_accounts_description: string;
|
|
52
56
|
connect_more_accounts_title: string;
|
|
53
57
|
connect_more_accounts_to_view_more_accurate_financial_picture: string;
|
|
58
|
+
connect_your_accounts: string;
|
|
59
|
+
connected_account: string;
|
|
60
|
+
connections: string;
|
|
61
|
+
credit_score: string;
|
|
54
62
|
credit_score_status: CreditScoreStatusCopy;
|
|
63
|
+
date_of_birth: string;
|
|
55
64
|
dont_see_all_your_accounts: string;
|
|
56
|
-
|
|
65
|
+
edit_credit_score: string;
|
|
66
|
+
financial_profile: string;
|
|
67
|
+
financial_profile_description: string;
|
|
57
68
|
finstrong_freedom_description: string;
|
|
69
|
+
footer_center_content_updated_just_now: string;
|
|
58
70
|
how_do_we_do_this: string;
|
|
59
71
|
insufficient_data: string;
|
|
60
72
|
key_indicators: string;
|
|
@@ -62,22 +74,29 @@ export interface FinstrongCopy {
|
|
|
62
74
|
key_indicators_fair: string;
|
|
63
75
|
key_indicators_good: string;
|
|
64
76
|
key_indicators_missing: string;
|
|
77
|
+
key_indicators_label: string;
|
|
65
78
|
key_indicators_off_track: string;
|
|
66
79
|
key_indicators_save: KeyIndicatorSave;
|
|
67
80
|
key_indicators_spend: KeyIndicatorSpend;
|
|
68
81
|
missing_data_description: string;
|
|
69
82
|
missing_data_title: string;
|
|
83
|
+
monthly_income: string;
|
|
84
|
+
profile: string;
|
|
70
85
|
score_rubric: string;
|
|
86
|
+
peer_average: string;
|
|
71
87
|
see_whats_possible: string;
|
|
72
88
|
see_whats_possible_description: string;
|
|
73
89
|
stable: string;
|
|
74
90
|
strong: string;
|
|
91
|
+
title: string;
|
|
75
92
|
understand_your_habits: string;
|
|
76
93
|
understand_your_habits_description: string;
|
|
77
94
|
vulnerable: string;
|
|
78
95
|
we_ask_questions: string;
|
|
79
96
|
we_ask_questions_description_1: string;
|
|
80
97
|
we_ask_questions_description_2: string;
|
|
98
|
+
whats_changed: string;
|
|
99
|
+
your_financial_profile: string;
|
|
81
100
|
your_path_to_financial_freedom: string;
|
|
82
101
|
}
|
|
83
102
|
export {};
|