@mx-cartographer/experiences 7.13.18 → 7.13.20

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
+ ## [7.13.19] - 04-01-2026
2
+
3
+ - **ADDED** - Introduced `TransactionCard` component for `Insights`.
4
+
5
+ ## [7.13.18] - 04-01-2026
6
+
7
+ - **FIXED** - Budget date now aligns with selected month
8
+
1
9
  ## [7.13.18] - 04-01-2026
2
10
 
3
11
  - **UPDATED** - Deprecated icons to use mx-icons library
@@ -1342,7 +1342,7 @@ const It = ({
1342
1342
  onViewHistory: c,
1343
1343
  remainingAmount: he,
1344
1344
  spentPercentage: te,
1345
- startDate: r.start_date,
1345
+ startDate: (s.start.getTime() ?? 0) / 1e3,
1346
1346
  totalTransaction: r.transaction_total
1347
1347
  }
1348
1348
  ),
@@ -9,6 +9,7 @@ export * from './shared/MiniInsightCard';
9
9
  export * from './shared/MenuAction';
10
10
  export * from './shared/ProgressBar';
11
11
  export { default as StatusIndicator } from './shared/StatusIndicator';
12
+ export { default as TransactionCard } from './shared/TransactionCard';
12
13
  export * from './shared/Charts';
13
14
  export * from './shared/DirectDeposit/DirectDeposit';
14
15
  export * from './shared/DirectDeposit/DirectDepositSubHeader';
@@ -0,0 +1,14 @@
1
+ interface BodyContent {
2
+ amount: string;
3
+ icon: React.ReactNode;
4
+ primaryText: string;
5
+ secondaryText: string;
6
+ }
7
+ interface TransactionCardProps {
8
+ bodyContent: BodyContent[];
9
+ footerLeftText?: string;
10
+ footerRightText?: string;
11
+ headerText?: string;
12
+ }
13
+ declare const TransactionCard: ({ bodyContent, footerLeftText, footerRightText, headerText, }: TransactionCardProps) => import("react/jsx-runtime").JSX.Element;
14
+ export default TransactionCard;