@mx-cartographer/experiences 8.0.3 → 8.0.5

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.5] - 04-08-2026
2
+
3
+ - **ADDED** - `SaveEnoughToLiveOn` SVG component with theme support
4
+
5
+ ## [8.0.4] - 04-07-2026
6
+
7
+ - **ADDED** - `ConnectionCard` component
8
+
1
9
  ## [8.0.3] - 04-07-2026
2
10
 
3
11
  - **ADDED** - `DoubleBarChartMXUI` component for Insights MUI Refresh.
@@ -3,11 +3,14 @@ export * from './shared/CarouselControls';
3
3
  export * from './shared/ChartDrawerTemplate/ChartDrawerTemplate';
4
4
  export { default as ChartTransactionWithDrillDown } from './shared/ChartTransactionWithDrillDown';
5
5
  export * from './shared/Confetti';
6
+ export { default as ConnectionCard } from './shared/ConnectionCard';
6
7
  export * from './shared/GoalProgress';
7
8
  export * from './shared/GradientBox';
8
9
  export * from './shared/MiniInsightCard';
9
10
  export * from './shared/MenuAction';
10
11
  export * from './shared/ProgressBar';
12
+ export { default as SaveEnoughToLiveOnBottomSection } from './shared/SaveEnoughToLiveOnBottomSection';
13
+ export { default as SaveEnoughToLiveOnTopSection } from './shared/SaveEnoughToLiveOnTopSection';
11
14
  export { default as StatusIndicator } from './shared/StatusIndicator';
12
15
  export { default as TransactionCard } from './shared/TransactionCard';
13
16
  export * from './shared/Charts';
@@ -0,0 +1,14 @@
1
+ import { default as React } from 'react';
2
+ import { SxProps, Theme } from '@mui/material/styles';
3
+ interface ConnectionCardProps {
4
+ centerIconBgColor?: string;
5
+ dotBgColor?: string;
6
+ hasBigDots?: boolean;
7
+ hasConfetti?: boolean;
8
+ icon: React.ReactNode;
9
+ leftIcon: React.ReactNode;
10
+ rightIcon: React.ReactNode;
11
+ sx?: SxProps<Theme>;
12
+ }
13
+ declare const ConnectionCard: ({ centerIconBgColor, dotBgColor, hasBigDots, hasConfetti, icon, leftIcon, rightIcon, sx, }: ConnectionCardProps) => import("react/jsx-runtime").JSX.Element;
14
+ export default ConnectionCard;
@@ -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;