@mx-cartographer/experiences 6.26.4 → 6.26.6
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 +8 -0
- package/dist/common/types/localization/FinstrongCopy.d.ts +5 -0
- package/dist/finstrong/components/KeyIndicatorsDrawer.d.ts +2 -0
- package/dist/finstrong/components/ScoreHistoryDrawer.d.ts +8 -0
- package/dist/finstrong/util/finstrongUtils.d.ts +8 -1
- package/dist/index.es.js +2094 -2054
- package/dist/index.es.js.map +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [6.26.6] - 09-03-2025
|
|
2
|
+
|
|
3
|
+
- **ADDED** - `FinStrong Widget` | Score History Drawer | Score Graph & Key Indicators Graph added
|
|
4
|
+
|
|
5
|
+
## [6.26.5] - 09-03-2025
|
|
6
|
+
|
|
7
|
+
- **ADDED** - `Finstrong` Graph Empty State
|
|
8
|
+
|
|
1
9
|
## [6.26.4] - 09-01-2025
|
|
2
10
|
|
|
3
11
|
- **UPDATED** - Replaced zero state mini goals images with new design
|
|
@@ -50,6 +50,7 @@ export interface FinstrongCopy {
|
|
|
50
50
|
accounts: string;
|
|
51
51
|
add_profile_item: string;
|
|
52
52
|
building: string;
|
|
53
|
+
building_description: string;
|
|
53
54
|
complete: string;
|
|
54
55
|
connect_more_accounts_button: string;
|
|
55
56
|
connect_more_accounts_description: string;
|
|
@@ -82,16 +83,20 @@ export interface FinstrongCopy {
|
|
|
82
83
|
missing_data_title: string;
|
|
83
84
|
monthly_income: string;
|
|
84
85
|
profile: string;
|
|
86
|
+
score_history: string;
|
|
85
87
|
score_rubric: string;
|
|
86
88
|
peer_average: string;
|
|
87
89
|
see_whats_possible: string;
|
|
88
90
|
see_whats_possible_description: string;
|
|
89
91
|
stable: string;
|
|
92
|
+
stable_description: string;
|
|
90
93
|
strong: string;
|
|
94
|
+
strong_description: string;
|
|
91
95
|
title: string;
|
|
92
96
|
understand_your_habits: string;
|
|
93
97
|
understand_your_habits_description: string;
|
|
94
98
|
vulnerable: string;
|
|
99
|
+
vulnerable_description: string;
|
|
95
100
|
we_ask_questions: string;
|
|
96
101
|
we_ask_questions_description_1: string;
|
|
97
102
|
we_ask_questions_description_2: string;
|
|
@@ -3,7 +3,9 @@ interface KeyIndicatorsDrawerProps {
|
|
|
3
3
|
additionalContent?: React.ReactNode;
|
|
4
4
|
children?: React.ReactNode;
|
|
5
5
|
description?: string;
|
|
6
|
+
drawerTitle?: string;
|
|
6
7
|
isOpen: boolean;
|
|
8
|
+
loadConnectAccountsCard?: boolean;
|
|
7
9
|
onClose: () => void;
|
|
8
10
|
stickyComponent?: React.ReactNode;
|
|
9
11
|
title?: string;
|
|
@@ -2,7 +2,14 @@ import { PieValueType } from '@mui/x-charts';
|
|
|
2
2
|
import { CreditScoreStatusCopy, FinstrongCopy } from '../../common/types/localization/FinstrongCopy';
|
|
3
3
|
import { Action } from '../components/ProfileList';
|
|
4
4
|
export declare const radiansToDegrees: (radians: number) => number;
|
|
5
|
-
export declare const calculateFinstrongScoreStatus: (healthScore: number, copy: FinstrongCopy) =>
|
|
5
|
+
export declare const calculateFinstrongScoreStatus: (healthScore: number, copy: FinstrongCopy) => {
|
|
6
|
+
max: number;
|
|
7
|
+
status: string;
|
|
8
|
+
description: string;
|
|
9
|
+
} | {
|
|
10
|
+
status: string;
|
|
11
|
+
description: string;
|
|
12
|
+
};
|
|
6
13
|
export declare const CreditScoreLightColors: {
|
|
7
14
|
POOR: string;
|
|
8
15
|
FAIR: string;
|