@mx-cartographer/experiences 6.26.4 → 6.26.6-alpha-ram1

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 CHANGED
@@ -1,3 +1,15 @@
1
+ ## [6.26.7] - 09-03-2025
2
+
3
+ - **ADDED** - Financial strength card section for `Finstrong`
4
+
5
+ ## [6.26.6] - 09-03-2025
6
+
7
+ - **ADDED** - `FinStrong Widget` | Score History Drawer | Score Graph & Key Indicators Graph added
8
+
9
+ ## [6.26.5] - 09-03-2025
10
+
11
+ - **ADDED** - `Finstrong` Graph Empty State
12
+
1
13
  ## [6.26.4] - 09-01-2025
2
14
 
3
15
  - **UPDATED** - Replaced zero state mini goals images with new design
@@ -6,6 +6,12 @@ export interface CreditScoreStatusCopy {
6
6
  exceptional: string;
7
7
  missing_data: string;
8
8
  }
9
+ export interface HealthScoreStatuDetailsCopy {
10
+ building: string;
11
+ stable: string;
12
+ strong: string;
13
+ vulnerable: string;
14
+ }
9
15
  interface KeyIndicatorBorrow {
10
16
  credit_score_fair_description: string;
11
17
  credit_score_good_description: string;
@@ -46,10 +52,13 @@ interface KeyIndicatorSpend {
46
52
  title: string;
47
53
  }
48
54
  export interface FinstrongCopy {
55
+ accordion_details_text: HealthScoreStatuDetailsCopy;
56
+ accordion_title_text: string;
49
57
  account: string;
50
58
  accounts: string;
51
59
  add_profile_item: string;
52
60
  building: string;
61
+ building_description: string;
53
62
  complete: string;
54
63
  connect_more_accounts_button: string;
55
64
  connect_more_accounts_description: string;
@@ -65,8 +74,12 @@ export interface FinstrongCopy {
65
74
  edit_credit_score: string;
66
75
  financial_profile: string;
67
76
  financial_profile_description: string;
77
+ financial_strength_header: string;
78
+ financial_strength_header_action: string;
68
79
  finstrong_freedom_description: string;
69
80
  footer_center_content_updated_just_now: string;
81
+ health_score_zero_title: string;
82
+ health_score_zero_description: string;
70
83
  how_do_we_do_this: string;
71
84
  insufficient_data: string;
72
85
  key_indicators: string;
@@ -82,16 +95,20 @@ export interface FinstrongCopy {
82
95
  missing_data_title: string;
83
96
  monthly_income: string;
84
97
  profile: string;
98
+ score_history: string;
85
99
  score_rubric: string;
86
100
  peer_average: string;
87
101
  see_whats_possible: string;
88
102
  see_whats_possible_description: string;
89
103
  stable: string;
104
+ stable_description: string;
90
105
  strong: string;
106
+ strong_description: string;
91
107
  title: string;
92
108
  understand_your_habits: string;
93
109
  understand_your_habits_description: string;
94
110
  vulnerable: string;
111
+ vulnerable_description: string;
95
112
  we_ask_questions: string;
96
113
  we_ask_questions_description_1: string;
97
114
  we_ask_questions_description_2: string;
@@ -0,0 +1,3 @@
1
+ export declare const FinancialStrengthCard: (() => import("react/jsx-runtime").JSX.Element) & {
2
+ displayName: string;
3
+ };
@@ -1,7 +1,11 @@
1
+ import { SxProps } from '@mui/material/styles';
1
2
  interface ConnectMoreAccountsCardProps {
2
3
  isDashboard?: boolean;
4
+ hasIcon?: boolean;
5
+ buttonText?: string;
3
6
  title?: string;
4
7
  description?: string;
8
+ sx?: SxProps;
5
9
  }
6
- export declare const ConnectMoreAccountsCard: ({ isDashboard, title, description, }: ConnectMoreAccountsCardProps) => import("react/jsx-runtime").JSX.Element;
10
+ export declare const ConnectMoreAccountsCard: ({ isDashboard, hasIcon, buttonText, title, description, sx, }: ConnectMoreAccountsCardProps) => import("react/jsx-runtime").JSX.Element;
7
11
  export {};
@@ -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;
@@ -0,0 +1,8 @@
1
+ interface ScoreHistoryDrawerProps {
2
+ isOpen: boolean;
3
+ onClose: () => void;
4
+ }
5
+ declare const _default: (({ isOpen, onClose }: ScoreHistoryDrawerProps) => import("react/jsx-runtime").JSX.Element) & {
6
+ displayName: string;
7
+ };
8
+ export default _default;
@@ -9,10 +9,10 @@ export declare class FinstrongStore {
9
9
  averageHealthScores: MonthlyHealthScore[];
10
10
  globalStore: GlobalStore;
11
11
  healthScore: HealthScore;
12
+ healthScoreChange?: number;
12
13
  healthScoreChangeReports: HealthScoreReport[];
13
14
  peerScore: number | null;
14
15
  constructor(globalStore: GlobalStore);
15
- get getHealthScore(): HealthScore;
16
16
  calculateHealthScore: () => Promise<void>;
17
17
  loadAverageHealthScores: () => Promise<void>;
18
18
  loadHealthScoreChangeReports: () => Promise<void>;
@@ -2,7 +2,16 @@ 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) => string;
5
+ export declare const calculateFinstrongScoreStatus: (healthScore: number, copy: FinstrongCopy) => {
6
+ description: string;
7
+ max: number;
8
+ scoreContent: string;
9
+ status: string;
10
+ } | {
11
+ status: string;
12
+ description: string;
13
+ scoreContent: string;
14
+ };
6
15
  export declare const CreditScoreLightColors: {
7
16
  POOR: string;
8
17
  FAIR: string;