@mx-cartographer/experiences 6.24.11-alpha.al0 → 6.24.11-alpha.al2
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 +4 -0
- package/dist/common/components/charts/LineChart.d.ts +0 -1
- package/dist/common/types/localization/TrendsCopy.d.ts +13 -0
- package/dist/index.es.js +3476 -3543
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
- package/dist/common/components/charts/linechart/CustomArea.d.ts +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,7 @@
|
|
|
1
|
+
## [6.24.11] - 08-12-2025
|
|
2
|
+
|
|
3
|
+
- **FIXED** - Unwanted white space issue in the Budgets widget by updating usage of `detailedBudgets` for consistent filtering
|
|
4
|
+
|
|
1
5
|
## [6.24.10] - 08-11-2025
|
|
2
6
|
|
|
3
7
|
- **ADDED** - Score Rubric Drawer component displaying detailed financial strength scoring information
|
|
@@ -1,15 +1,28 @@
|
|
|
1
1
|
export interface TrendsCopy {
|
|
2
2
|
all_categories: string;
|
|
3
|
+
categories: string;
|
|
4
|
+
category_income: string;
|
|
5
|
+
category_spending: string;
|
|
6
|
+
close_category_details: string;
|
|
7
|
+
empty_state_primary: string;
|
|
8
|
+
empty_state_sub_text: string;
|
|
9
|
+
export_csv_btn: string;
|
|
3
10
|
income_label: string;
|
|
4
11
|
micro_primary_cta_label: string;
|
|
5
12
|
micro_subheader: string;
|
|
6
13
|
micro_secondary_label: string;
|
|
7
14
|
mini_title: string;
|
|
15
|
+
monthly_income: string;
|
|
16
|
+
monthly_spending: string;
|
|
8
17
|
payments_label: string;
|
|
9
18
|
primary_cta: string;
|
|
10
19
|
spending_label: string;
|
|
11
20
|
sub_title: string;
|
|
12
21
|
title: string;
|
|
22
|
+
transaction: string;
|
|
23
|
+
transactions: string;
|
|
24
|
+
view_more: string;
|
|
25
|
+
view_transactions: string;
|
|
13
26
|
zero_state_content_description: string;
|
|
14
27
|
zero_state_content_header: string;
|
|
15
28
|
}
|