@mx-cartographer/experiences 8.0.2 → 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 +8 -0
- package/dist/insights/components/index.d.ts +1 -0
- package/dist/insights/components/shared/Charts/BarChart/CustomDoubleBarPlotMXUI.d.ts +18 -0
- package/dist/insights/components/shared/Charts/BarChart/DoubleBarChartLegendMXUI.d.ts +10 -0
- package/dist/insights/components/shared/Charts/BarChart/DoubleBarChartMXUI.d.ts +2 -0
- package/dist/insights/components/shared/Charts/BarChart/index.d.ts +1 -0
- package/dist/insights/components/shared/ConnectionCard.d.ts +14 -0
- package/dist/insights/index.es.js +1147 -853
- package/dist/insights/types/Charts/BarChart.d.ts +19 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
## [8.0.4] - 04-07-2026
|
|
2
|
+
|
|
3
|
+
- **ADDED** - `ConnectionCard` component
|
|
4
|
+
|
|
5
|
+
## [8.0.3] - 04-07-2026
|
|
6
|
+
|
|
7
|
+
- **ADDED** - `DoubleBarChartMXUI` component for Insights MUI Refresh.
|
|
8
|
+
|
|
1
9
|
## [8.0.2] - 04-07-2026
|
|
2
10
|
|
|
3
11
|
- **ADDED** - MUI Refresh | Tab Container for DrillDown
|
|
@@ -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,18 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
import { DataSet } from '../../../../types/Charts/BarChart';
|
|
3
|
+
interface BarStyleProps extends React.CSSProperties {
|
|
4
|
+
x?: number;
|
|
5
|
+
y?: number;
|
|
6
|
+
}
|
|
7
|
+
interface CustomDoubleBarPlotMXUIProps {
|
|
8
|
+
color: string;
|
|
9
|
+
data: DataSet[];
|
|
10
|
+
series: Series;
|
|
11
|
+
style: BarStyleProps;
|
|
12
|
+
}
|
|
13
|
+
interface Series {
|
|
14
|
+
index: number;
|
|
15
|
+
type: number;
|
|
16
|
+
}
|
|
17
|
+
export declare const CustomDoubleBarPlotMXUI: ({ color, data, series, style, ...restProps }: CustomDoubleBarPlotMXUIProps) => import("react/jsx-runtime").JSX.Element;
|
|
18
|
+
export {};
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
import { SxProps } from '@mui/material/styles';
|
|
2
|
+
interface DoubleBarChartLegendMXUIProps {
|
|
3
|
+
comparisonColor: string;
|
|
4
|
+
legendLabelComparison?: string;
|
|
5
|
+
legendLabelMain?: string;
|
|
6
|
+
legendStyle?: SxProps;
|
|
7
|
+
mainColor: string;
|
|
8
|
+
}
|
|
9
|
+
export declare const DoubleBarChartLegendMXUI: ({ comparisonColor, legendLabelComparison, legendLabelMain, legendStyle, mainColor, }: DoubleBarChartLegendMXUIProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export {};
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
import { DoubleBarChartMXUIProps } from '../../../../types/Charts/BarChart';
|
|
2
|
+
export declare const DoubleBarChartMXUI: ({ barGapRatio, categoryGapRatio, colors, data, isMini, legendLabelComparison, legendLabelMain, margin, selectedTabIndex, onBarClick, }: DoubleBarChartMXUIProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -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;
|