@mx-cartographer/experiences 6.25.0 → 6.25.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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## [6.25.1] - 08-21-2025
2
+
3
+ - **ADDED** - `Profile` drawer with API for `Finstrong` widget
4
+
1
5
  ## [6.25.00] - 08-20-2025
2
6
 
3
7
  - **ADDED** - (new) TrendsWidget, TrendsStore, TrendsChartTotals, TrendsInsights
@@ -14,6 +14,7 @@ export declare class AccountStore {
14
14
  get cashBalance(): number;
15
15
  get checkingAccounts(): Account[];
16
16
  get debtAccounts(): Account[];
17
+ get finstrongAccounts(): Account[];
17
18
  get investmentAccounts(): Account[];
18
19
  get savingsAccounts(): Account[];
19
20
  get visibleAccounts(): Account[];
@@ -21,6 +22,7 @@ export declare class AccountStore {
21
22
  get visibleCashBalance(): number;
22
23
  get visibleCheckingAccounts(): Account[];
23
24
  get visibleDebtAccounts(): Account[];
25
+ get visibleFinstrongAccounts(): Account[];
24
26
  get visibleInvestmentAccounts(): Account[];
25
27
  get visibleSavingsAccounts(): Account[];
26
28
  addAccount: (account: Account) => Promise<void>;
@@ -14,6 +14,7 @@ export declare class BudgetsStore {
14
14
  constructor(globalStore: GlobalStore);
15
15
  loadBudgetData: () => Promise<void>;
16
16
  get detailedBudgets(): DetailedBudget[];
17
+ get incomeBudget(): number | undefined;
17
18
  get unbudgetedCategories(): DetailedCategory[];
18
19
  get totalBudgeted(): number;
19
20
  addBudget: (category: Category, amount: number, parentGuid?: string | null) => Promise<void>;
@@ -2,5 +2,7 @@ interface ManageDOBProps {
2
2
  isOpen: boolean;
3
3
  onClose: () => void;
4
4
  }
5
- declare const ManageDOB: ({ isOpen, onClose }: ManageDOBProps) => import("react/jsx-runtime").JSX.Element;
6
- export default ManageDOB;
5
+ declare const _default: (({ isOpen, onClose }: ManageDOBProps) => import("react/jsx-runtime").JSX.Element) & {
6
+ displayName: string;
7
+ };
8
+ export default _default;
@@ -1,5 +1,6 @@
1
1
  import { PieValueType } from '@mui/x-charts';
2
2
  import { CreditScoreStatusCopy, FinstrongCopy } from '../../common/types/localization/FinstrongCopy';
3
+ import { Action } from '../components/ProfileList';
3
4
  export declare const radiansToDegrees: (radians: number) => number;
4
5
  export declare const calculateFinstrongScoreStatus: (healthScore: number, copy: FinstrongCopy) => string;
5
6
  export declare const CreditScoreLightColors: {
@@ -26,3 +27,17 @@ export declare const getCreditScoreDetails: (healthScore: number, isDarkMode: bo
26
27
  export declare const getOutterArcStartEndAngle: (healthScoreData: PieValueType[], totalAngularSpan: number, arcStartAngle: number, dataIndex: number) => number[];
27
28
  export declare const getFilledArcStartEndAngle: (outterArcStartAngle: number, outterArcEndAngle: number, dataIndex: number, unitsPerSegment: number, progressEndAngle: number) => number[];
28
29
  export declare const getMarkerXYCoordinates: (markerRadius: number, progressEndAngle: number, angleOffset?: number) => number[];
30
+ export declare const buildProfileItem: ({ dynamicCopy, fallbackLabel, icon, key, label, value, }: {
31
+ dynamicCopy?: string;
32
+ fallbackLabel: string;
33
+ icon: JSX.Element;
34
+ key: Action;
35
+ label: string;
36
+ value: string | number | undefined | null;
37
+ }) => {
38
+ icon: import("react/jsx-runtime").JSX.Element;
39
+ isComplete: boolean;
40
+ key: Action;
41
+ primaryText: string;
42
+ secondaryText: string;
43
+ };