@mx-cartographer/experiences 8.0.11 → 8.0.12

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.12] - 04-10-2026
2
+
3
+ - **ADDED** - `Save an extra $100` component card added
4
+
1
5
  ## [8.0.11] - 04-09-2026
2
6
 
3
7
  - **ADDED** - Analytics for `TransactionTable` category cell click
@@ -47,3 +47,4 @@ export * from './feed/Header';
47
47
  export * from './shared/InsightsCard/BeatCardMUI';
48
48
  export * from './shared/InsightsCard/CardHeaderMUI';
49
49
  export * from './shared/P2PCategorizationSingleAccount/P2PCategorizationSingleAccount';
50
+ export * from './shared/SaveAnExtra100/SaveAnExtra100';
@@ -0,0 +1,9 @@
1
+ import { default as React } from 'react';
2
+ interface SaveAnExtra100Props {
3
+ amount: string;
4
+ description1: string;
5
+ description2: string;
6
+ title: string;
7
+ }
8
+ export declare const SaveAnExtra100: React.FC<SaveAnExtra100Props>;
9
+ export {};