@mui/x-charts-pro 9.0.0-alpha.0 → 9.0.0-alpha.2
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/BarChartPro/BarChartPro.d.mts +33 -0
- package/BarChartPro/BarChartPro.d.ts +1 -1
- package/BarChartPro/BarChartPro.js +47 -15
- package/BarChartPro/BarChartPro.mjs +1634 -0
- package/BarChartPro/BarChartPro.plugins.d.mts +5 -0
- package/BarChartPro/BarChartPro.plugins.d.ts +1 -1
- package/BarChartPro/BarChartPro.plugins.mjs +4 -0
- package/BarChartPro/index.d.mts +2 -0
- package/BarChartPro/index.mjs +2 -0
- package/CHANGELOG.md +236 -0
- package/ChartContainerPro/ChartContainerPro.d.mts +21 -0
- package/ChartContainerPro/ChartContainerPro.mjs +20 -0
- package/ChartContainerPro/index.d.mts +9 -0
- package/ChartContainerPro/index.mjs +6 -0
- package/ChartContainerPro/useChartContainerProProps.d.mts +12 -0
- package/ChartContainerPro/useChartContainerProProps.d.ts +1 -2
- package/ChartContainerPro/useChartContainerProProps.js +2 -2
- package/ChartContainerPro/useChartContainerProProps.mjs +14 -0
- package/ChartDataProviderPro/ChartDataProviderPro.d.mts +20 -0
- package/ChartDataProviderPro/ChartDataProviderPro.d.ts +17 -46
- package/ChartDataProviderPro/ChartDataProviderPro.js +21 -141
- package/ChartDataProviderPro/ChartDataProviderPro.mjs +21 -0
- package/ChartDataProviderPro/index.d.mts +2 -0
- package/ChartDataProviderPro/index.mjs +2 -0
- package/ChartDataProviderPro/useChartDataProviderProProps.d.mts +10 -0
- package/ChartDataProviderPro/useChartDataProviderProProps.d.ts +7 -7
- package/ChartDataProviderPro/useChartDataProviderProProps.js +5 -18
- package/ChartDataProviderPro/useChartDataProviderProProps.mjs +8 -0
- package/ChartZoomSlider/index.d.mts +29 -0
- package/ChartZoomSlider/index.d.ts +29 -3
- package/ChartZoomSlider/index.js +33 -30
- package/ChartZoomSlider/index.mjs +34 -0
- package/ChartsContainerPro/ChartsContainerPro.d.mts +37 -0
- package/ChartsContainerPro/ChartsContainerPro.d.ts +3 -3
- package/ChartsContainerPro/ChartsContainerPro.js +5 -4
- package/ChartsContainerPro/ChartsContainerPro.mjs +182 -0
- package/ChartsContainerPro/index.d.mts +9 -0
- package/ChartsContainerPro/index.mjs +6 -0
- package/ChartsContainerPro/useChartsContainerProProps.d.mts +8 -0
- package/ChartsContainerPro/useChartsContainerProProps.d.ts +1 -2
- package/ChartsContainerPro/useChartsContainerProProps.js +2 -2
- package/ChartsContainerPro/useChartsContainerProProps.mjs +37 -0
- package/ChartsDataProvider/index.d.mts +1 -0
- package/ChartsDataProvider/index.d.ts +1 -0
- package/ChartsDataProvider/index.js +16 -0
- package/ChartsDataProvider/index.mjs +2 -0
- package/ChartsDataProviderPro/ChartsDataProviderPro.d.mts +49 -0
- package/ChartsDataProviderPro/ChartsDataProviderPro.d.ts +49 -0
- package/ChartsDataProviderPro/ChartsDataProviderPro.js +149 -0
- package/ChartsDataProviderPro/ChartsDataProviderPro.mjs +143 -0
- package/ChartsDataProviderPro/index.d.mts +2 -0
- package/ChartsDataProviderPro/index.d.ts +2 -0
- package/ChartsDataProviderPro/index.js +19 -0
- package/ChartsDataProviderPro/index.mjs +2 -0
- package/ChartsDataProviderPro/useChartsDataProviderProProps.d.mts +10 -0
- package/ChartsDataProviderPro/useChartsDataProviderProProps.d.ts +10 -0
- package/ChartsDataProviderPro/useChartsDataProviderProProps.js +25 -0
- package/ChartsDataProviderPro/useChartsDataProviderProProps.mjs +19 -0
- package/ChartsLayerContainer/index.d.mts +1 -0
- package/ChartsLayerContainer/index.d.ts +1 -0
- package/ChartsLayerContainer/index.js +16 -0
- package/ChartsLayerContainer/index.mjs +2 -0
- package/ChartsSvgLayer/index.d.mts +1 -0
- package/ChartsSvgLayer/index.d.ts +1 -0
- package/ChartsSvgLayer/index.js +16 -0
- package/ChartsSvgLayer/index.mjs +2 -0
- package/ChartsToolbarPro/ChartsToolbarImageExportTrigger.d.mts +27 -0
- package/ChartsToolbarPro/ChartsToolbarImageExportTrigger.mjs +73 -0
- package/ChartsToolbarPro/ChartsToolbarPrintExportTrigger.d.mts +33 -0
- package/ChartsToolbarPro/ChartsToolbarPrintExportTrigger.mjs +71 -0
- package/ChartsToolbarPro/ChartsToolbarPro.d.mts +19 -0
- package/ChartsToolbarPro/ChartsToolbarPro.mjs +166 -0
- package/ChartsToolbarPro/ChartsToolbarZoomInTrigger.mjs +51 -0
- package/ChartsToolbarPro/ChartsToolbarZoomOutTrigger.mjs +51 -0
- package/ChartsToolbarPro/Toolbar.types.d.mts +15 -0
- package/ChartsToolbarPro/index.d.mts +5 -0
- package/ChartsToolbarPro/index.mjs +5 -0
- package/ChartsToolbarPro/internals/ChartsMenu.d.mts +14 -0
- package/ChartsToolbarPro/internals/ChartsToolbarDivider.d.mts +5 -0
- package/ChartsZoomSlider/ChartsZoomSlider.d.mts +4 -0
- package/ChartsZoomSlider/ChartsZoomSlider.d.ts +4 -0
- package/ChartsZoomSlider/ChartsZoomSlider.js +47 -0
- package/ChartsZoomSlider/ChartsZoomSlider.mjs +41 -0
- package/ChartsZoomSlider/index.d.mts +3 -0
- package/ChartsZoomSlider/index.d.ts +3 -0
- package/ChartsZoomSlider/index.js +26 -0
- package/ChartsZoomSlider/index.mjs +3 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSlider.d.mts +20 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSlider.d.ts +20 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSlider.js +111 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSlider.mjs +105 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderActiveTrack.d.mts +25 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderActiveTrack.d.ts +25 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderActiveTrack.js +303 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderActiveTrack.mjs +296 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreview.d.mts +17 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreview.d.ts +17 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreview.js +105 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreview.mjs +97 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreviewContent.d.mts +9 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreviewContent.d.ts +9 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreviewContent.js +46 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderPreviewContent.mjs +38 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderThumb.d.mts +12 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderThumb.d.ts +12 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderThumb.js +112 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderThumb.mjs +105 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderTrack.d.mts +18 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderTrack.d.ts +18 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderTrack.js +145 -0
- package/ChartsZoomSlider/internals/ChartsAxisZoomSliderTrack.mjs +138 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderThumbClasses.d.mts +17 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderThumbClasses.d.ts +17 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderThumbClasses.js +27 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderThumbClasses.mjs +17 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderTrackClasses.d.mts +15 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderTrackClasses.d.ts +15 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderTrackClasses.js +31 -0
- package/ChartsZoomSlider/internals/chartsAxisZoomSliderTrackClasses.mjs +21 -0
- package/ChartsZoomSlider/internals/previews/AreaPreviewPlot.d.mts +14 -0
- package/ChartsZoomSlider/internals/previews/BarPreviewPlot.d.mts +9 -0
- package/ChartsZoomSlider/internals/previews/LineAreaPreviewPlot.d.mts +4 -0
- package/ChartsZoomSlider/internals/previews/LineAreaPreviewPlot.mjs +15 -0
- package/ChartsZoomSlider/internals/previews/LinePreviewPlot.d.mts +14 -0
- package/ChartsZoomSlider/internals/previews/ScatterPreviewPlot.d.mts +15 -0
- package/ChartsZoomSlider/internals/seriesPreviewPlotMap.d.mts +3 -0
- package/ChartsZoomSlider/internals/seriesPreviewPlotMap.mjs +4 -0
- package/FunnelChart/FocusedFunnelSection.mjs +64 -0
- package/FunnelChart/FunnelChart.d.mts +39 -0
- package/FunnelChart/FunnelChart.d.ts +1 -1
- package/FunnelChart/FunnelChart.js +29 -13
- package/FunnelChart/FunnelChart.mjs +362 -0
- package/FunnelChart/FunnelChart.plugins.d.mts +5 -0
- package/FunnelChart/FunnelChart.plugins.d.ts +1 -1
- package/FunnelChart/FunnelChart.plugins.mjs +4 -0
- package/FunnelChart/FunnelPlot.d.mts +16 -0
- package/FunnelChart/FunnelPlot.mjs +182 -0
- package/FunnelChart/FunnelSection.d.mts +16 -0
- package/FunnelChart/FunnelSection.js +4 -6
- package/FunnelChart/FunnelSection.mjs +65 -0
- package/FunnelChart/FunnelSectionLabel.d.mts +21 -0
- package/FunnelChart/FunnelSectionLabel.mjs +46 -0
- package/FunnelChart/coordinateMapper.d.mts +3 -0
- package/FunnelChart/curves/borderRadiusPolygon.d.mts +8 -0
- package/FunnelChart/curves/bump.d.mts +31 -0
- package/FunnelChart/curves/getFunnelCurve.d.mts +8 -0
- package/FunnelChart/curves/getFunnelCurve.mjs +26 -0
- package/FunnelChart/curves/index.d.mts +2 -0
- package/FunnelChart/curves/index.mjs +2 -0
- package/FunnelChart/curves/linear.d.mts +40 -0
- package/FunnelChart/curves/linear.mjs +164 -0
- package/FunnelChart/curves/pyramid.d.mts +36 -0
- package/FunnelChart/curves/pyramid.mjs +146 -0
- package/FunnelChart/curves/step-pyramid.d.mts +39 -0
- package/FunnelChart/curves/step-pyramid.mjs +174 -0
- package/FunnelChart/curves/step.d.mts +36 -0
- package/FunnelChart/curves/step.mjs +85 -0
- package/FunnelChart/funnel.types.d.mts +158 -0
- package/FunnelChart/funnelAxisPlugin/computeAxisValue.js +2 -1
- package/FunnelChart/funnelAxisPlugin/computeAxisValue.mjs +113 -0
- package/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.d.mts +3 -0
- package/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.js +5 -5
- package/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.mjs +178 -0
- package/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.types.d.mts +28 -0
- package/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.types.d.ts +1 -1
- package/FunnelChart/funnelAxisPlugin/useChartFunnelAxisRendering.selectors.d.mts +18 -0
- package/FunnelChart/funnelAxisPlugin/useChartFunnelAxisRendering.selectors.mjs +21 -0
- package/FunnelChart/funnelPlotSlots.types.d.mts +31 -0
- package/FunnelChart/funnelSectionClasses.d.mts +30 -0
- package/FunnelChart/funnelSectionClasses.d.ts +8 -2
- package/FunnelChart/funnelSlots.types.d.mts +20 -0
- package/FunnelChart/funnelSlots.types.d.ts +3 -9
- package/FunnelChart/get2DExtrema.d.mts +3 -0
- package/FunnelChart/index.d.mts +18 -0
- package/FunnelChart/index.d.ts +1 -1
- package/FunnelChart/index.mjs +17 -0
- package/FunnelChart/labelUtils.d.mts +37 -0
- package/FunnelChart/seriesConfig/index.js +3 -1
- package/FunnelChart/seriesConfig/index.mjs +24 -0
- package/FunnelChart/seriesConfig/keyboardFocusHandler.js +1 -14
- package/FunnelChart/seriesConfig/keyboardFocusHandler.mjs +4 -0
- package/FunnelChart/seriesConfig/tooltipPosition.mjs +56 -0
- package/FunnelChart/useFunnelChartProps.d.mts +26 -0
- package/FunnelChart/useFunnelChartProps.js +1 -1
- package/FunnelChart/useFunnelChartProps.mjs +154 -0
- package/Heatmap/FocusedHeatmapCell.mjs +29 -0
- package/Heatmap/Heatmap.d.mts +88 -0
- package/Heatmap/Heatmap.d.ts +1 -1
- package/Heatmap/Heatmap.js +45 -15
- package/Heatmap/Heatmap.mjs +496 -0
- package/Heatmap/Heatmap.plugins.d.mts +5 -0
- package/Heatmap/Heatmap.plugins.d.ts +1 -1
- package/Heatmap/Heatmap.plugins.mjs +4 -0
- package/Heatmap/Heatmap.types.d.mts +19 -0
- package/Heatmap/HeatmapItem.d.mts +56 -0
- package/Heatmap/HeatmapItem.js +3 -1
- package/Heatmap/HeatmapItem.mjs +104 -0
- package/Heatmap/HeatmapPlot.d.mts +11 -0
- package/Heatmap/HeatmapPlot.mjs +39 -0
- package/Heatmap/HeatmapSVGPlot.d.mts +2 -0
- package/Heatmap/HeatmapSVGPlot.js +3 -1
- package/Heatmap/HeatmapSVGPlot.mjs +66 -0
- package/Heatmap/HeatmapTooltip/HeatmapTooltip.classes.d.mts +2 -0
- package/Heatmap/HeatmapTooltip/HeatmapTooltip.d.mts +6 -0
- package/Heatmap/HeatmapTooltip/HeatmapTooltip.js +3 -2
- package/Heatmap/HeatmapTooltip/HeatmapTooltip.mjs +195 -0
- package/Heatmap/HeatmapTooltip/HeatmapTooltip.types.d.mts +26 -0
- package/Heatmap/HeatmapTooltip/HeatmapTooltip.types.d.ts +16 -4
- package/Heatmap/HeatmapTooltip/HeatmapTooltipContent.d.mts +6 -0
- package/Heatmap/HeatmapTooltip/HeatmapTooltipContent.mjs +88 -0
- package/Heatmap/HeatmapTooltip/index.d.mts +3 -0
- package/Heatmap/HeatmapTooltip/index.mjs +3 -0
- package/Heatmap/heatmapClasses.d.mts +22 -0
- package/Heatmap/heatmapClasses.d.ts +8 -2
- package/Heatmap/index.d.mts +9 -0
- package/Heatmap/index.mjs +6 -0
- package/Heatmap/internals/HeatmapCell.d.mts +21 -0
- package/Heatmap/seriesConfig/getItemAtPosition.d.mts +6 -0
- package/Heatmap/seriesConfig/getItemAtPosition.d.ts +2 -2
- package/Heatmap/seriesConfig/highlight.d.mts +10 -0
- package/Heatmap/seriesConfig/highlight.d.ts +10 -0
- package/Heatmap/seriesConfig/highlight.js +52 -0
- package/Heatmap/seriesConfig/highlight.mjs +45 -0
- package/Heatmap/seriesConfig/index.js +4 -1
- package/Heatmap/seriesConfig/index.mjs +27 -0
- package/Heatmap/shouldRegisterPointerInteractionsGlobally.d.mts +2 -0
- package/Heatmap/shouldRegisterPointerInteractionsGlobally.mjs +13 -0
- package/Heatmap/useHeatmapProps.d.mts +24 -0
- package/Heatmap/useHeatmapProps.mjs +151 -0
- package/LineChartPro/LineChartPro.d.mts +32 -0
- package/LineChartPro/LineChartPro.d.ts +1 -1
- package/LineChartPro/LineChartPro.js +47 -15
- package/LineChartPro/LineChartPro.mjs +1627 -0
- package/LineChartPro/LineChartPro.plugins.d.mts +5 -0
- package/LineChartPro/LineChartPro.plugins.d.ts +1 -1
- package/LineChartPro/LineChartPro.plugins.mjs +4 -0
- package/LineChartPro/index.d.mts +2 -0
- package/LineChartPro/index.mjs +2 -0
- package/PieChartPro/PieChartPro.d.mts +22 -0
- package/PieChartPro/PieChartPro.d.ts +1 -1
- package/PieChartPro/PieChartPro.js +29 -13
- package/PieChartPro/PieChartPro.mjs +287 -0
- package/PieChartPro/PieChartPro.plugins.d.mts +4 -0
- package/PieChartPro/PieChartPro.plugins.d.ts +1 -1
- package/PieChartPro/PieChartPro.plugins.mjs +3 -0
- package/PieChartPro/index.d.mts +2 -0
- package/PieChartPro/index.mjs +2 -0
- package/RadarChartPro/RadarChartPro.d.mts +30 -0
- package/RadarChartPro/RadarChartPro.d.ts +1 -1
- package/RadarChartPro/RadarChartPro.js +28 -13
- package/RadarChartPro/RadarChartPro.mjs +304 -0
- package/RadarChartPro/RadarChartPro.plugins.d.mts +4 -0
- package/RadarChartPro/RadarChartPro.plugins.d.ts +1 -1
- package/RadarChartPro/RadarChartPro.plugins.mjs +3 -0
- package/RadarChartPro/index.d.mts +2 -0
- package/RadarChartPro/index.mjs +2 -0
- package/SankeyChart/FocusedSankeyLink.mjs +27 -0
- package/SankeyChart/FocusedSankeyNode.mjs +33 -0
- package/SankeyChart/SankeyChart.d.mts +32 -0
- package/SankeyChart/SankeyChart.d.ts +1 -1
- package/SankeyChart/SankeyChart.js +37 -2
- package/SankeyChart/SankeyChart.mjs +257 -0
- package/SankeyChart/SankeyChart.plugins.d.mts +4 -0
- package/SankeyChart/SankeyChart.plugins.d.ts +2 -3
- package/SankeyChart/SankeyChart.plugins.js +1 -2
- package/SankeyChart/SankeyChart.plugins.mjs +3 -0
- package/SankeyChart/SankeyDataProvider.d.mts +19 -0
- package/SankeyChart/SankeyDataProvider.mjs +27 -0
- package/SankeyChart/SankeyLinkElement.d.mts +27 -0
- package/SankeyChart/SankeyLinkElement.js +2 -4
- package/SankeyChart/SankeyLinkElement.mjs +57 -0
- package/SankeyChart/SankeyLinkLabel.d.mts +12 -0
- package/SankeyChart/SankeyLinkLabel.mjs +62 -0
- package/SankeyChart/SankeyLinkLabelPlot.d.mts +9 -0
- package/SankeyChart/SankeyLinkLabelPlot.js +3 -1
- package/SankeyChart/SankeyLinkLabelPlot.mjs +35 -0
- package/SankeyChart/SankeyLinkPlot.d.mts +17 -0
- package/SankeyChart/SankeyLinkPlot.js +3 -1
- package/SankeyChart/SankeyLinkPlot.mjs +50 -0
- package/SankeyChart/SankeyNodeElement.d.mts +23 -0
- package/SankeyChart/SankeyNodeElement.js +2 -4
- package/SankeyChart/SankeyNodeElement.mjs +63 -0
- package/SankeyChart/SankeyNodeLabel.d.mts +17 -0
- package/SankeyChart/SankeyNodeLabel.d.ts +5 -0
- package/SankeyChart/SankeyNodeLabel.js +8 -2
- package/SankeyChart/SankeyNodeLabel.mjs +58 -0
- package/SankeyChart/SankeyNodeLabelPlot.d.mts +9 -0
- package/SankeyChart/SankeyNodeLabelPlot.js +4 -1
- package/SankeyChart/SankeyNodeLabelPlot.mjs +37 -0
- package/SankeyChart/SankeyNodePlot.d.mts +17 -0
- package/SankeyChart/SankeyNodePlot.js +3 -1
- package/SankeyChart/SankeyNodePlot.mjs +49 -0
- package/SankeyChart/SankeyPlot.d.mts +29 -0
- package/SankeyChart/SankeyPlot.js +3 -2
- package/SankeyChart/SankeyPlot.mjs +83 -0
- package/SankeyChart/SankeyTooltip/SankeyTooltip.classes.d.mts +2 -0
- package/SankeyChart/SankeyTooltip/SankeyTooltip.d.mts +6 -0
- package/SankeyChart/SankeyTooltip/SankeyTooltip.js +6 -5
- package/SankeyChart/SankeyTooltip/SankeyTooltip.mjs +211 -0
- package/SankeyChart/SankeyTooltip/SankeyTooltipContent.d.mts +6 -0
- package/SankeyChart/SankeyTooltip/SankeyTooltipContent.mjs +58 -0
- package/SankeyChart/SankeyTooltip/index.d.mts +3 -0
- package/SankeyChart/SankeyTooltip/index.mjs +3 -0
- package/SankeyChart/calculateSankeyLayout.d.mts +12 -0
- package/SankeyChart/calculateSankeyLayout.js +2 -1
- package/SankeyChart/calculateSankeyLayout.mjs +131 -0
- package/SankeyChart/d3Sankey/align.d.mts +33 -0
- package/SankeyChart/d3Sankey/index.d.mts +4 -0
- package/SankeyChart/d3Sankey/index.mjs +4 -0
- package/SankeyChart/d3Sankey/sankey.d.mts +42 -0
- package/SankeyChart/d3Sankey/sankey.js +5 -3
- package/SankeyChart/d3Sankey/sankey.mjs +453 -0
- package/SankeyChart/d3Sankey/sankeyLinkHorizontal.d.mts +22 -0
- package/SankeyChart/index.d.mts +21 -0
- package/SankeyChart/index.d.ts +5 -1
- package/SankeyChart/index.js +14 -7
- package/SankeyChart/index.mjs +21 -0
- package/SankeyChart/sankey.types.d.mts +300 -0
- package/SankeyChart/sankeyHighlightHooks.d.mts +3 -0
- package/SankeyChart/sankeyHighlightHooks.d.ts +3 -3
- package/SankeyChart/sankeyHighlightHooks.js +6 -7
- package/SankeyChart/sankeyHighlightHooks.mjs +17 -0
- package/SankeyChart/sankeySlots.types.d.mts +18 -0
- package/SankeyChart/sankeySlots.types.d.ts +3 -9
- package/SankeyChart/seriesConfig/createIsFaded.d.mts +3 -0
- package/SankeyChart/seriesConfig/createIsFaded.d.ts +3 -0
- package/SankeyChart/seriesConfig/createIsFaded.js +29 -0
- package/SankeyChart/seriesConfig/createIsFaded.mjs +23 -0
- package/SankeyChart/seriesConfig/createIsHighlighted.d.mts +4 -0
- package/SankeyChart/seriesConfig/createIsHighlighted.d.ts +4 -0
- package/SankeyChart/seriesConfig/createIsHighlighted.js +89 -0
- package/SankeyChart/seriesConfig/createIsHighlighted.mjs +83 -0
- package/SankeyChart/seriesConfig/getSeriesWithDefaultValues.js +2 -1
- package/SankeyChart/seriesConfig/getSeriesWithDefaultValues.mjs +111 -0
- package/SankeyChart/seriesConfig/index.js +5 -1
- package/SankeyChart/seriesConfig/index.mjs +38 -0
- package/SankeyChart/useSankeyChartProps.d.mts +22 -0
- package/SankeyChart/useSankeyChartProps.js +2 -2
- package/SankeyChart/useSankeyChartProps.mjs +71 -0
- package/SankeyChart/utils.d.mts +3 -0
- package/SankeyChart/utils.mjs +14 -0
- package/ScatterChartPro/ScatterChartPro.d.mts +39 -0
- package/ScatterChartPro/ScatterChartPro.d.ts +1 -1
- package/ScatterChartPro/ScatterChartPro.js +47 -15
- package/ScatterChartPro/ScatterChartPro.mjs +1609 -0
- package/ScatterChartPro/ScatterChartPro.plugins.d.mts +5 -0
- package/ScatterChartPro/ScatterChartPro.plugins.d.ts +1 -1
- package/ScatterChartPro/ScatterChartPro.plugins.mjs +4 -0
- package/ScatterChartPro/index.d.mts +2 -0
- package/ScatterChartPro/index.mjs +2 -0
- package/context/ChartProApi.d.mts +29 -0
- package/context/index.d.mts +3 -0
- package/context/index.mjs +5 -0
- package/context/useChartProApiContext.d.mts +9 -0
- package/hooks/index.d.mts +5 -0
- package/hooks/index.mjs +7 -0
- package/hooks/useChartProApiRef.d.mts +23 -0
- package/hooks/useSankeySeries.d.mts +40 -0
- package/hooks/zoom/index.d.mts +1 -0
- package/hooks/zoom/index.mjs +1 -0
- package/hooks/zoom/useIsZoomInteracting.mjs +14 -0
- package/index.d.mts +49 -0
- package/index.d.ts +3 -0
- package/index.js +37 -1
- package/index.mjs +61 -0
- package/internals/ChartsWatermark.d.mts +6 -0
- package/internals/ChartsWatermark.d.ts +6 -0
- package/internals/ChartsWatermark.js +27 -0
- package/internals/ChartsWatermark.mjs +21 -0
- package/internals/index.d.mts +14 -0
- package/internals/index.d.ts +5 -4
- package/internals/index.js +16 -4
- package/internals/index.mjs +9 -0
- package/internals/material/components/BaseMenuItem.d.mts +2 -0
- package/internals/material/components/BasePopper.d.mts +2 -0
- package/internals/material/index.d.mts +6 -0
- package/internals/material/index.mjs +21 -0
- package/internals/plugins/allPlugins.d.mts +9 -0
- package/internals/plugins/allPlugins.d.ts +4 -4
- package/internals/plugins/allPlugins.mjs +7 -0
- package/internals/plugins/useChartProExport/exportImage.d.mts +3 -0
- package/internals/plugins/useChartProExport/exportImage.d.ts +1 -1
- package/internals/plugins/useChartProExport/exportImage.js +5 -4
- package/internals/plugins/useChartProExport/exportImage.mjs +110 -0
- package/internals/plugins/useChartProExport/index.d.mts +2 -0
- package/internals/plugins/useChartProExport/index.mjs +2 -0
- package/internals/plugins/useChartProExport/print.d.mts +7 -0
- package/internals/plugins/useChartProExport/print.mjs +35 -0
- package/internals/plugins/useChartProExport/useChartProExport.d.mts +3 -0
- package/internals/plugins/useChartProExport/useChartProExport.js +2 -2
- package/internals/plugins/useChartProExport/useChartProExport.mjs +69 -0
- package/internals/plugins/useChartProZoom/ZoomInteractionConfig.selectors.d.mts +25 -0
- package/internals/plugins/useChartProZoom/ZoomInteractionConfig.selectors.mjs +6 -0
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.mjs +83 -0
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.mjs +87 -0
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.mjs +100 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.mjs +102 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.mjs +59 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.mjs +70 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.mjs +75 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.d.mts +7 -0
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.js +3 -3
- package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.mjs +91 -0
- package/internals/plugins/useChartProZoom/index.d.mts +3 -0
- package/internals/plugins/useChartProZoom/index.mjs +3 -0
- package/internals/plugins/useChartProZoom/initializeZoomInteractionConfig.d.mts +3 -0
- package/internals/plugins/useChartProZoom/useChartProZoom.d.mts +3 -0
- package/internals/plugins/useChartProZoom/useChartProZoom.mjs +176 -0
- package/internals/plugins/useChartProZoom/useChartProZoom.selectors.d.mts +18 -0
- package/internals/plugins/useChartProZoom/useChartProZoom.types.d.mts +84 -0
- package/internals/slots/chartsBaseSlots.d.mts +10 -0
- package/models/index.d.mts +4 -0
- package/models/index.mjs +6 -0
- package/models/seriesType/index.d.mts +1 -0
- package/models/seriesType/index.mjs +1 -0
- package/package.json +794 -17
- package/plugins/index.d.mts +3 -0
- package/plugins/index.mjs +3 -0
- package/plugins/selectors/useChartHeatmapPosition.selectors.d.mts +4 -0
- package/themeAugmentation/index.d.mts +4 -0
- package/themeAugmentation/overrides.d.mts +8 -0
- package/themeAugmentation/props.d.mts +14 -0
- package/typeOverloads/index.d.mts +1 -0
- package/typeOverloads/index.mjs +1 -0
- package/typeOverloads/modules.d.mts +65 -0
- package/typeOverloads/modules.d.ts +13 -1
- package/ChartZoomSlider/ChartZoomSlider.d.ts +0 -4
- package/ChartZoomSlider/ChartZoomSlider.js +0 -47
- package/ChartZoomSlider/internals/ChartAxisZoomSlider.d.ts +0 -20
- package/ChartZoomSlider/internals/ChartAxisZoomSlider.js +0 -111
- package/ChartZoomSlider/internals/ChartAxisZoomSliderActiveTrack.d.ts +0 -25
- package/ChartZoomSlider/internals/ChartAxisZoomSliderActiveTrack.js +0 -303
- package/ChartZoomSlider/internals/ChartAxisZoomSliderPreview.d.ts +0 -17
- package/ChartZoomSlider/internals/ChartAxisZoomSliderPreview.js +0 -105
- package/ChartZoomSlider/internals/ChartAxisZoomSliderPreviewContent.d.ts +0 -9
- package/ChartZoomSlider/internals/ChartAxisZoomSliderPreviewContent.js +0 -46
- package/ChartZoomSlider/internals/ChartAxisZoomSliderThumb.d.ts +0 -12
- package/ChartZoomSlider/internals/ChartAxisZoomSliderThumb.js +0 -112
- package/ChartZoomSlider/internals/ChartAxisZoomSliderTrack.d.ts +0 -18
- package/ChartZoomSlider/internals/ChartAxisZoomSliderTrack.js +0 -145
- package/ChartZoomSlider/internals/chartAxisZoomSliderThumbClasses.d.ts +0 -17
- package/ChartZoomSlider/internals/chartAxisZoomSliderThumbClasses.js +0 -27
- package/ChartZoomSlider/internals/chartAxisZoomSliderTrackClasses.d.ts +0 -15
- package/ChartZoomSlider/internals/chartAxisZoomSliderTrackClasses.js +0 -31
- package/SankeyChart/plugins/index.d.ts +0 -3
- package/SankeyChart/plugins/index.js +0 -49
- package/SankeyChart/plugins/useSankeyHighlight.d.ts +0 -7
- package/SankeyChart/plugins/useSankeyHighlight.js +0 -72
- package/SankeyChart/plugins/useSankeyHighlight.selectors.d.ts +0 -64
- package/SankeyChart/plugins/useSankeyHighlight.selectors.js +0 -126
- package/SankeyChart/plugins/useSankeyHighlight.types.d.ts +0 -55
- package/SankeyChart/plugins/useSankeyHighlight.types.js +0 -5
- package/esm/BarChartPro/BarChartPro.d.ts +0 -33
- package/esm/BarChartPro/BarChartPro.js +0 -1602
- package/esm/BarChartPro/BarChartPro.plugins.d.ts +0 -5
- package/esm/BarChartPro/BarChartPro.plugins.js +0 -4
- package/esm/BarChartPro/index.d.ts +0 -2
- package/esm/BarChartPro/index.js +0 -2
- package/esm/ChartContainerPro/ChartContainerPro.d.ts +0 -21
- package/esm/ChartContainerPro/ChartContainerPro.js +0 -20
- package/esm/ChartContainerPro/index.d.ts +0 -9
- package/esm/ChartContainerPro/index.js +0 -6
- package/esm/ChartContainerPro/useChartContainerProProps.d.ts +0 -13
- package/esm/ChartContainerPro/useChartContainerProProps.js +0 -14
- package/esm/ChartDataProviderPro/ChartDataProviderPro.d.ts +0 -49
- package/esm/ChartDataProviderPro/ChartDataProviderPro.js +0 -144
- package/esm/ChartDataProviderPro/index.d.ts +0 -2
- package/esm/ChartDataProviderPro/index.js +0 -2
- package/esm/ChartDataProviderPro/useChartDataProviderProProps.d.ts +0 -10
- package/esm/ChartDataProviderPro/useChartDataProviderProProps.js +0 -19
- package/esm/ChartZoomSlider/ChartZoomSlider.d.ts +0 -4
- package/esm/ChartZoomSlider/ChartZoomSlider.js +0 -41
- package/esm/ChartZoomSlider/index.d.ts +0 -3
- package/esm/ChartZoomSlider/index.js +0 -3
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSlider.d.ts +0 -20
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSlider.js +0 -105
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderActiveTrack.d.ts +0 -25
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderActiveTrack.js +0 -296
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderPreview.d.ts +0 -17
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderPreview.js +0 -97
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderPreviewContent.d.ts +0 -9
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderPreviewContent.js +0 -38
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderThumb.d.ts +0 -12
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderThumb.js +0 -105
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderTrack.d.ts +0 -18
- package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderTrack.js +0 -138
- package/esm/ChartZoomSlider/internals/chartAxisZoomSliderThumbClasses.d.ts +0 -17
- package/esm/ChartZoomSlider/internals/chartAxisZoomSliderThumbClasses.js +0 -17
- package/esm/ChartZoomSlider/internals/chartAxisZoomSliderTrackClasses.d.ts +0 -15
- package/esm/ChartZoomSlider/internals/chartAxisZoomSliderTrackClasses.js +0 -21
- package/esm/ChartZoomSlider/internals/previews/AreaPreviewPlot.d.ts +0 -14
- package/esm/ChartZoomSlider/internals/previews/BarPreviewPlot.d.ts +0 -9
- package/esm/ChartZoomSlider/internals/previews/LineAreaPreviewPlot.d.ts +0 -4
- package/esm/ChartZoomSlider/internals/previews/LineAreaPreviewPlot.js +0 -15
- package/esm/ChartZoomSlider/internals/previews/LinePreviewPlot.d.ts +0 -14
- package/esm/ChartZoomSlider/internals/previews/ScatterPreviewPlot.d.ts +0 -15
- package/esm/ChartZoomSlider/internals/seriesPreviewPlotMap.d.ts +0 -3
- package/esm/ChartZoomSlider/internals/seriesPreviewPlotMap.js +0 -4
- package/esm/ChartsContainerPro/ChartsContainerPro.d.ts +0 -37
- package/esm/ChartsContainerPro/ChartsContainerPro.js +0 -181
- package/esm/ChartsContainerPro/index.d.ts +0 -9
- package/esm/ChartsContainerPro/index.js +0 -6
- package/esm/ChartsContainerPro/useChartsContainerProProps.d.ts +0 -9
- package/esm/ChartsContainerPro/useChartsContainerProProps.js +0 -37
- package/esm/ChartsToolbarPro/ChartsToolbarImageExportTrigger.d.ts +0 -27
- package/esm/ChartsToolbarPro/ChartsToolbarImageExportTrigger.js +0 -73
- package/esm/ChartsToolbarPro/ChartsToolbarPrintExportTrigger.d.ts +0 -33
- package/esm/ChartsToolbarPro/ChartsToolbarPrintExportTrigger.js +0 -71
- package/esm/ChartsToolbarPro/ChartsToolbarPro.d.ts +0 -19
- package/esm/ChartsToolbarPro/ChartsToolbarPro.js +0 -166
- package/esm/ChartsToolbarPro/ChartsToolbarZoomInTrigger.js +0 -51
- package/esm/ChartsToolbarPro/ChartsToolbarZoomOutTrigger.js +0 -51
- package/esm/ChartsToolbarPro/Toolbar.types.d.ts +0 -15
- package/esm/ChartsToolbarPro/index.d.ts +0 -5
- package/esm/ChartsToolbarPro/index.js +0 -5
- package/esm/ChartsToolbarPro/internals/ChartsMenu.d.ts +0 -14
- package/esm/ChartsToolbarPro/internals/ChartsToolbarDivider.d.ts +0 -5
- package/esm/FunnelChart/FocusedFunnelSection.js +0 -64
- package/esm/FunnelChart/FunnelChart.d.ts +0 -39
- package/esm/FunnelChart/FunnelChart.js +0 -346
- package/esm/FunnelChart/FunnelChart.plugins.d.ts +0 -5
- package/esm/FunnelChart/FunnelChart.plugins.js +0 -4
- package/esm/FunnelChart/FunnelPlot.d.ts +0 -16
- package/esm/FunnelChart/FunnelPlot.js +0 -182
- package/esm/FunnelChart/FunnelSection.d.ts +0 -16
- package/esm/FunnelChart/FunnelSection.js +0 -67
- package/esm/FunnelChart/FunnelSectionLabel.d.ts +0 -21
- package/esm/FunnelChart/FunnelSectionLabel.js +0 -46
- package/esm/FunnelChart/coordinateMapper.d.ts +0 -3
- package/esm/FunnelChart/curves/borderRadiusPolygon.d.ts +0 -8
- package/esm/FunnelChart/curves/bump.d.ts +0 -31
- package/esm/FunnelChart/curves/getFunnelCurve.d.ts +0 -8
- package/esm/FunnelChart/curves/getFunnelCurve.js +0 -26
- package/esm/FunnelChart/curves/index.d.ts +0 -2
- package/esm/FunnelChart/curves/index.js +0 -2
- package/esm/FunnelChart/curves/linear.d.ts +0 -40
- package/esm/FunnelChart/curves/linear.js +0 -164
- package/esm/FunnelChart/curves/pyramid.d.ts +0 -36
- package/esm/FunnelChart/curves/pyramid.js +0 -146
- package/esm/FunnelChart/curves/step-pyramid.d.ts +0 -39
- package/esm/FunnelChart/curves/step-pyramid.js +0 -174
- package/esm/FunnelChart/curves/step.d.ts +0 -36
- package/esm/FunnelChart/curves/step.js +0 -85
- package/esm/FunnelChart/funnel.types.d.ts +0 -158
- package/esm/FunnelChart/funnelAxisPlugin/computeAxisValue.js +0 -112
- package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.d.ts +0 -3
- package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.js +0 -178
- package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.types.d.ts +0 -28
- package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxisRendering.selectors.d.ts +0 -18
- package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxisRendering.selectors.js +0 -21
- package/esm/FunnelChart/funnelPlotSlots.types.d.ts +0 -31
- package/esm/FunnelChart/funnelSectionClasses.d.ts +0 -24
- package/esm/FunnelChart/funnelSlots.types.d.ts +0 -26
- package/esm/FunnelChart/get2DExtrema.d.ts +0 -3
- package/esm/FunnelChart/index.d.ts +0 -18
- package/esm/FunnelChart/index.js +0 -17
- package/esm/FunnelChart/labelUtils.d.ts +0 -37
- package/esm/FunnelChart/seriesConfig/index.js +0 -22
- package/esm/FunnelChart/seriesConfig/keyboardFocusHandler.js +0 -17
- package/esm/FunnelChart/seriesConfig/tooltipPosition.js +0 -56
- package/esm/FunnelChart/useFunnelChartProps.d.ts +0 -26
- package/esm/FunnelChart/useFunnelChartProps.js +0 -154
- package/esm/Heatmap/FocusedHeatmapCell.js +0 -29
- package/esm/Heatmap/Heatmap.d.ts +0 -88
- package/esm/Heatmap/Heatmap.js +0 -466
- package/esm/Heatmap/Heatmap.plugins.d.ts +0 -5
- package/esm/Heatmap/Heatmap.plugins.js +0 -4
- package/esm/Heatmap/Heatmap.types.d.ts +0 -19
- package/esm/Heatmap/HeatmapItem.d.ts +0 -56
- package/esm/Heatmap/HeatmapItem.js +0 -102
- package/esm/Heatmap/HeatmapPlot.d.ts +0 -11
- package/esm/Heatmap/HeatmapPlot.js +0 -39
- package/esm/Heatmap/HeatmapSVGPlot.d.ts +0 -2
- package/esm/Heatmap/HeatmapSVGPlot.js +0 -64
- package/esm/Heatmap/HeatmapTooltip/HeatmapTooltip.classes.d.ts +0 -2
- package/esm/Heatmap/HeatmapTooltip/HeatmapTooltip.d.ts +0 -6
- package/esm/Heatmap/HeatmapTooltip/HeatmapTooltip.js +0 -194
- package/esm/Heatmap/HeatmapTooltip/HeatmapTooltip.types.d.ts +0 -14
- package/esm/Heatmap/HeatmapTooltip/HeatmapTooltipContent.d.ts +0 -6
- package/esm/Heatmap/HeatmapTooltip/HeatmapTooltipContent.js +0 -88
- package/esm/Heatmap/HeatmapTooltip/index.d.ts +0 -3
- package/esm/Heatmap/HeatmapTooltip/index.js +0 -3
- package/esm/Heatmap/heatmapClasses.d.ts +0 -16
- package/esm/Heatmap/index.d.ts +0 -9
- package/esm/Heatmap/index.js +0 -6
- package/esm/Heatmap/internals/HeatmapCell.d.ts +0 -21
- package/esm/Heatmap/seriesConfig/getItemAtPosition.d.ts +0 -6
- package/esm/Heatmap/seriesConfig/index.js +0 -24
- package/esm/Heatmap/shouldRegisterPointerInteractionsGlobally.d.ts +0 -2
- package/esm/Heatmap/shouldRegisterPointerInteractionsGlobally.js +0 -13
- package/esm/Heatmap/useHeatmapProps.d.ts +0 -24
- package/esm/Heatmap/useHeatmapProps.js +0 -151
- package/esm/LineChartPro/LineChartPro.d.ts +0 -32
- package/esm/LineChartPro/LineChartPro.js +0 -1595
- package/esm/LineChartPro/LineChartPro.plugins.d.ts +0 -5
- package/esm/LineChartPro/LineChartPro.plugins.js +0 -4
- package/esm/LineChartPro/index.d.ts +0 -2
- package/esm/LineChartPro/index.js +0 -2
- package/esm/PieChartPro/PieChartPro.d.ts +0 -22
- package/esm/PieChartPro/PieChartPro.js +0 -271
- package/esm/PieChartPro/PieChartPro.plugins.d.ts +0 -4
- package/esm/PieChartPro/PieChartPro.plugins.js +0 -3
- package/esm/PieChartPro/index.d.ts +0 -2
- package/esm/PieChartPro/index.js +0 -2
- package/esm/RadarChartPro/RadarChartPro.d.ts +0 -30
- package/esm/RadarChartPro/RadarChartPro.js +0 -289
- package/esm/RadarChartPro/RadarChartPro.plugins.d.ts +0 -4
- package/esm/RadarChartPro/RadarChartPro.plugins.js +0 -3
- package/esm/RadarChartPro/index.d.ts +0 -2
- package/esm/RadarChartPro/index.js +0 -2
- package/esm/SankeyChart/FocusedSankeyLink.js +0 -27
- package/esm/SankeyChart/FocusedSankeyNode.js +0 -33
- package/esm/SankeyChart/SankeyChart.d.ts +0 -32
- package/esm/SankeyChart/SankeyChart.js +0 -222
- package/esm/SankeyChart/SankeyChart.plugins.d.ts +0 -5
- package/esm/SankeyChart/SankeyChart.plugins.js +0 -4
- package/esm/SankeyChart/SankeyDataProvider.d.ts +0 -19
- package/esm/SankeyChart/SankeyDataProvider.js +0 -27
- package/esm/SankeyChart/SankeyLinkElement.d.ts +0 -27
- package/esm/SankeyChart/SankeyLinkElement.js +0 -59
- package/esm/SankeyChart/SankeyLinkLabel.d.ts +0 -12
- package/esm/SankeyChart/SankeyLinkLabel.js +0 -62
- package/esm/SankeyChart/SankeyLinkLabelPlot.d.ts +0 -9
- package/esm/SankeyChart/SankeyLinkLabelPlot.js +0 -34
- package/esm/SankeyChart/SankeyLinkPlot.d.ts +0 -17
- package/esm/SankeyChart/SankeyLinkPlot.js +0 -49
- package/esm/SankeyChart/SankeyNodeElement.d.ts +0 -23
- package/esm/SankeyChart/SankeyNodeElement.js +0 -65
- package/esm/SankeyChart/SankeyNodeLabel.d.ts +0 -12
- package/esm/SankeyChart/SankeyNodeLabel.js +0 -52
- package/esm/SankeyChart/SankeyNodeLabelPlot.d.ts +0 -9
- package/esm/SankeyChart/SankeyNodeLabelPlot.js +0 -35
- package/esm/SankeyChart/SankeyNodePlot.d.ts +0 -17
- package/esm/SankeyChart/SankeyNodePlot.js +0 -48
- package/esm/SankeyChart/SankeyPlot.d.ts +0 -29
- package/esm/SankeyChart/SankeyPlot.js +0 -82
- package/esm/SankeyChart/SankeyTooltip/SankeyTooltip.classes.d.ts +0 -2
- package/esm/SankeyChart/SankeyTooltip/SankeyTooltip.d.ts +0 -6
- package/esm/SankeyChart/SankeyTooltip/SankeyTooltip.js +0 -210
- package/esm/SankeyChart/SankeyTooltip/SankeyTooltipContent.d.ts +0 -6
- package/esm/SankeyChart/SankeyTooltip/SankeyTooltipContent.js +0 -58
- package/esm/SankeyChart/SankeyTooltip/index.d.ts +0 -3
- package/esm/SankeyChart/SankeyTooltip/index.js +0 -3
- package/esm/SankeyChart/calculateSankeyLayout.d.ts +0 -12
- package/esm/SankeyChart/calculateSankeyLayout.js +0 -130
- package/esm/SankeyChart/d3Sankey/align.d.ts +0 -33
- package/esm/SankeyChart/d3Sankey/index.d.ts +0 -4
- package/esm/SankeyChart/d3Sankey/index.js +0 -4
- package/esm/SankeyChart/d3Sankey/sankey.d.ts +0 -42
- package/esm/SankeyChart/d3Sankey/sankey.js +0 -452
- package/esm/SankeyChart/d3Sankey/sankeyLinkHorizontal.d.ts +0 -22
- package/esm/SankeyChart/index.d.ts +0 -17
- package/esm/SankeyChart/index.js +0 -15
- package/esm/SankeyChart/plugins/index.d.ts +0 -3
- package/esm/SankeyChart/plugins/index.js +0 -3
- package/esm/SankeyChart/plugins/useSankeyHighlight.d.ts +0 -7
- package/esm/SankeyChart/plugins/useSankeyHighlight.js +0 -64
- package/esm/SankeyChart/plugins/useSankeyHighlight.selectors.d.ts +0 -64
- package/esm/SankeyChart/plugins/useSankeyHighlight.selectors.js +0 -120
- package/esm/SankeyChart/plugins/useSankeyHighlight.types.d.ts +0 -55
- package/esm/SankeyChart/sankey.types.d.ts +0 -300
- package/esm/SankeyChart/sankeyHighlightHooks.d.ts +0 -3
- package/esm/SankeyChart/sankeyHighlightHooks.js +0 -18
- package/esm/SankeyChart/sankeySlots.types.d.ts +0 -24
- package/esm/SankeyChart/seriesConfig/getSeriesWithDefaultValues.js +0 -110
- package/esm/SankeyChart/seriesConfig/index.js +0 -34
- package/esm/SankeyChart/useSankeyChartProps.d.ts +0 -22
- package/esm/SankeyChart/useSankeyChartProps.js +0 -71
- package/esm/SankeyChart/utils.d.ts +0 -3
- package/esm/SankeyChart/utils.js +0 -14
- package/esm/ScatterChartPro/ScatterChartPro.d.ts +0 -39
- package/esm/ScatterChartPro/ScatterChartPro.js +0 -1577
- package/esm/ScatterChartPro/ScatterChartPro.plugins.d.ts +0 -5
- package/esm/ScatterChartPro/ScatterChartPro.plugins.js +0 -4
- package/esm/ScatterChartPro/index.d.ts +0 -2
- package/esm/ScatterChartPro/index.js +0 -2
- package/esm/context/ChartProApi.d.ts +0 -29
- package/esm/context/index.d.ts +0 -3
- package/esm/context/index.js +0 -5
- package/esm/context/useChartProApiContext.d.ts +0 -9
- package/esm/hooks/index.d.ts +0 -5
- package/esm/hooks/index.js +0 -7
- package/esm/hooks/useChartProApiRef.d.ts +0 -23
- package/esm/hooks/useSankeySeries.d.ts +0 -40
- package/esm/hooks/zoom/index.d.ts +0 -1
- package/esm/hooks/zoom/index.js +0 -1
- package/esm/hooks/zoom/useIsZoomInteracting.js +0 -14
- package/esm/index.d.ts +0 -46
- package/esm/index.js +0 -58
- package/esm/internals/index.d.ts +0 -13
- package/esm/internals/index.js +0 -8
- package/esm/internals/material/components/BaseMenuItem.d.ts +0 -2
- package/esm/internals/material/components/BasePopper.d.ts +0 -2
- package/esm/internals/material/index.d.ts +0 -6
- package/esm/internals/material/index.js +0 -21
- package/esm/internals/plugins/allPlugins.d.ts +0 -9
- package/esm/internals/plugins/allPlugins.js +0 -7
- package/esm/internals/plugins/useChartProExport/exportImage.d.ts +0 -3
- package/esm/internals/plugins/useChartProExport/exportImage.js +0 -109
- package/esm/internals/plugins/useChartProExport/index.d.ts +0 -2
- package/esm/internals/plugins/useChartProExport/index.js +0 -2
- package/esm/internals/plugins/useChartProExport/print.d.ts +0 -7
- package/esm/internals/plugins/useChartProExport/print.js +0 -35
- package/esm/internals/plugins/useChartProExport/useChartProExport.d.ts +0 -3
- package/esm/internals/plugins/useChartProExport/useChartProExport.js +0 -69
- package/esm/internals/plugins/useChartProZoom/ZoomInteractionConfig.selectors.d.ts +0 -25
- package/esm/internals/plugins/useChartProZoom/ZoomInteractionConfig.selectors.js +0 -6
- package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.js +0 -83
- package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.js +0 -87
- package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.js +0 -100
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.js +0 -102
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.js +0 -59
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.js +0 -70
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.js +0 -75
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.d.ts +0 -7
- package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.js +0 -91
- package/esm/internals/plugins/useChartProZoom/index.d.ts +0 -3
- package/esm/internals/plugins/useChartProZoom/index.js +0 -3
- package/esm/internals/plugins/useChartProZoom/initializeZoomInteractionConfig.d.ts +0 -3
- package/esm/internals/plugins/useChartProZoom/useChartProZoom.d.ts +0 -3
- package/esm/internals/plugins/useChartProZoom/useChartProZoom.js +0 -176
- package/esm/internals/plugins/useChartProZoom/useChartProZoom.selectors.d.ts +0 -18
- package/esm/internals/plugins/useChartProZoom/useChartProZoom.types.d.ts +0 -84
- package/esm/internals/slots/chartsBaseSlots.d.ts +0 -10
- package/esm/models/index.d.ts +0 -4
- package/esm/models/index.js +0 -6
- package/esm/models/seriesType/index.d.ts +0 -1
- package/esm/models/seriesType/index.js +0 -1
- package/esm/package.json +0 -1
- package/esm/plugins/index.d.ts +0 -3
- package/esm/plugins/index.js +0 -3
- package/esm/plugins/selectors/useChartHeatmapPosition.selectors.d.ts +0 -4
- package/esm/themeAugmentation/index.d.ts +0 -4
- package/esm/themeAugmentation/overrides.d.ts +0 -8
- package/esm/themeAugmentation/props.d.ts +0 -14
- package/esm/typeOverloads/index.d.ts +0 -1
- package/esm/typeOverloads/index.js +0 -1
- package/esm/typeOverloads/modules.d.ts +0 -53
- package/esm/typeOverloads/modules.js +0 -1
- /package/{esm/BarChart/index.d.ts → BarChart/index.d.mts} +0 -0
- /package/{esm/BarChart/index.js → BarChart/index.mjs} +0 -0
- /package/{esm/ChartContainer/index.d.ts → ChartContainer/index.d.mts} +0 -0
- /package/{esm/ChartContainer/index.js → ChartContainer/index.mjs} +0 -0
- /package/{esm/ChartDataProvider/index.d.ts → ChartDataProvider/index.d.mts} +0 -0
- /package/{esm/ChartDataProvider/index.js → ChartDataProvider/index.mjs} +0 -0
- /package/{esm/ChartsAxis/index.d.ts → ChartsAxis/index.d.mts} +0 -0
- /package/{esm/ChartsAxis/index.js → ChartsAxis/index.mjs} +0 -0
- /package/{esm/ChartsAxisHighlight/index.d.ts → ChartsAxisHighlight/index.d.mts} +0 -0
- /package/{esm/ChartsAxisHighlight/index.js → ChartsAxisHighlight/index.mjs} +0 -0
- /package/{esm/ChartsBrushOverlay/index.d.ts → ChartsBrushOverlay/index.d.mts} +0 -0
- /package/{esm/ChartsBrushOverlay/index.js → ChartsBrushOverlay/index.mjs} +0 -0
- /package/{esm/ChartsClipPath/index.d.ts → ChartsClipPath/index.d.mts} +0 -0
- /package/{esm/ChartsClipPath/index.js → ChartsClipPath/index.mjs} +0 -0
- /package/{esm/ChartsContainer/index.d.ts → ChartsContainer/index.d.mts} +0 -0
- /package/{esm/ChartsContainer/index.js → ChartsContainer/index.mjs} +0 -0
- /package/{esm/ChartsGrid/index.d.ts → ChartsGrid/index.d.mts} +0 -0
- /package/{esm/ChartsGrid/index.js → ChartsGrid/index.mjs} +0 -0
- /package/{esm/ChartsLabel/index.d.ts → ChartsLabel/index.d.mts} +0 -0
- /package/{esm/ChartsLabel/index.js → ChartsLabel/index.mjs} +0 -0
- /package/{esm/ChartsLegend/index.d.ts → ChartsLegend/index.d.mts} +0 -0
- /package/{esm/ChartsLegend/index.js → ChartsLegend/index.mjs} +0 -0
- /package/{esm/ChartsLocalizationProvider/index.d.ts → ChartsLocalizationProvider/index.d.mts} +0 -0
- /package/{esm/ChartsLocalizationProvider/index.js → ChartsLocalizationProvider/index.mjs} +0 -0
- /package/{esm/ChartsOverlay/index.d.ts → ChartsOverlay/index.d.mts} +0 -0
- /package/{esm/ChartsOverlay/index.js → ChartsOverlay/index.mjs} +0 -0
- /package/{esm/ChartsReferenceLine/index.d.ts → ChartsReferenceLine/index.d.mts} +0 -0
- /package/{esm/ChartsReferenceLine/index.js → ChartsReferenceLine/index.mjs} +0 -0
- /package/{esm/ChartsSurface/index.d.ts → ChartsSurface/index.d.mts} +0 -0
- /package/{esm/ChartsSurface/index.js → ChartsSurface/index.mjs} +0 -0
- /package/{esm/ChartsText/index.d.ts → ChartsText/index.d.mts} +0 -0
- /package/{esm/ChartsText/index.js → ChartsText/index.mjs} +0 -0
- /package/{esm/ChartsToolbarPro/ChartsToolbarZoomInTrigger.d.ts → ChartsToolbarPro/ChartsToolbarZoomInTrigger.d.mts} +0 -0
- /package/{esm/ChartsToolbarPro/ChartsToolbarZoomOutTrigger.d.ts → ChartsToolbarPro/ChartsToolbarZoomOutTrigger.d.mts} +0 -0
- /package/{esm/ChartZoomSlider/internals/previews/PreviewPlot.types.js → ChartsToolbarPro/Toolbar.types.mjs} +0 -0
- /package/{esm/ChartsToolbarPro/internals/ChartsMenu.js → ChartsToolbarPro/internals/ChartsMenu.mjs} +0 -0
- /package/{esm/ChartsToolbarPro/internals/ChartsToolbarDivider.js → ChartsToolbarPro/internals/ChartsToolbarDivider.mjs} +0 -0
- /package/{esm/ChartsTooltip/index.d.ts → ChartsTooltip/index.d.mts} +0 -0
- /package/{esm/ChartsTooltip/index.js → ChartsTooltip/index.mjs} +0 -0
- /package/{esm/ChartsWrapper/index.d.ts → ChartsWrapper/index.d.mts} +0 -0
- /package/{esm/ChartsWrapper/index.js → ChartsWrapper/index.mjs} +0 -0
- /package/{esm/ChartsXAxis/index.d.ts → ChartsXAxis/index.d.mts} +0 -0
- /package/{esm/ChartsXAxis/index.js → ChartsXAxis/index.mjs} +0 -0
- /package/{esm/ChartsYAxis/index.d.ts → ChartsYAxis/index.d.mts} +0 -0
- /package/{esm/ChartsYAxis/index.js → ChartsYAxis/index.mjs} +0 -0
- /package/{ChartZoomSlider/internals/ChartsTooltipZoomSliderValue.d.ts → ChartsZoomSlider/internals/ChartsTooltipZoomSliderValue.d.mts} +0 -0
- /package/{esm/ChartZoomSlider → ChartsZoomSlider}/internals/ChartsTooltipZoomSliderValue.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/ChartsTooltipZoomSliderValue.js +0 -0
- /package/{esm/ChartZoomSlider/internals/ChartsTooltipZoomSliderValue.js → ChartsZoomSlider/internals/ChartsTooltipZoomSliderValue.mjs} +0 -0
- /package/{ChartZoomSlider/internals/constants.d.ts → ChartsZoomSlider/internals/constants.d.mts} +0 -0
- /package/{esm/ChartZoomSlider → ChartsZoomSlider}/internals/constants.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/constants.js +0 -0
- /package/{esm/ChartZoomSlider/internals/constants.js → ChartsZoomSlider/internals/constants.mjs} +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/AreaPreviewPlot.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/AreaPreviewPlot.js +0 -0
- /package/{esm/ChartZoomSlider/internals/previews/AreaPreviewPlot.js → ChartsZoomSlider/internals/previews/AreaPreviewPlot.mjs} +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/BarPreviewPlot.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/BarPreviewPlot.js +0 -0
- /package/{esm/ChartZoomSlider/internals/previews/BarPreviewPlot.js → ChartsZoomSlider/internals/previews/BarPreviewPlot.mjs} +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/LineAreaPreviewPlot.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/LineAreaPreviewPlot.js +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/LinePreviewPlot.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/LinePreviewPlot.js +0 -0
- /package/{esm/ChartZoomSlider/internals/previews/LinePreviewPlot.js → ChartsZoomSlider/internals/previews/LinePreviewPlot.mjs} +0 -0
- /package/{ChartZoomSlider/internals/previews/PreviewPlot.types.d.ts → ChartsZoomSlider/internals/previews/PreviewPlot.types.d.mts} +0 -0
- /package/{esm/ChartZoomSlider → ChartsZoomSlider}/internals/previews/PreviewPlot.types.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/PreviewPlot.types.js +0 -0
- /package/{esm/ChartsToolbarPro/Toolbar.types.js → ChartsZoomSlider/internals/previews/PreviewPlot.types.mjs} +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/ScatterPreviewPlot.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/previews/ScatterPreviewPlot.js +0 -0
- /package/{esm/ChartZoomSlider/internals/previews/ScatterPreviewPlot.js → ChartsZoomSlider/internals/previews/ScatterPreviewPlot.mjs} +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/seriesPreviewPlotMap.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/seriesPreviewPlotMap.js +0 -0
- /package/{ChartZoomSlider/internals/zoom-utils.d.ts → ChartsZoomSlider/internals/zoom-utils.d.mts} +0 -0
- /package/{esm/ChartZoomSlider → ChartsZoomSlider}/internals/zoom-utils.d.ts +0 -0
- /package/{ChartZoomSlider → ChartsZoomSlider}/internals/zoom-utils.js +0 -0
- /package/{esm/ChartZoomSlider/internals/zoom-utils.js → ChartsZoomSlider/internals/zoom-utils.mjs} +0 -0
- /package/{esm/FunnelChart/FocusedFunnelSection.d.ts → FunnelChart/FocusedFunnelSection.d.mts} +0 -0
- /package/{esm/FunnelChart/categoryAxis.types.d.ts → FunnelChart/categoryAxis.types.d.mts} +0 -0
- /package/{esm/FunnelChart/categoryAxis.types.js → FunnelChart/categoryAxis.types.mjs} +0 -0
- /package/{esm/FunnelChart/coordinateMapper.js → FunnelChart/coordinateMapper.mjs} +0 -0
- /package/{esm/FunnelChart/curves/borderRadiusPolygon.js → FunnelChart/curves/borderRadiusPolygon.mjs} +0 -0
- /package/{esm/FunnelChart/curves/bump.js → FunnelChart/curves/bump.mjs} +0 -0
- /package/{esm/FunnelChart/curves/curve.types.d.ts → FunnelChart/curves/curve.types.d.mts} +0 -0
- /package/{esm/FunnelChart/curves/curve.types.js → FunnelChart/curves/curve.types.mjs} +0 -0
- /package/{esm/FunnelChart/curves/utils.d.ts → FunnelChart/curves/utils.d.mts} +0 -0
- /package/{esm/FunnelChart/curves/utils.js → FunnelChart/curves/utils.mjs} +0 -0
- /package/{esm/FunnelChart/funnel.types.js → FunnelChart/funnel.types.mjs} +0 -0
- /package/{esm/FunnelChart/funnelAxisPlugin/computeAxisValue.d.ts → FunnelChart/funnelAxisPlugin/computeAxisValue.d.mts} +0 -0
- /package/{esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.types.js → FunnelChart/funnelAxisPlugin/useChartFunnelAxis.types.mjs} +0 -0
- /package/{esm/FunnelChart/funnelPlotSlots.types.js → FunnelChart/funnelPlotSlots.types.mjs} +0 -0
- /package/{esm/FunnelChart/funnelSectionClasses.js → FunnelChart/funnelSectionClasses.mjs} +0 -0
- /package/{esm/FunnelChart/funnelSlots.types.js → FunnelChart/funnelSlots.types.mjs} +0 -0
- /package/{esm/FunnelChart/get2DExtrema.js → FunnelChart/get2DExtrema.mjs} +0 -0
- /package/{esm/FunnelChart/labelUtils.js → FunnelChart/labelUtils.mjs} +0 -0
- /package/{esm/FunnelChart/seriesConfig/extremums.d.ts → FunnelChart/seriesConfig/extremums.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/extremums.js → FunnelChart/seriesConfig/extremums.mjs} +0 -0
- /package/{esm/FunnelChart/seriesConfig/getColor.d.ts → FunnelChart/seriesConfig/getColor.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/getColor.js → FunnelChart/seriesConfig/getColor.mjs} +0 -0
- /package/{esm/FunnelChart/seriesConfig/getSeriesWithDefaultValues.d.ts → FunnelChart/seriesConfig/getSeriesWithDefaultValues.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/getSeriesWithDefaultValues.js → FunnelChart/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
- /package/{esm/FunnelChart/seriesConfig/index.d.ts → FunnelChart/seriesConfig/index.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/keyboardFocusHandler.d.ts → FunnelChart/seriesConfig/keyboardFocusHandler.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/legend.d.ts → FunnelChart/seriesConfig/legend.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/legend.js → FunnelChart/seriesConfig/legend.mjs} +0 -0
- /package/{esm/FunnelChart/seriesConfig/seriesProcessor.d.ts → FunnelChart/seriesConfig/seriesProcessor.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/seriesProcessor.js → FunnelChart/seriesConfig/seriesProcessor.mjs} +0 -0
- /package/{esm/FunnelChart/seriesConfig/tooltip.d.ts → FunnelChart/seriesConfig/tooltip.d.mts} +0 -0
- /package/{esm/FunnelChart/seriesConfig/tooltip.js → FunnelChart/seriesConfig/tooltip.mjs} +0 -0
- /package/{esm/FunnelChart/seriesConfig/tooltipPosition.d.ts → FunnelChart/seriesConfig/tooltipPosition.d.mts} +0 -0
- /package/{esm/Gauge/index.d.ts → Gauge/index.d.mts} +0 -0
- /package/{esm/Gauge/index.js → Gauge/index.mjs} +0 -0
- /package/{esm/Heatmap/FocusedHeatmapCell.d.ts → Heatmap/FocusedHeatmapCell.d.mts} +0 -0
- /package/{esm/Heatmap/Heatmap.types.js → Heatmap/Heatmap.types.mjs} +0 -0
- /package/{esm/Heatmap/HeatmapTooltip/HeatmapTooltip.classes.js → Heatmap/HeatmapTooltip/HeatmapTooltip.classes.mjs} +0 -0
- /package/{esm/Heatmap/HeatmapTooltip/HeatmapTooltip.types.js → Heatmap/HeatmapTooltip/HeatmapTooltip.types.mjs} +0 -0
- /package/{esm/Heatmap/HeatmapTooltip/HeatmapTooltipAxesValue.d.ts → Heatmap/HeatmapTooltip/HeatmapTooltipAxesValue.d.mts} +0 -0
- /package/{esm/Heatmap/HeatmapTooltip/HeatmapTooltipAxesValue.js → Heatmap/HeatmapTooltip/HeatmapTooltipAxesValue.mjs} +0 -0
- /package/{esm/Heatmap/heatmapClasses.js → Heatmap/heatmapClasses.mjs} +0 -0
- /package/{esm/Heatmap/internals/HeatmapCell.js → Heatmap/internals/HeatmapCell.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/extremums.d.ts → Heatmap/seriesConfig/extremums.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/extremums.js → Heatmap/seriesConfig/extremums.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/getColor.d.ts → Heatmap/seriesConfig/getColor.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/getColor.js → Heatmap/seriesConfig/getColor.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/getItemAtPosition.js → Heatmap/seriesConfig/getItemAtPosition.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/getSeriesWithDefaultValues.d.ts → Heatmap/seriesConfig/getSeriesWithDefaultValues.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/getSeriesWithDefaultValues.js → Heatmap/seriesConfig/getSeriesWithDefaultValues.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/index.d.ts → Heatmap/seriesConfig/index.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/keyboardFocusHandler.d.ts → Heatmap/seriesConfig/keyboardFocusHandler.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/keyboardFocusHandler.js → Heatmap/seriesConfig/keyboardFocusHandler.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/seriesProcessor.d.ts → Heatmap/seriesConfig/seriesProcessor.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/seriesProcessor.js → Heatmap/seriesConfig/seriesProcessor.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/tooltip.d.ts → Heatmap/seriesConfig/tooltip.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/tooltip.js → Heatmap/seriesConfig/tooltip.mjs} +0 -0
- /package/{esm/Heatmap/seriesConfig/tooltipPosition.d.ts → Heatmap/seriesConfig/tooltipPosition.d.mts} +0 -0
- /package/{esm/Heatmap/seriesConfig/tooltipPosition.js → Heatmap/seriesConfig/tooltipPosition.mjs} +0 -0
- /package/{esm/LineChart/index.d.ts → LineChart/index.d.mts} +0 -0
- /package/{esm/LineChart/index.js → LineChart/index.mjs} +0 -0
- /package/{esm/PieChart/index.d.ts → PieChart/index.d.mts} +0 -0
- /package/{esm/PieChart/index.js → PieChart/index.mjs} +0 -0
- /package/{esm/RadarChart/index.d.ts → RadarChart/index.d.mts} +0 -0
- /package/{esm/RadarChart/index.js → RadarChart/index.mjs} +0 -0
- /package/{esm/SankeyChart/FocusedSankeyLink.d.ts → SankeyChart/FocusedSankeyLink.d.mts} +0 -0
- /package/{esm/SankeyChart/FocusedSankeyNode.d.ts → SankeyChart/FocusedSankeyNode.d.mts} +0 -0
- /package/{esm/SankeyChart/SankeyTooltip/SankeyTooltip.classes.js → SankeyChart/SankeyTooltip/SankeyTooltip.classes.mjs} +0 -0
- /package/{esm/SankeyChart/SankeyTooltip/SankeyTooltip.types.d.ts → SankeyChart/SankeyTooltip/SankeyTooltip.types.d.mts} +0 -0
- /package/{esm/SankeyChart/SankeyTooltip/SankeyTooltip.types.js → SankeyChart/SankeyTooltip/SankeyTooltip.types.mjs} +0 -0
- /package/{esm/SankeyChart/d3Sankey/align.js → SankeyChart/d3Sankey/align.mjs} +0 -0
- /package/{esm/SankeyChart/d3Sankey/sankey.types.d.ts → SankeyChart/d3Sankey/sankey.types.d.mts} +0 -0
- /package/{esm/SankeyChart/d3Sankey/sankey.types.js → SankeyChart/d3Sankey/sankey.types.mjs} +0 -0
- /package/{esm/SankeyChart/d3Sankey/sankeyLinkHorizontal.js → SankeyChart/d3Sankey/sankeyLinkHorizontal.mjs} +0 -0
- /package/{esm/SankeyChart/sankey.highlight.types.d.ts → SankeyChart/sankey.highlight.types.d.mts} +0 -0
- /package/{esm/SankeyChart/sankey.highlight.types.js → SankeyChart/sankey.highlight.types.mjs} +0 -0
- /package/{esm/SankeyChart/sankey.types.js → SankeyChart/sankey.types.mjs} +0 -0
- /package/{esm/SankeyChart/sankeyClasses.d.ts → SankeyChart/sankeyClasses.d.mts} +0 -0
- /package/{esm/SankeyChart/sankeyClasses.js → SankeyChart/sankeyClasses.mjs} +0 -0
- /package/{esm/SankeyChart/plugins/useSankeyHighlight.types.js → SankeyChart/sankeySlots.types.mjs} +0 -0
- /package/{esm/SankeyChart/seriesConfig/getSeriesWithDefaultValues.d.ts → SankeyChart/seriesConfig/getSeriesWithDefaultValues.d.mts} +0 -0
- /package/{esm/SankeyChart/seriesConfig/identifierCleaner.d.ts → SankeyChart/seriesConfig/identifierCleaner.d.mts} +0 -0
- /package/{esm/SankeyChart/seriesConfig/identifierCleaner.js → SankeyChart/seriesConfig/identifierCleaner.mjs} +0 -0
- /package/{esm/SankeyChart/seriesConfig/identifierSerializer.d.ts → SankeyChart/seriesConfig/identifierSerializer.d.mts} +0 -0
- /package/{esm/SankeyChart/seriesConfig/identifierSerializer.js → SankeyChart/seriesConfig/identifierSerializer.mjs} +0 -0
- /package/{esm/SankeyChart/seriesConfig/index.d.ts → SankeyChart/seriesConfig/index.d.mts} +0 -0
- /package/{esm/SankeyChart/seriesConfig/keyboardFocusHandler.d.ts → SankeyChart/seriesConfig/keyboardFocusHandler.d.mts} +0 -0
- /package/{esm/SankeyChart/seriesConfig/keyboardFocusHandler.js → SankeyChart/seriesConfig/keyboardFocusHandler.mjs} +0 -0
- /package/{esm/SankeyChart/seriesConfig/tooltipGetter.d.ts → SankeyChart/seriesConfig/tooltipGetter.d.mts} +0 -0
- /package/{esm/SankeyChart/seriesConfig/tooltipGetter.js → SankeyChart/seriesConfig/tooltipGetter.mjs} +0 -0
- /package/{esm/SankeyChart/seriesConfig/tooltipPosition.d.ts → SankeyChart/seriesConfig/tooltipPosition.d.mts} +0 -0
- /package/{esm/SankeyChart/seriesConfig/tooltipPosition.js → SankeyChart/seriesConfig/tooltipPosition.mjs} +0 -0
- /package/{esm/ScatterChart/index.d.ts → ScatterChart/index.d.mts} +0 -0
- /package/{esm/ScatterChart/index.js → ScatterChart/index.mjs} +0 -0
- /package/{esm/SparkLineChart/index.d.ts → SparkLineChart/index.d.mts} +0 -0
- /package/{esm/SparkLineChart/index.js → SparkLineChart/index.mjs} +0 -0
- /package/{esm/Toolbar/index.d.ts → Toolbar/index.d.mts} +0 -0
- /package/{esm/Toolbar/index.js → Toolbar/index.mjs} +0 -0
- /package/{esm/colorPalettes/index.d.ts → colorPalettes/index.d.mts} +0 -0
- /package/{esm/colorPalettes/index.js → colorPalettes/index.mjs} +0 -0
- /package/{esm/constants/index.d.ts → constants/index.d.mts} +0 -0
- /package/{esm/constants/index.js → constants/index.mjs} +0 -0
- /package/{esm/SankeyChart/sankeySlots.types.js → context/ChartProApi.mjs} +0 -0
- /package/{esm/context/useChartProApiContext.js → context/useChartProApiContext.mjs} +0 -0
- /package/{esm/hooks/useChartProApiRef.js → hooks/useChartProApiRef.mjs} +0 -0
- /package/{esm/hooks/useFunnelSeries.d.ts → hooks/useFunnelSeries.d.mts} +0 -0
- /package/{esm/hooks/useFunnelSeries.js → hooks/useFunnelSeries.mjs} +0 -0
- /package/{esm/hooks/useHeatmapSeries.d.ts → hooks/useHeatmapSeries.d.mts} +0 -0
- /package/{esm/hooks/useHeatmapSeries.js → hooks/useHeatmapSeries.mjs} +0 -0
- /package/{esm/hooks/useSankeySeries.js → hooks/useSankeySeries.mjs} +0 -0
- /package/{esm/hooks/zoom/useIsZoomInteracting.d.ts → hooks/zoom/useIsZoomInteracting.d.mts} +0 -0
- /package/{esm/internals/material/components/BaseMenuItem.js → internals/material/components/BaseMenuItem.mjs} +0 -0
- /package/{esm/internals/material/components/BasePopper.js → internals/material/components/BasePopper.mjs} +0 -0
- /package/{esm/internals/material/icons.d.ts → internals/material/icons.d.mts} +0 -0
- /package/{esm/internals/material/icons.js → internals/material/icons.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProExport/common.d.ts → internals/plugins/useChartProExport/common.d.mts} +0 -0
- /package/{esm/internals/plugins/useChartProExport/common.js → internals/plugins/useChartProExport/common.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProExport/defaults.d.ts → internals/plugins/useChartProExport/defaults.d.mts} +0 -0
- /package/{esm/internals/plugins/useChartProExport/defaults.js → internals/plugins/useChartProExport/defaults.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProExport/useChartProExport.types.d.ts → internals/plugins/useChartProExport/useChartProExport.types.d.mts} +0 -0
- /package/{esm/context/ChartProApi.js → internals/plugins/useChartProExport/useChartProExport.types.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/ZoomInteractionConfig.types.d.ts → internals/plugins/useChartProZoom/ZoomInteractionConfig.types.d.mts} +0 -0
- /package/{esm/internals/plugins/useChartProExport/useChartProExport.types.js → internals/plugins/useChartProZoom/ZoomInteractionConfig.types.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/calculateZoom.d.ts → internals/plugins/useChartProZoom/calculateZoom.d.mts} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/calculateZoom.js → internals/plugins/useChartProZoom/calculateZoom.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/gestureHooks/useZoom.utils.d.ts → internals/plugins/useChartProZoom/gestureHooks/useZoom.utils.d.mts} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/gestureHooks/useZoom.utils.js → internals/plugins/useChartProZoom/gestureHooks/useZoom.utils.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/initializeZoomData.d.ts → internals/plugins/useChartProZoom/initializeZoomData.d.mts} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/initializeZoomData.js → internals/plugins/useChartProZoom/initializeZoomData.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/initializeZoomInteractionConfig.js → internals/plugins/useChartProZoom/initializeZoomInteractionConfig.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/useChartProZoom.selectors.js → internals/plugins/useChartProZoom/useChartProZoom.selectors.mjs} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/ZoomInteractionConfig.types.js → internals/plugins/useChartProZoom/useChartProZoom.types.mjs} +0 -0
- /package/{esm/internals/slots/chartBaseSlotProps.d.ts → internals/slots/chartBaseSlotProps.d.mts} +0 -0
- /package/{esm/internals/plugins/useChartProZoom/useChartProZoom.types.js → internals/slots/chartBaseSlotProps.mjs} +0 -0
- /package/{esm/internals/slots/chartBaseSlotProps.js → internals/slots/chartsBaseSlots.mjs} +0 -0
- /package/{esm/internals/slots/chartsIconSlots.d.ts → internals/slots/chartsIconSlots.d.mts} +0 -0
- /package/{esm/internals/slots/chartsBaseSlots.js → internals/slots/chartsIconSlots.mjs} +0 -0
- /package/{esm/locales/index.d.ts → locales/index.d.mts} +0 -0
- /package/{esm/locales/index.js → locales/index.mjs} +0 -0
- /package/{esm/models/seriesType/heatmap.d.ts → models/seriesType/heatmap.d.mts} +0 -0
- /package/{esm/internals/slots/chartsIconSlots.js → models/seriesType/heatmap.mjs} +0 -0
- /package/{esm/plugins/selectors/useChartHeatmapPosition.selectors.js → plugins/selectors/useChartHeatmapPosition.selectors.mjs} +0 -0
- /package/{esm/tests/constants.js → tests/constants.mjs} +0 -0
- /package/{esm/themeAugmentation/components.d.ts → themeAugmentation/components.d.mts} +0 -0
- /package/{esm/models/seriesType/heatmap.js → themeAugmentation/components.mjs} +0 -0
- /package/{esm/themeAugmentation/index.js → themeAugmentation/index.mjs} +0 -0
- /package/{esm/themeAugmentation/overrides.js → themeAugmentation/overrides.mjs} +0 -0
- /package/{esm/themeAugmentation/props.js → themeAugmentation/props.mjs} +0 -0
- /package/{esm/themeAugmentation/components.js → typeOverloads/modules.mjs} +0 -0
- /package/{esm/utils/index.d.ts → utils/index.d.mts} +0 -0
- /package/{esm/utils/index.js → utils/index.mjs} +0 -0
|
@@ -0,0 +1,5 @@
|
|
|
1
|
+
import { type ConvertSignaturesIntoPlugins, type UseChartZAxisSignature, type UseChartCartesianAxisSignature, type UseChartTooltipSignature, type UseChartInteractionSignature, type UseChartHighlightSignature, type UseChartKeyboardNavigationSignature, type UseChartBrushSignature, type UseChartVisibilityManagerSignature } from '@mui/x-charts/internals';
|
|
2
|
+
import { type UseChartProExportSignature } from "../internals/plugins/useChartProExport/index.mjs";
|
|
3
|
+
import { type UseChartProZoomSignature } from "../internals/plugins/useChartProZoom/index.mjs";
|
|
4
|
+
export type BarChartProPluginSignatures = [UseChartZAxisSignature, UseChartBrushSignature, UseChartTooltipSignature<'bar'>, UseChartInteractionSignature, UseChartCartesianAxisSignature<'bar'>, UseChartHighlightSignature<'bar'>, UseChartVisibilityManagerSignature<'bar'>, UseChartKeyboardNavigationSignature, UseChartProZoomSignature, UseChartProExportSignature];
|
|
5
|
+
export declare const BAR_CHART_PRO_PLUGINS: ConvertSignaturesIntoPlugins<BarChartProPluginSignatures>;
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { type ConvertSignaturesIntoPlugins, type UseChartZAxisSignature, type UseChartCartesianAxisSignature, type UseChartTooltipSignature, type UseChartInteractionSignature, type UseChartHighlightSignature, type UseChartKeyboardNavigationSignature, type UseChartBrushSignature, type UseChartVisibilityManagerSignature } from '@mui/x-charts/internals';
|
|
2
2
|
import { type UseChartProExportSignature } from "../internals/plugins/useChartProExport/index.js";
|
|
3
3
|
import { type UseChartProZoomSignature } from "../internals/plugins/useChartProZoom/index.js";
|
|
4
|
-
export type BarChartProPluginSignatures = [UseChartZAxisSignature, UseChartBrushSignature, UseChartTooltipSignature<'bar'>, UseChartInteractionSignature, UseChartCartesianAxisSignature<'bar'>, UseChartHighlightSignature
|
|
4
|
+
export type BarChartProPluginSignatures = [UseChartZAxisSignature, UseChartBrushSignature, UseChartTooltipSignature<'bar'>, UseChartInteractionSignature, UseChartCartesianAxisSignature<'bar'>, UseChartHighlightSignature<'bar'>, UseChartVisibilityManagerSignature<'bar'>, UseChartKeyboardNavigationSignature, UseChartProZoomSignature, UseChartProExportSignature];
|
|
5
5
|
export declare const BAR_CHART_PRO_PLUGINS: ConvertSignaturesIntoPlugins<BarChartProPluginSignatures>;
|
|
@@ -0,0 +1,4 @@
|
|
|
1
|
+
import { useChartZAxis, useChartCartesianAxis, useChartTooltip, useChartInteraction, useChartHighlight, useChartKeyboardNavigation, useChartBrush, useChartVisibilityManager } from '@mui/x-charts/internals';
|
|
2
|
+
import { useChartProExport } from "../internals/plugins/useChartProExport/index.mjs";
|
|
3
|
+
import { useChartProZoom } from "../internals/plugins/useChartProZoom/index.mjs";
|
|
4
|
+
export const BAR_CHART_PRO_PLUGINS = [useChartZAxis, useChartBrush, useChartTooltip, useChartInteraction, useChartCartesianAxis, useChartHighlight, useChartVisibilityManager, useChartKeyboardNavigation, useChartProZoom, useChartProExport];
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,241 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## 9.0.0-alpha.2
|
|
4
|
+
|
|
5
|
+
_Mar 5, 2026_
|
|
6
|
+
|
|
7
|
+
We'd like to extend a big thank you to the 12 contributors who made this release possible. Here are some highlights ✨:
|
|
8
|
+
|
|
9
|
+
- ✅ Stabilize Sankey chart
|
|
10
|
+
- 🐞 Bugfixes and internal improvements
|
|
11
|
+
|
|
12
|
+
The following team members contributed to this release:
|
|
13
|
+
@aemartos, @alelthomas, @alexfauquette, @arminmeh, @bernardobelchior, @brijeshb42, @Janpot, @JCQuintas, @mapache-salvaje, @michelengelen, @mj12albert, @sai6855, @siriwatknp
|
|
14
|
+
|
|
15
|
+
### Data Grid
|
|
16
|
+
|
|
17
|
+
#### `@mui/x-data-grid@9.0.0-alpha.2`
|
|
18
|
+
|
|
19
|
+
- [dataGrid] Fix keyboard nav with single-row checkbox selection (#21149) @mj12albert
|
|
20
|
+
- [DataGrid] Add `checkboxColDef` prop to customize the selection column (#21331) @michelengelen
|
|
21
|
+
- [DataGrid] Format pagination numbers by default (#21117) @siriwatknp
|
|
22
|
+
- [DataGrid] Prevent unnecessary row selection checkbox rerendering (#21570) @arminmeh
|
|
23
|
+
- [DataGrid] Make GridScrollArea overrides resolver dynamic (#21532) @sai6855
|
|
24
|
+
|
|
25
|
+
#### `@mui/x-data-grid-pro@9.0.0-alpha.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
26
|
+
|
|
27
|
+
Same changes as in `@mui/x-data-grid@9.0.0-alpha.2`, plus:
|
|
28
|
+
|
|
29
|
+
- [DataGridPro] Use `getRowId` prop to calculate the tree data row update (#21540) @arminmeh
|
|
30
|
+
|
|
31
|
+
#### `@mui/x-data-grid-premium@9.0.0-alpha.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
32
|
+
|
|
33
|
+
Same changes as in `@mui/x-data-grid-pro@9.0.0-alpha.2`.
|
|
34
|
+
|
|
35
|
+
### Date and Time Pickers
|
|
36
|
+
|
|
37
|
+
#### `@mui/x-date-pickers@9.0.0-alpha.2`
|
|
38
|
+
|
|
39
|
+
- [pickers] Add `keepOpenDuringFieldFocus` prop (#20782) @michelengelen
|
|
40
|
+
|
|
41
|
+
#### `@mui/x-date-pickers-pro@9.0.0-alpha.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
42
|
+
|
|
43
|
+
Same changes as in `@mui/x-date-pickers@9.0.0-alpha.2`.
|
|
44
|
+
|
|
45
|
+
### Charts
|
|
46
|
+
|
|
47
|
+
#### `@mui/x-charts@9.0.0-alpha.2`
|
|
48
|
+
|
|
49
|
+
- [charts] Add `ChartsLayerContainer` component (#21264) @bernardobelchior
|
|
50
|
+
- [charts] Add codemod for `ChartsContainer` rename (#21504) @JCQuintas
|
|
51
|
+
- [charts] Add codemod for `ChartsDataProvider` rename (#21552) @JCQuintas
|
|
52
|
+
- [charts] Add codemod for `ChartsZoomSlider` rename (#21597) @JCQuintas
|
|
53
|
+
- [charts] Base the highlight items on the item identifiers (#21161) @alexfauquette
|
|
54
|
+
- [charts] Deprecate `ChartDataProvider` in favour of `ChartsDataProvider` (#21191) @JCQuintas
|
|
55
|
+
- [charts] Deprecate `highlighted` and `faded` classes (#21476) @alexfauquette
|
|
56
|
+
- [charts] Migrate to latest v8 warning (#21518) @JCQuintas
|
|
57
|
+
- [charts] Rename `ChartZoomSlider` to `ChartsZoomSlider` (#21553) @JCQuintas
|
|
58
|
+
- [charts] Rename `WebGl` to `WebGL` (#21524) @JCQuintas
|
|
59
|
+
- [charts] Rename `useSvgRef()` by `useChartsLayerContainerRef()` (#21494) @alexfauquette
|
|
60
|
+
- [charts] Restore focus on last focused item (#21522) @alexfauquette
|
|
61
|
+
- [charts] Warn users when controlled tooltip state does not match the trigger (#21520) @Copilot
|
|
62
|
+
- [charts] Fix controlled tooltip position (#21603) @bernardobelchior
|
|
63
|
+
|
|
64
|
+
#### `@mui/x-charts-pro@9.0.0-alpha.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
65
|
+
|
|
66
|
+
Same changes as in `@mui/x-charts@9.0.0-alpha.2`, plus:
|
|
67
|
+
|
|
68
|
+
- [charts-pro] Center the watermark (#21550) @alexfauquette
|
|
69
|
+
- [charts-pro] Stabilize `SankeyChart` API (#21133) @Copilot
|
|
70
|
+
|
|
71
|
+
#### `@mui/x-charts-premium@9.0.0-alpha.2` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
72
|
+
|
|
73
|
+
Same changes as in `@mui/x-charts-pro@9.0.0-alpha.2`.
|
|
74
|
+
|
|
75
|
+
### Tree View
|
|
76
|
+
|
|
77
|
+
#### `@mui/x-tree-view@9.0.0-alpha.2`
|
|
78
|
+
|
|
79
|
+
Internal changes.
|
|
80
|
+
|
|
81
|
+
#### `@mui/x-tree-view-pro@9.0.0-alpha.2` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
82
|
+
|
|
83
|
+
Same changes as in `@mui/x-tree-view@9.0.0-alpha.2`.
|
|
84
|
+
|
|
85
|
+
### Codemod
|
|
86
|
+
|
|
87
|
+
#### `@mui/x-codemod@9.0.0-alpha.2`
|
|
88
|
+
|
|
89
|
+
Internal changes.
|
|
90
|
+
|
|
91
|
+
### Docs
|
|
92
|
+
|
|
93
|
+
- [docs] Add backticks and parentheses to all functions and hooks (DX-173) (#21496) @mapache-salvaje
|
|
94
|
+
- [docs] Remove mentions of `mySvgRef` (#21559) @bernardobelchior
|
|
95
|
+
- [docs] Update Roadmap section in the docs (#20892) @alelthomas
|
|
96
|
+
- [docs] Add tutorial and example app for aggregation with row grouping (DX-162) (#21102) @mapache-salvaje
|
|
97
|
+
- [docs] Fix missing codemod docs (#21604) @JCQuintas
|
|
98
|
+
|
|
99
|
+
### Core
|
|
100
|
+
|
|
101
|
+
- [code-infra] Add eslint rule to prevent `Math.random` in docs (#21505) @JCQuintas
|
|
102
|
+
- [code-infra] Avoid static props for pageContent (#21038) @Janpot
|
|
103
|
+
- [code-infra] Isolate `date-pickers-pro` in the browser tests (#21383) @Janpot
|
|
104
|
+
- [code-infra] Remove `--coverage` (#21410) @Janpot
|
|
105
|
+
- [code-infra] Remove unneeded `skipIf`s (#21569) @JCQuintas
|
|
106
|
+
- [code-infra] Remove vale as a workspace dependency (#21489) @brijeshb42
|
|
107
|
+
- [code-infra] Remove x-charts-vendor from nextjs processing (#21534) @brijeshb42
|
|
108
|
+
- [code-infra] Set BASE_BRANCH env var in CircleCI config (#21548) @brijeshb42
|
|
109
|
+
- [code-infra] Setup error code extraction (#21469) @brijeshb42
|
|
110
|
+
- [code-infra] Setup flat build for packages (#21029) @brijeshb42
|
|
111
|
+
- [code-infra] Upgrade test_unit to large resource class (#21558) @Janpot
|
|
112
|
+
- [code-infra] Removed getTeamMembers function and usage from release script (#21605) @michelengelen
|
|
113
|
+
|
|
114
|
+
### Miscellaneous
|
|
115
|
+
|
|
116
|
+
- [x-license] Add Q1-2026 plan version with quantity and appType support (#21574) @aemartos
|
|
117
|
+
- [x-license] Add v3 key format support, centralize test keys, and trim public API (#21485) @aemartos
|
|
118
|
+
- [x-telemetry] telemetry opt-out by default, remove conf dependency (#21470) @aemartos
|
|
119
|
+
- [x-telemetry] test: mock context module directly in sender tests (#21546) @aemartos
|
|
120
|
+
|
|
121
|
+
## 9.0.0-alpha.1
|
|
122
|
+
|
|
123
|
+
_Feb 26, 2026_
|
|
124
|
+
|
|
125
|
+
We'd like to extend a big thank you to the 18 contributors who made this release possible. Here are some highlights ✨:
|
|
126
|
+
|
|
127
|
+
- ⚡️ Improved dynamic data support and cache invalidation in lazy loading for Data Grid Pro
|
|
128
|
+
- ⌨️ Keyboard support for selecting day, month, and year in Date Pickers
|
|
129
|
+
- 📊 Axis tooltip sorting and control improvements in Charts
|
|
130
|
+
- 🐞 Bugfixes and internal improvements
|
|
131
|
+
|
|
132
|
+
Special thanks go out to these community members for their valuable contributions:
|
|
133
|
+
@EllGree, @lion1963
|
|
134
|
+
|
|
135
|
+
The following team members contributed to this release:
|
|
136
|
+
@alexfauquette, @arminmeh, @brijeshb42, @cherniavskii, @dav-is, @flaviendelangle, @Janpot, @JCQuintas, @mapache-salvaje, @MBilalShafi, @michelengelen, @noraleonte, @rita-codes, @sai6855, @siriwatknp, @ZeeshanTamboli
|
|
137
|
+
|
|
138
|
+
### Data Grid
|
|
139
|
+
|
|
140
|
+
#### `@mui/x-data-grid@9.0.0-alpha.1`
|
|
141
|
+
|
|
142
|
+
- [DataGrid] Forward rest props in `GridFilterInputMultipleValue` (#21407) @siriwatknp
|
|
143
|
+
- [DataGrid] Preserve key input during row edit when using `rowModesModel` (#20759) @michelengelen
|
|
144
|
+
- [DataGrid] Remove double rtl inversion logic for columns pinning (#21371) @siriwatknp
|
|
145
|
+
|
|
146
|
+
#### `@mui/x-data-grid-pro@9.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
147
|
+
|
|
148
|
+
Same changes as in `@mui/x-data-grid@9.0.0-alpha.1`, plus:
|
|
149
|
+
|
|
150
|
+
- [DataGridPro] Fix number input visibility in header filters (#21328) @michelengelen
|
|
151
|
+
- [DataGridPro] Improve dynamic data support and cache invalidation in lazy loading (#21282) @MBilalShafi
|
|
152
|
+
|
|
153
|
+
#### `@mui/x-data-grid-premium@9.0.0-alpha.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
154
|
+
|
|
155
|
+
Same changes as in `@mui/x-data-grid-pro@9.0.0-alpha.1`.
|
|
156
|
+
|
|
157
|
+
### Date and Time Pickers
|
|
158
|
+
|
|
159
|
+
#### `@mui/x-date-pickers@9.0.0-alpha.1`
|
|
160
|
+
|
|
161
|
+
- [DatePicker] Add keyboard support for selecting day, month, and year (#20859) @michelengelen
|
|
162
|
+
|
|
163
|
+
#### `@mui/x-date-pickers-pro@9.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
164
|
+
|
|
165
|
+
Same changes as in `@mui/x-date-pickers@9.0.0-alpha.1`, plus:
|
|
166
|
+
|
|
167
|
+
- [DateRangePicker] Fix timezone update issue leading to `invalidRange` error (#20863) @michelengelen
|
|
168
|
+
|
|
169
|
+
### Charts
|
|
170
|
+
|
|
171
|
+
#### `@mui/x-charts@9.0.0-alpha.1`
|
|
172
|
+
|
|
173
|
+
- [charts] Add `sort` props to the axis tooltip (#21293) @alexfauquette
|
|
174
|
+
- [charts] Controll axis tooltip (#21351) @alexfauquette
|
|
175
|
+
- [charts] De duplicate keyboard focus handler function (#21267) @sai6855
|
|
176
|
+
- [charts] Make `type` optional in identifiers (#21311) @alexfauquette
|
|
177
|
+
- [charts] Move ref to the root component (#21396) @alexfauquette
|
|
178
|
+
- [charts] Refactor loading and no data overlays to use a shared OverlayText component (#21414) @sai6855
|
|
179
|
+
- [charts] Require series ids to be unique (#21330) @alexfauquette
|
|
180
|
+
- [charts] Set `showMark` as `false` by default (#21373) @alexfauquette
|
|
181
|
+
- [charts] Use `createGetNextIndexFocusedItem()` util in Funnel and RangeBar charts (#21390) @sai6855
|
|
182
|
+
- [charts] Remove unnecessary string concatenation (#21418) @sai6855
|
|
183
|
+
|
|
184
|
+
#### `@mui/x-charts-pro@9.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
185
|
+
|
|
186
|
+
Same changes as in `@mui/x-charts@9.0.0-alpha.1`.
|
|
187
|
+
|
|
188
|
+
#### `@mui/x-charts-premium@9.0.0-alpha.1` [](https://mui.com/r/x-premium-svg-link 'Premium plan')
|
|
189
|
+
|
|
190
|
+
Same changes as in `@mui/x-charts-pro@9.0.0-alpha.1`.
|
|
191
|
+
|
|
192
|
+
### Tree View
|
|
193
|
+
|
|
194
|
+
#### `@mui/x-tree-view@9.0.0-alpha.1`
|
|
195
|
+
|
|
196
|
+
- [tree view] Focus item sibling on unmount instead of the 1st item (#21254) @flaviendelangle
|
|
197
|
+
|
|
198
|
+
#### `@mui/x-tree-view-pro@9.0.0-alpha.1` [](https://mui.com/r/x-pro-svg-link 'Pro plan')
|
|
199
|
+
|
|
200
|
+
Same changes as in `@mui/x-tree-view@9.0.0-alpha.1`.
|
|
201
|
+
|
|
202
|
+
### Codemod
|
|
203
|
+
|
|
204
|
+
#### `@mui/x-codemod@9.0.0-alpha.1`
|
|
205
|
+
|
|
206
|
+
Internal changes.
|
|
207
|
+
|
|
208
|
+
### Docs
|
|
209
|
+
|
|
210
|
+
- [docs] Fix external 301s (#21377) @Janpot
|
|
211
|
+
- [docs] Show premium in the overview (#21343) @alexfauquette
|
|
212
|
+
- [docs][charts] Revise the useLegend hook doc (#21352) @mapache-salvaje
|
|
213
|
+
- [docs][charts] Revise the axis hooks doc (#21317) @mapache-salvaje
|
|
214
|
+
- [docs][charts] Revise the scale hooks doc (#21316) @mapache-salvaje
|
|
215
|
+
- [docs][charts] Revise the series hooks doc (#21353) @mapache-salvaje
|
|
216
|
+
- [docs][charts] Revise the useDataset doc (#21336) @mapache-salvaje
|
|
217
|
+
- [docs][charts] Revise the useDrawingArea doc (#21333) @mapache-salvaje
|
|
218
|
+
|
|
219
|
+
### Core
|
|
220
|
+
|
|
221
|
+
- [core] Update docs deploy script to the `docs-next` branch (#21341) @siriwatknp
|
|
222
|
+
- [code-infra] Cleanup unused babel plugins (#21453) @brijeshb42
|
|
223
|
+
- [code-infra] Do not append `x` to the last version for the compare API (#21408) @arminmeh
|
|
224
|
+
- [code-infra] Upgrade react-docgen to v8 X (#21155) @JCQuintas
|
|
225
|
+
- [code-infra] Modernize codemod (#21096) @JCQuintas
|
|
226
|
+
- [docs-infra] Fix current version detection logic (#21417) @cherniavskii
|
|
227
|
+
- [docs-infra] Reapply Cookie Banner (#21281) @dav-is
|
|
228
|
+
- [internal] Headless filtering plugin (#21302) @arminmeh
|
|
229
|
+
- [internal] Headless pagination plugin (#21183) @arminmeh
|
|
230
|
+
- [internal] Headless virtualization followups (#21327) @cherniavskii
|
|
231
|
+
- [internal] Keep cached data for disabled pipe processors (#21348) @arminmeh
|
|
232
|
+
- [internal] Remove autoprefixer package (#21440) @ZeeshanTamboli
|
|
233
|
+
|
|
234
|
+
### Miscellaneous
|
|
235
|
+
|
|
236
|
+
- [l10n] Fix Czech (csCZ) locale: sort/filter labels are swapped (#21400) @EllGree
|
|
237
|
+
- [l10n] Improve Ukrainian (uk-UA) locale (#21366) @lion1963
|
|
238
|
+
|
|
3
239
|
## 9.0.0-alpha.0
|
|
4
240
|
|
|
5
241
|
_Feb 16, 2026_
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import { type ChartAnyPluginSignature, type ChartSeriesType } from '@mui/x-charts/internals';
|
|
2
|
+
import { type AllPluginSignatures } from "../internals/plugins/allPlugins.mjs";
|
|
3
|
+
import { type ChartsContainerProProps, type ChartsContainerProSlotProps, type ChartsContainerProSlots } from "../ChartsContainerPro/index.mjs";
|
|
4
|
+
/**
|
|
5
|
+
* @deprecated Use `ChartsContainerProSlots` instead. We added S to the charts prefix to align with other components.
|
|
6
|
+
*/
|
|
7
|
+
export type ChartContainerProSlots = ChartsContainerProSlots;
|
|
8
|
+
/**
|
|
9
|
+
* @deprecated Use `ChartsContainerProSlotProps` instead. We added S to the charts prefix to align with other components.
|
|
10
|
+
*/
|
|
11
|
+
export type ChartContainerProSlotProps = ChartsContainerProSlotProps;
|
|
12
|
+
/**
|
|
13
|
+
* @deprecated Use `ChartsContainerProProps` instead. We added S to the charts prefix to align with other components.
|
|
14
|
+
*/
|
|
15
|
+
export type ChartContainerProProps<TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>> = ChartsContainerProProps<TSeries, TSignatures>;
|
|
16
|
+
/**
|
|
17
|
+
* @deprecated Use `ChartsContainerPro` instead. We added S to the charts prefix to align with other components.
|
|
18
|
+
*/
|
|
19
|
+
export declare const ChartContainerPro: <TSeries extends ChartSeriesType = keyof import("@mui/x-charts/internals").ChartsSeriesConfig, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartsContainerProProps<TSeries, TSignatures> & {
|
|
20
|
+
ref?: React.ForwardedRef<SVGSVGElement>;
|
|
21
|
+
}) => React.JSX.Element;
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { ChartsContainerPro } from "../ChartsContainerPro/index.mjs";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Use `ChartsContainerProSlots` instead. We added S to the charts prefix to align with other components.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Use `ChartsContainerProSlotProps` instead. We added S to the charts prefix to align with other components.
|
|
11
|
+
*/
|
|
12
|
+
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated Use `ChartsContainerProProps` instead. We added S to the charts prefix to align with other components.
|
|
15
|
+
*/
|
|
16
|
+
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Use `ChartsContainerPro` instead. We added S to the charts prefix to align with other components.
|
|
19
|
+
*/
|
|
20
|
+
export const ChartContainerPro = ChartsContainerPro;
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import "../typeOverloads/index.mjs";
|
|
2
|
+
import type { ChartAnyPluginSignature } from '@mui/x-charts/internals';
|
|
3
|
+
import type { ChartProApi as ChartProApiOriginal, ProPluginsPerSeriesType } from "../context/ChartProApi.mjs";
|
|
4
|
+
import type { AllPluginSignatures } from "../internals/plugins/allPlugins.mjs";
|
|
5
|
+
export * from "./ChartContainerPro.mjs";
|
|
6
|
+
/**
|
|
7
|
+
* @deprecated Use `ChartProApi` from `@mui/x-charts/context` instead.
|
|
8
|
+
*/
|
|
9
|
+
export type ChartProApi<ChartType extends keyof ProPluginsPerSeriesType | undefined = undefined, Signatures extends readonly ChartAnyPluginSignature[] = (ChartType extends keyof ProPluginsPerSeriesType ? ProPluginsPerSeriesType[ChartType] : AllPluginSignatures)> = ChartProApiOriginal<ChartType, Signatures>;
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
import { type ChartAnyPluginSignature, type ChartSeriesType } from '@mui/x-charts/internals';
|
|
2
|
+
import { type UseChartsContainerProPropsReturnValue } from "../ChartsContainerPro/useChartsContainerProProps.mjs";
|
|
3
|
+
import type { ChartContainerProProps } from "./ChartContainerPro.mjs";
|
|
4
|
+
import { type AllPluginSignatures } from "../internals/plugins/allPlugins.mjs";
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Use `UseChartsContainerProPropsReturnValue` instead.
|
|
7
|
+
*/
|
|
8
|
+
export type UseChartContainerProPropsReturnValue<TSeries extends ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[]> = UseChartsContainerProPropsReturnValue<TSeries, TSignatures>;
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Use `useChartsContainerProProps` instead.
|
|
11
|
+
*/
|
|
12
|
+
export declare const useChartContainerProProps: <TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartContainerProProps<TSeries, TSignatures>) => UseChartContainerProPropsReturnValue<TSeries, TSignatures>;
|
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import type * as React from 'react';
|
|
2
1
|
import { type ChartAnyPluginSignature, type ChartSeriesType } from '@mui/x-charts/internals';
|
|
3
2
|
import { type UseChartsContainerProPropsReturnValue } from "../ChartsContainerPro/useChartsContainerProProps.js";
|
|
4
3
|
import type { ChartContainerProProps } from "./ChartContainerPro.js";
|
|
@@ -10,4 +9,4 @@ export type UseChartContainerProPropsReturnValue<TSeries extends ChartSeriesType
|
|
|
10
9
|
/**
|
|
11
10
|
* @deprecated Use `useChartsContainerProProps` instead.
|
|
12
11
|
*/
|
|
13
|
-
export declare const useChartContainerProProps: <TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartContainerProProps<TSeries, TSignatures
|
|
12
|
+
export declare const useChartContainerProProps: <TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartContainerProProps<TSeries, TSignatures>) => UseChartContainerProPropsReturnValue<TSeries, TSignatures>;
|
|
@@ -13,7 +13,7 @@ var _useChartsContainerProProps = require("../ChartsContainerPro/useChartsContai
|
|
|
13
13
|
/**
|
|
14
14
|
* @deprecated Use `useChartsContainerProProps` instead.
|
|
15
15
|
*/
|
|
16
|
-
const useChartContainerProProps =
|
|
17
|
-
return (0, _useChartsContainerProProps.useChartsContainerProProps)(props
|
|
16
|
+
const useChartContainerProProps = props => {
|
|
17
|
+
return (0, _useChartsContainerProProps.useChartsContainerProProps)(props);
|
|
18
18
|
};
|
|
19
19
|
exports.useChartContainerProProps = useChartContainerProProps;
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
'use client';
|
|
2
|
+
|
|
3
|
+
import { useChartsContainerProProps } from "../ChartsContainerPro/useChartsContainerProProps.mjs";
|
|
4
|
+
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Use `UseChartsContainerProPropsReturnValue` instead.
|
|
7
|
+
*/
|
|
8
|
+
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Use `useChartsContainerProProps` instead.
|
|
11
|
+
*/
|
|
12
|
+
export const useChartContainerProProps = props => {
|
|
13
|
+
return useChartsContainerProProps(props);
|
|
14
|
+
};
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { type ChartSeriesType, type ChartAnyPluginSignature } from '@mui/x-charts/internals';
|
|
2
|
+
import { ChartsDataProviderPro, type ChartsDataProviderProProps, type ChartsDataProviderProSlots, type ChartsDataProviderProSlotProps, defaultSeriesConfigPro } from "../ChartsDataProviderPro/index.mjs";
|
|
3
|
+
import { type AllPluginSignatures } from "../internals/plugins/allPlugins.mjs";
|
|
4
|
+
export { defaultSeriesConfigPro };
|
|
5
|
+
/**
|
|
6
|
+
* @deprecated Use `ChartsDataProviderProSlots` instead. We added S to the charts prefix to align with other components.
|
|
7
|
+
*/
|
|
8
|
+
export type ChartDataProviderProSlots = ChartsDataProviderProSlots;
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Use `ChartsDataProviderProSlotProps` instead. We added S to the charts prefix to align with other components.
|
|
11
|
+
*/
|
|
12
|
+
export type ChartDataProviderProSlotProps = ChartsDataProviderProSlotProps;
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated Use `ChartsDataProviderProProps` instead. We added S to the charts prefix to align with other components.
|
|
15
|
+
*/
|
|
16
|
+
export type ChartDataProviderProProps<TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>> = ChartsDataProviderProProps<TSeries, TSignatures>;
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Use `ChartsDataProviderPro` instead. We added S to the charts prefix to align with other components.
|
|
19
|
+
*/
|
|
20
|
+
export declare const ChartDataProviderPro: typeof ChartsDataProviderPro;
|
|
@@ -1,49 +1,20 @@
|
|
|
1
|
-
import { type ChartSeriesType, type ChartAnyPluginSignature
|
|
2
|
-
import { type
|
|
3
|
-
import { type ChartsSlotPropsPro, type ChartsSlotsPro } from "../internals/material/index.js";
|
|
1
|
+
import { type ChartSeriesType, type ChartAnyPluginSignature } from '@mui/x-charts/internals';
|
|
2
|
+
import { ChartsDataProviderPro, type ChartsDataProviderProProps, type ChartsDataProviderProSlots, type ChartsDataProviderProSlotProps, defaultSeriesConfigPro } from "../ChartsDataProviderPro/index.js";
|
|
4
3
|
import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js";
|
|
5
|
-
export
|
|
6
|
-
export interface ChartDataProviderProSlotProps extends ChartsSlotPropsPro {}
|
|
7
|
-
export type ChartDataProviderProProps<TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>> = ChartDataProviderProps<TSeries, TSignatures> & ChartProviderProps<TSeries, TSignatures>['pluginParams'] & {
|
|
8
|
-
/**
|
|
9
|
-
* Slots to customize charts' components.
|
|
10
|
-
*/
|
|
11
|
-
slots?: Partial<ChartDataProviderProSlots>;
|
|
12
|
-
/**
|
|
13
|
-
* The props for the slots.
|
|
14
|
-
*/
|
|
15
|
-
slotProps?: Partial<ChartDataProviderProSlotProps>;
|
|
16
|
-
};
|
|
17
|
-
export declare const defaultSeriesConfigPro: ChartSeriesConfig<'bar' | 'scatter' | 'line' | 'pie'>;
|
|
4
|
+
export { defaultSeriesConfigPro };
|
|
18
5
|
/**
|
|
19
|
-
*
|
|
20
|
-
*
|
|
21
|
-
* Use this component if you have custom HTML components that need to access the chart data.
|
|
22
|
-
*
|
|
23
|
-
* Demos:
|
|
24
|
-
*
|
|
25
|
-
* - [Composition](https://mui.com/x/api/charts/composition/)
|
|
26
|
-
*
|
|
27
|
-
* API:
|
|
28
|
-
*
|
|
29
|
-
* - [ChartDataProviderPro API](https://mui.com/x/api/charts/chart-data-provider-pro/)
|
|
30
|
-
*
|
|
31
|
-
* @example
|
|
32
|
-
* ```jsx
|
|
33
|
-
* <ChartDataProviderPro
|
|
34
|
-
* series={[{ label: "Label", type: "bar", data: [10, 20] }]}
|
|
35
|
-
* xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
|
|
36
|
-
* >
|
|
37
|
-
* <ChartsSurface>
|
|
38
|
-
* <BarPlot />
|
|
39
|
-
* <ChartsXAxis axisId="x-axis" />
|
|
40
|
-
* </ChartsSurface>
|
|
41
|
-
* {'Custom Legend Component'}
|
|
42
|
-
* </ChartDataProviderPro>
|
|
43
|
-
* ```
|
|
6
|
+
* @deprecated Use `ChartsDataProviderProSlots` instead. We added S to the charts prefix to align with other components.
|
|
44
7
|
*/
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
export
|
|
8
|
+
export type ChartDataProviderProSlots = ChartsDataProviderProSlots;
|
|
9
|
+
/**
|
|
10
|
+
* @deprecated Use `ChartsDataProviderProSlotProps` instead. We added S to the charts prefix to align with other components.
|
|
11
|
+
*/
|
|
12
|
+
export type ChartDataProviderProSlotProps = ChartsDataProviderProSlotProps;
|
|
13
|
+
/**
|
|
14
|
+
* @deprecated Use `ChartsDataProviderProProps` instead. We added S to the charts prefix to align with other components.
|
|
15
|
+
*/
|
|
16
|
+
export type ChartDataProviderProProps<TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>> = ChartsDataProviderProProps<TSeries, TSignatures>;
|
|
17
|
+
/**
|
|
18
|
+
* @deprecated Use `ChartsDataProviderPro` instead. We added S to the charts prefix to align with other components.
|
|
19
|
+
*/
|
|
20
|
+
export declare const ChartDataProviderPro: typeof ChartsDataProviderPro;
|
|
@@ -1,150 +1,30 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
'use client';
|
|
3
3
|
|
|
4
|
-
var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
|
|
5
4
|
Object.defineProperty(exports, "__esModule", {
|
|
6
5
|
value: true
|
|
7
6
|
});
|
|
8
|
-
exports.ChartDataProviderPro =
|
|
9
|
-
exports
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
var
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
7
|
+
exports.ChartDataProviderPro = void 0;
|
|
8
|
+
Object.defineProperty(exports, "defaultSeriesConfigPro", {
|
|
9
|
+
enumerable: true,
|
|
10
|
+
get: function () {
|
|
11
|
+
return _ChartsDataProviderPro.defaultSeriesConfigPro;
|
|
12
|
+
}
|
|
13
|
+
});
|
|
14
|
+
var _ChartsDataProviderPro = require("../ChartsDataProviderPro");
|
|
15
|
+
/**
|
|
16
|
+
* @deprecated Use `ChartsDataProviderProSlots` instead. We added S to the charts prefix to align with other components.
|
|
17
|
+
*/
|
|
18
|
+
|
|
19
|
+
/**
|
|
20
|
+
* @deprecated Use `ChartsDataProviderProSlotProps` instead. We added S to the charts prefix to align with other components.
|
|
21
|
+
*/
|
|
22
|
+
|
|
23
|
+
/**
|
|
24
|
+
* @deprecated Use `ChartsDataProviderProProps` instead. We added S to the charts prefix to align with other components.
|
|
25
|
+
*/
|
|
23
26
|
|
|
24
27
|
/**
|
|
25
|
-
*
|
|
26
|
-
*
|
|
27
|
-
* Use this component if you have custom HTML components that need to access the chart data.
|
|
28
|
-
*
|
|
29
|
-
* Demos:
|
|
30
|
-
*
|
|
31
|
-
* - [Composition](https://mui.com/x/api/charts/composition/)
|
|
32
|
-
*
|
|
33
|
-
* API:
|
|
34
|
-
*
|
|
35
|
-
* - [ChartDataProviderPro API](https://mui.com/x/api/charts/chart-data-provider-pro/)
|
|
36
|
-
*
|
|
37
|
-
* @example
|
|
38
|
-
* ```jsx
|
|
39
|
-
* <ChartDataProviderPro
|
|
40
|
-
* series={[{ label: "Label", type: "bar", data: [10, 20] }]}
|
|
41
|
-
* xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
|
|
42
|
-
* >
|
|
43
|
-
* <ChartsSurface>
|
|
44
|
-
* <BarPlot />
|
|
45
|
-
* <ChartsXAxis axisId="x-axis" />
|
|
46
|
-
* </ChartsSurface>
|
|
47
|
-
* {'Custom Legend Component'}
|
|
48
|
-
* </ChartDataProviderPro>
|
|
49
|
-
* ```
|
|
28
|
+
* @deprecated Use `ChartsDataProviderPro` instead. We added S to the charts prefix to align with other components.
|
|
50
29
|
*/
|
|
51
|
-
|
|
52
|
-
const {
|
|
53
|
-
children,
|
|
54
|
-
localeText,
|
|
55
|
-
chartProviderProps,
|
|
56
|
-
slots,
|
|
57
|
-
slotProps
|
|
58
|
-
} = (0, _useChartDataProviderProProps.useChartDataProviderProProps)((0, _extends2.default)({}, props, {
|
|
59
|
-
seriesConfig: props.seriesConfig ?? defaultSeriesConfigPro,
|
|
60
|
-
plugins: props.plugins ?? _allPlugins.DEFAULT_PLUGINS
|
|
61
|
-
}));
|
|
62
|
-
(0, _useLicenseVerifier.useLicenseVerifier)(packageIdentifier, releaseInfo);
|
|
63
|
-
return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_internals.ChartProvider, (0, _extends2.default)({}, chartProviderProps, {
|
|
64
|
-
children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_ChartsLocalizationProvider.ChartsLocalizationProvider, {
|
|
65
|
-
localeText: localeText,
|
|
66
|
-
children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_internals.ChartsSlotsProvider, {
|
|
67
|
-
slots: slots,
|
|
68
|
-
slotProps: slotProps,
|
|
69
|
-
defaultSlots: _material.defaultSlotsMaterial,
|
|
70
|
-
children: children
|
|
71
|
-
})
|
|
72
|
-
}), /*#__PURE__*/(0, _jsxRuntime.jsx)(_Watermark.Watermark, {
|
|
73
|
-
packageName: packageIdentifier,
|
|
74
|
-
releaseInfo: releaseInfo
|
|
75
|
-
})]
|
|
76
|
-
}));
|
|
77
|
-
}
|
|
78
|
-
process.env.NODE_ENV !== "production" ? ChartDataProviderPro.propTypes = {
|
|
79
|
-
// ----------------------------- Warning --------------------------------
|
|
80
|
-
// | These PropTypes are generated from the TypeScript type definitions |
|
|
81
|
-
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
82
|
-
// ----------------------------------------------------------------------
|
|
83
|
-
apiRef: _propTypes.default.shape({
|
|
84
|
-
current: _propTypes.default.any
|
|
85
|
-
}),
|
|
86
|
-
/**
|
|
87
|
-
* Color palette used to colorize multiple series.
|
|
88
|
-
* @default rainbowSurgePalette
|
|
89
|
-
*/
|
|
90
|
-
colors: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.string), _propTypes.default.func]),
|
|
91
|
-
/**
|
|
92
|
-
* An array of objects that can be used to populate series and axes data using their `dataKey` property.
|
|
93
|
-
*/
|
|
94
|
-
dataset: _propTypes.default.arrayOf(_propTypes.default.object),
|
|
95
|
-
/**
|
|
96
|
-
* Options to enable features planned for the next major.
|
|
97
|
-
*/
|
|
98
|
-
experimentalFeatures: _propTypes.default.shape({
|
|
99
|
-
preferStrictDomainInLineCharts: _propTypes.default.bool
|
|
100
|
-
}),
|
|
101
|
-
/**
|
|
102
|
-
* The height of the chart in px. If not defined, it takes the height of the parent element.
|
|
103
|
-
*/
|
|
104
|
-
height: _propTypes.default.number,
|
|
105
|
-
/**
|
|
106
|
-
* This prop is used to help implement the accessibility logic.
|
|
107
|
-
* If you don't provide this prop. It falls back to a randomly generated id.
|
|
108
|
-
*/
|
|
109
|
-
id: _propTypes.default.string,
|
|
110
|
-
/**
|
|
111
|
-
* Localized text for chart components.
|
|
112
|
-
*/
|
|
113
|
-
localeText: _propTypes.default.object,
|
|
114
|
-
/**
|
|
115
|
-
* The margin between the SVG and the drawing area.
|
|
116
|
-
* It's used for leaving some space for extra information such as the x- and y-axis or legend.
|
|
117
|
-
*
|
|
118
|
-
* Accepts a `number` to be used on all sides or an object with the optional properties: `top`, `bottom`, `left`, and `right`.
|
|
119
|
-
*/
|
|
120
|
-
margin: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.shape({
|
|
121
|
-
bottom: _propTypes.default.number,
|
|
122
|
-
left: _propTypes.default.number,
|
|
123
|
-
right: _propTypes.default.number,
|
|
124
|
-
top: _propTypes.default.number
|
|
125
|
-
})]),
|
|
126
|
-
/**
|
|
127
|
-
* The array of series to display.
|
|
128
|
-
* Each type of series has its own specificity.
|
|
129
|
-
* Please refer to the appropriate docs page to learn more about it.
|
|
130
|
-
*/
|
|
131
|
-
series: _propTypes.default.arrayOf(_propTypes.default.object),
|
|
132
|
-
/**
|
|
133
|
-
* If `true`, animations are skipped.
|
|
134
|
-
* If unset or `false`, the animations respects the user's `prefers-reduced-motion` setting.
|
|
135
|
-
*/
|
|
136
|
-
skipAnimation: _propTypes.default.bool,
|
|
137
|
-
/**
|
|
138
|
-
* The props for the slots.
|
|
139
|
-
*/
|
|
140
|
-
slotProps: _propTypes.default.object,
|
|
141
|
-
/**
|
|
142
|
-
* Slots to customize charts' components.
|
|
143
|
-
*/
|
|
144
|
-
slots: _propTypes.default.object,
|
|
145
|
-
theme: _propTypes.default.oneOf(['dark', 'light']),
|
|
146
|
-
/**
|
|
147
|
-
* The width of the chart in px. If not defined, it takes the width of the parent element.
|
|
148
|
-
*/
|
|
149
|
-
width: _propTypes.default.number
|
|
150
|
-
} : void 0;
|
|
30
|
+
const ChartDataProviderPro = exports.ChartDataProviderPro = _ChartsDataProviderPro.ChartsDataProviderPro;
|