@mx-cartographer/experiences 8.0.3 → 8.0.4

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.4] - 04-07-2026
2
+
3
+ - **ADDED** - `ConnectionCard` component
4
+
1
5
  ## [8.0.3] - 04-07-2026
2
6
 
3
7
  - **ADDED** - `DoubleBarChartMXUI` component for Insights MUI Refresh.
@@ -3,6 +3,7 @@ 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';
@@ -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;