@mx-cartographer/experiences 8.0.4 → 8.0.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 CHANGED
@@ -1,3 +1,11 @@
1
+ ## [8.0.6] - 04-08-2026
2
+
3
+ - **ADDED** - `P2P Category Single Account card` component added
4
+
5
+ ## [8.0.5] - 04-08-2026
6
+
7
+ - **ADDED** - `SaveEnoughToLiveOn` SVG component with theme support
8
+
1
9
  ## [8.0.4] - 04-07-2026
2
10
 
3
11
  - **ADDED** - `ConnectionCard` component
@@ -9,6 +9,8 @@ export * from './shared/GradientBox';
9
9
  export * from './shared/MiniInsightCard';
10
10
  export * from './shared/MenuAction';
11
11
  export * from './shared/ProgressBar';
12
+ export { default as SaveEnoughToLiveOnBottomSection } from './shared/SaveEnoughToLiveOnBottomSection';
13
+ export { default as SaveEnoughToLiveOnTopSection } from './shared/SaveEnoughToLiveOnTopSection';
12
14
  export { default as StatusIndicator } from './shared/StatusIndicator';
13
15
  export { default as TransactionCard } from './shared/TransactionCard';
14
16
  export * from './shared/Charts';
@@ -42,3 +44,4 @@ export { DirectDepositDeepLink } from './shared/DeepLinks/DirectDeposit/DirectDe
42
44
  export * from './feed/Header';
43
45
  export * from './shared/InsightsCard/BeatCardMUI';
44
46
  export * from './shared/InsightsCard/CardHeaderMUI';
47
+ export * from './shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount';
@@ -0,0 +1,10 @@
1
+ interface P2PCategorizationSingleAccountProps {
2
+ amount?: string;
3
+ categorized?: string;
4
+ categoryGuid: string;
5
+ merchantGuid: string;
6
+ merchantName: string;
7
+ isSuccessState?: boolean;
8
+ }
9
+ export declare const P2PCategorizationSingleAccount: React.FC<P2PCategorizationSingleAccountProps>;
10
+ export {};
@@ -0,0 +1,9 @@
1
+ interface SaveEnoughToLiveOnBottomSectionProps {
2
+ content: string;
3
+ leftLabel: string;
4
+ leftValue: string;
5
+ rightLabel: string;
6
+ rightValue: string;
7
+ }
8
+ declare const SaveEnoughToLiveOnBottomSection: ({ content, leftLabel, leftValue, rightLabel, rightValue, }: SaveEnoughToLiveOnBottomSectionProps) => import("react/jsx-runtime").JSX.Element;
9
+ export default SaveEnoughToLiveOnBottomSection;
@@ -0,0 +1,2 @@
1
+ declare const SaveEnoughToLiveOnThemedTopSection: () => import("react/jsx-runtime").JSX.Element;
2
+ export default SaveEnoughToLiveOnThemedTopSection;