@mx-cartographer/experiences 7.10.32 → 7.10.33

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
+ ## [7.10.33] - 02-24-2026
2
+
3
+ - **ADDED** - `InsightsHeader`
4
+
1
5
  ## [7.10.32] - 02-24-2026
2
6
 
3
7
  - **UPDATED** - Added Merchant Budget List Item in the transcation Details and a small tweak in the color to use 'text.primary' as per FIGMA
@@ -0,0 +1,8 @@
1
+ import { default as React } from 'react';
2
+ interface HeaderProps {
3
+ title: string;
4
+ onBackButtonClick?: () => void;
5
+ children?: React.ReactNode;
6
+ }
7
+ export declare const Header: ({ title, onBackButtonClick, children }: HeaderProps) => import("react/jsx-runtime").JSX.Element;
8
+ export {};
@@ -37,3 +37,4 @@ export * from './shared/GenericFeedback/FeedbackOptions';
37
37
  export * from './shared/GenericFeedback/FeedbackText';
38
38
  export * from './insights';
39
39
  export { DirectDepositDeepLink } from './shared/DeepLinks/DirectDeposit/DirectDepositDeepLink';
40
+ export * from './feed/Header';