@mx-cartographer/experiences 8.0.17 → 8.0.19
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/insights/components/index.d.ts +2 -0
- package/dist/insights/components/shared/DiscoveredAccountsConnect.d.ts +8 -0
- package/dist/insights/components/shared/DrillDownCalculation/BalanceStepper.d.ts +12 -0
- package/dist/insights/components/shared/DrillDownCalculation/DrillDownCalculation.d.ts +31 -0
- package/dist/insights/components/shared/SaveEnoughToLiveOnBottomSection.d.ts +3 -1
- package/dist/insights/index.es.js +1043 -742
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [8.0.19] - 04-15-2026
|
|
2
|
+
|
|
3
|
+
- **ADDED** - Added `DrillDown Static Calculation Drawer` for SaveAnExtra and SaveEnoughToLiveOn beats
|
|
4
|
+
|
|
5
|
+
## [8.0.18] - 04-15-2026
|
|
6
|
+
|
|
7
|
+
- **ADDED** - `DiscoveredAccountsConnect` component
|
|
8
|
+
|
|
1
9
|
## [8.0.17] - 04-14-2026
|
|
2
10
|
|
|
3
11
|
- **ADDED** - `target_origin_referrer` to `ClientConfig` and `MasterConfig` types
|
|
@@ -5,6 +5,7 @@ export { default as ChartTransactionWithDrillDown } from './shared/ChartTransact
|
|
|
5
5
|
export * from './shared/Confetti';
|
|
6
6
|
export { default as ConnectionCard } from './shared/ConnectionCard';
|
|
7
7
|
export { default as Coupon } from './shared/Coupon';
|
|
8
|
+
export { default as DiscoveredAccountsConnect } from './shared/DiscoveredAccountsConnect';
|
|
8
9
|
export * from './shared/GoalProgress';
|
|
9
10
|
export * from './shared/GradientBox';
|
|
10
11
|
export * from './shared/MiniInsightCard';
|
|
@@ -47,4 +48,5 @@ export * from './feed/Header';
|
|
|
47
48
|
export * from './shared/InsightsCard/BeatCardMUI';
|
|
48
49
|
export * from './shared/InsightsCard/CardHeaderMUI';
|
|
49
50
|
export * from './shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount';
|
|
51
|
+
export * from './shared/DrillDownCalculation/DrillDownCalculation';
|
|
50
52
|
export * from './shared/SaveAnExtra100/SaveAnExtra100';
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
interface DiscoveredAccountsConnectProps {
|
|
2
|
+
bottomIconAltText: string;
|
|
3
|
+
bottomIconInstitutionGuid: string;
|
|
4
|
+
topIconAltText: string;
|
|
5
|
+
topIconInstitutionGuid: string;
|
|
6
|
+
}
|
|
7
|
+
declare const DiscoveredAccountsConnect: ({ bottomIconAltText, bottomIconInstitutionGuid, topIconAltText, topIconInstitutionGuid, }: DiscoveredAccountsConnectProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export default DiscoveredAccountsConnect;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
interface CopyContent {
|
|
2
|
+
decrement_arial_label?: string;
|
|
3
|
+
increment_arial_label?: string;
|
|
4
|
+
}
|
|
5
|
+
interface BalanceStepperProps {
|
|
6
|
+
amount: string;
|
|
7
|
+
onDecrement?: () => void;
|
|
8
|
+
onIncrement?: () => void;
|
|
9
|
+
copy: CopyContent;
|
|
10
|
+
}
|
|
11
|
+
export declare const BalanceStepper: ({ amount, onDecrement, onIncrement, copy }: BalanceStepperProps) => import("react/jsx-runtime").JSX.Element;
|
|
12
|
+
export {};
|
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
export declare const variants: {
|
|
2
|
+
SAVE_ENOUGH_TO_LIVE_ON: string;
|
|
3
|
+
SAVE_AN_EXTRA_100: string;
|
|
4
|
+
};
|
|
5
|
+
interface CopyContent {
|
|
6
|
+
header_content?: string;
|
|
7
|
+
description?: string;
|
|
8
|
+
body_content?: string;
|
|
9
|
+
body_description?: string;
|
|
10
|
+
available_text?: string;
|
|
11
|
+
total_remaining_text?: string;
|
|
12
|
+
increment_arial_label?: string;
|
|
13
|
+
decrement_arial_label?: string;
|
|
14
|
+
expenses_text?: string;
|
|
15
|
+
available_balances_text?: string;
|
|
16
|
+
average_monthly_spend_text?: string;
|
|
17
|
+
your_available_balances_text?: string;
|
|
18
|
+
}
|
|
19
|
+
interface DrillDownCalculationProps {
|
|
20
|
+
title: string;
|
|
21
|
+
open: boolean;
|
|
22
|
+
onClose: () => void;
|
|
23
|
+
date?: string;
|
|
24
|
+
variant: (typeof variants)[keyof typeof variants];
|
|
25
|
+
svgDateContent?: string;
|
|
26
|
+
availableBalances?: number;
|
|
27
|
+
copy: CopyContent;
|
|
28
|
+
averageMonthlySpend?: number;
|
|
29
|
+
}
|
|
30
|
+
export declare const DrillDownCalculation: ({ title, open, onClose, variant, svgDateContent, date, copy, availableBalances, averageMonthlySpend, }: DrillDownCalculationProps) => import("react/jsx-runtime").JSX.Element;
|
|
31
|
+
export {};
|
|
@@ -1,9 +1,11 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material/styles';
|
|
1
2
|
interface SaveEnoughToLiveOnBottomSectionProps {
|
|
2
3
|
content: string;
|
|
3
4
|
leftLabel: string;
|
|
4
5
|
leftValue: string;
|
|
5
6
|
rightLabel: string;
|
|
6
7
|
rightValue: string;
|
|
8
|
+
sx?: SxProps;
|
|
7
9
|
}
|
|
8
|
-
declare const SaveEnoughToLiveOnBottomSection: ({ content, leftLabel, leftValue, rightLabel, rightValue, }: SaveEnoughToLiveOnBottomSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
declare const SaveEnoughToLiveOnBottomSection: ({ content, leftLabel, leftValue, rightLabel, rightValue, sx, }: SaveEnoughToLiveOnBottomSectionProps) => import("react/jsx-runtime").JSX.Element;
|
|
9
11
|
export default SaveEnoughToLiveOnBottomSection;
|