@mx-cartographer/experiences 8.0.18 → 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 CHANGED
@@ -1,3 +1,7 @@
1
+ ## [8.0.19] - 04-15-2026
2
+
3
+ - **ADDED** - Added `DrillDown Static Calculation Drawer` for SaveAnExtra and SaveEnoughToLiveOn beats
4
+
1
5
  ## [8.0.18] - 04-15-2026
2
6
 
3
7
  - **ADDED** - `DiscoveredAccountsConnect` component
@@ -48,4 +48,5 @@ export * from './feed/Header';
48
48
  export * from './shared/InsightsCard/BeatCardMUI';
49
49
  export * from './shared/InsightsCard/CardHeaderMUI';
50
50
  export * from './shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount';
51
+ export * from './shared/DrillDownCalculation/DrillDownCalculation';
51
52
  export * from './shared/SaveAnExtra100/SaveAnExtra100';
@@ -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;