@mx-cartographer/experiences 8.0.1 → 8.0.3
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/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/TabContainer.d.ts +8 -0
- package/dist/insights/index.es.js +1080 -861
- 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.3] - 04-07-2026
|
|
2
|
+
|
|
3
|
+
- **ADDED** - `DoubleBarChartMXUI` component for Insights MUI Refresh.
|
|
4
|
+
|
|
5
|
+
## [8.0.2] - 04-07-2026
|
|
6
|
+
|
|
7
|
+
- **ADDED** - MUI Refresh | Tab Container for DrillDown
|
|
8
|
+
|
|
1
9
|
## [8.0.1] - 04-06-2026
|
|
2
10
|
|
|
3
11
|
- **UPDATED** - Documentation to reflect the move of shared types and constants to `src/core`
|
|
@@ -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,8 @@
|
|
|
1
|
+
import { default as React } from 'react';
|
|
2
|
+
interface TabContainerProps {
|
|
3
|
+
tabs?: string[];
|
|
4
|
+
onTabChange?: (tabIndex: number) => void;
|
|
5
|
+
children?: React.ReactNode;
|
|
6
|
+
}
|
|
7
|
+
export declare const TabContainer: ({ tabs, onTabChange, children }: TabContainerProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export {};
|