@mx-cartographer/experiences 7.13.19 → 7.13.21

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.20] - 04-02-2026
2
+
3
+ - **ADDED** - DonutChartV2 component for Insights MUI Refresh.
4
+
5
+ ## [7.13.19] - 04-01-2026
6
+
7
+ - **ADDED** - Introduced `TransactionCard` component for `Insights`.
8
+
1
9
  ## [7.13.18] - 04-01-2026
2
10
 
3
11
  - **FIXED** - Budget date now aligns with selected month
@@ -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,13 @@
1
+ interface DonutSegment {
2
+ color: string;
3
+ label?: string;
4
+ labelValue?: React.ReactNode;
5
+ value: number;
6
+ }
7
+ interface DonutChartV2Props {
8
+ data: DonutSegment[];
9
+ centerLabel?: string;
10
+ centerValue: string;
11
+ }
12
+ declare const DonutChartV2: ({ data, centerLabel, centerValue }: DonutChartV2Props) => import("react/jsx-runtime").JSX.Element;
13
+ export default DonutChartV2;
@@ -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;