@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
|
@@ -1,174 +0,0 @@
|
|
|
1
|
-
import { borderRadiusPolygon } from "./borderRadiusPolygon.js";
|
|
2
|
-
import { lerpX, lerpY } from "./utils.js";
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* This is a custom "step-pyramid" curve generator.
|
|
6
|
-
* It creates a step pyramid, which is a step-like shape with static lengths.
|
|
7
|
-
* It has the option to add a gap between sections while also properly handling the border radius.
|
|
8
|
-
*/
|
|
9
|
-
export class StepPyramid {
|
|
10
|
-
position = 0;
|
|
11
|
-
sections = 0;
|
|
12
|
-
isHorizontal = false;
|
|
13
|
-
isIncreasing = false;
|
|
14
|
-
gap = 0;
|
|
15
|
-
borderRadius = 0;
|
|
16
|
-
min = {
|
|
17
|
-
x: 0,
|
|
18
|
-
y: 0
|
|
19
|
-
};
|
|
20
|
-
max = {
|
|
21
|
-
x: 0,
|
|
22
|
-
y: 0
|
|
23
|
-
};
|
|
24
|
-
points = [];
|
|
25
|
-
constructor(context, {
|
|
26
|
-
isHorizontal,
|
|
27
|
-
gap,
|
|
28
|
-
position,
|
|
29
|
-
sections,
|
|
30
|
-
borderRadius,
|
|
31
|
-
min,
|
|
32
|
-
max,
|
|
33
|
-
isIncreasing
|
|
34
|
-
}) {
|
|
35
|
-
this.context = context;
|
|
36
|
-
this.isHorizontal = isHorizontal ?? false;
|
|
37
|
-
this.gap = gap ?? 0;
|
|
38
|
-
this.position = position ?? 0;
|
|
39
|
-
this.sections = sections ?? 1;
|
|
40
|
-
this.borderRadius = borderRadius ?? 0;
|
|
41
|
-
this.isIncreasing = isIncreasing ?? false;
|
|
42
|
-
this.min = min ?? {
|
|
43
|
-
x: 0,
|
|
44
|
-
y: 0
|
|
45
|
-
};
|
|
46
|
-
this.max = max ?? {
|
|
47
|
-
x: 0,
|
|
48
|
-
y: 0
|
|
49
|
-
};
|
|
50
|
-
}
|
|
51
|
-
areaStart() {}
|
|
52
|
-
areaEnd() {}
|
|
53
|
-
lineStart() {}
|
|
54
|
-
lineEnd() {}
|
|
55
|
-
getBorderRadius() {
|
|
56
|
-
if (this.gap > 0) {
|
|
57
|
-
return this.borderRadius;
|
|
58
|
-
}
|
|
59
|
-
if (this.isIncreasing) {
|
|
60
|
-
if (this.position === this.sections - 1) {
|
|
61
|
-
return this.borderRadius;
|
|
62
|
-
}
|
|
63
|
-
return [0, 0, this.borderRadius, this.borderRadius];
|
|
64
|
-
}
|
|
65
|
-
if (this.position === 0) {
|
|
66
|
-
return this.borderRadius;
|
|
67
|
-
}
|
|
68
|
-
return [this.borderRadius, this.borderRadius];
|
|
69
|
-
}
|
|
70
|
-
slopeStart(index) {
|
|
71
|
-
if (this.isIncreasing) {
|
|
72
|
-
if (this.isHorizontal) {
|
|
73
|
-
return {
|
|
74
|
-
x: this.min.x,
|
|
75
|
-
y: (this.min.y + this.max.y) / 2
|
|
76
|
-
};
|
|
77
|
-
}
|
|
78
|
-
return {
|
|
79
|
-
x: (this.min.x + this.max.x) / 2,
|
|
80
|
-
y: this.min.y
|
|
81
|
-
};
|
|
82
|
-
}
|
|
83
|
-
if (this.isHorizontal) {
|
|
84
|
-
if (index <= 1) {
|
|
85
|
-
return this.min;
|
|
86
|
-
}
|
|
87
|
-
return {
|
|
88
|
-
x: this.min.x,
|
|
89
|
-
y: this.max.y
|
|
90
|
-
};
|
|
91
|
-
}
|
|
92
|
-
if (index <= 1) {
|
|
93
|
-
return {
|
|
94
|
-
x: this.max.x,
|
|
95
|
-
y: this.min.y
|
|
96
|
-
};
|
|
97
|
-
}
|
|
98
|
-
return this.min;
|
|
99
|
-
}
|
|
100
|
-
slopeEnd(index) {
|
|
101
|
-
if (this.isIncreasing) {
|
|
102
|
-
if (this.isHorizontal) {
|
|
103
|
-
if (index <= 1) {
|
|
104
|
-
return {
|
|
105
|
-
x: this.max.x,
|
|
106
|
-
y: this.min.y
|
|
107
|
-
};
|
|
108
|
-
}
|
|
109
|
-
return this.max;
|
|
110
|
-
}
|
|
111
|
-
if (index <= 1) {
|
|
112
|
-
return this.max;
|
|
113
|
-
}
|
|
114
|
-
return {
|
|
115
|
-
x: this.min.x,
|
|
116
|
-
y: this.max.y
|
|
117
|
-
};
|
|
118
|
-
}
|
|
119
|
-
if (this.isHorizontal) {
|
|
120
|
-
return {
|
|
121
|
-
x: this.max.x,
|
|
122
|
-
y: (this.max.y + this.min.y) / 2
|
|
123
|
-
};
|
|
124
|
-
}
|
|
125
|
-
return {
|
|
126
|
-
x: (this.max.x + this.min.x) / 2,
|
|
127
|
-
y: this.max.y
|
|
128
|
-
};
|
|
129
|
-
}
|
|
130
|
-
initialX(index, points) {
|
|
131
|
-
if (this.isIncreasing) {
|
|
132
|
-
return index === 0 || index === 1 ? points.at(1).x : points.at(2).x;
|
|
133
|
-
}
|
|
134
|
-
return index === 0 || index === 1 ? points.at(0).x : points.at(3).x;
|
|
135
|
-
}
|
|
136
|
-
initialY(index, points) {
|
|
137
|
-
if (this.isIncreasing) {
|
|
138
|
-
return index === 0 || index === 1 ? points.at(1).y : points.at(2).y;
|
|
139
|
-
}
|
|
140
|
-
return index === 0 || index === 1 ? points.at(0).y : points.at(3).y;
|
|
141
|
-
}
|
|
142
|
-
processPoints(points) {
|
|
143
|
-
// Replace funnel points by pyramids ones.
|
|
144
|
-
const processedPoints = points.map((point, index) => {
|
|
145
|
-
const slopeStart = this.slopeStart(index);
|
|
146
|
-
const slopeEnd = this.slopeEnd(index);
|
|
147
|
-
if (this.isHorizontal) {
|
|
148
|
-
const yGetter = lerpY(slopeStart.x, slopeStart.y, slopeEnd.x, slopeEnd.y);
|
|
149
|
-
const xInitial = this.initialX(index, points);
|
|
150
|
-
return {
|
|
151
|
-
x: point.x,
|
|
152
|
-
y: yGetter(xInitial)
|
|
153
|
-
};
|
|
154
|
-
}
|
|
155
|
-
const xGetter = lerpX(slopeStart.x, slopeStart.y, slopeEnd.x, slopeEnd.y);
|
|
156
|
-
const yInitial = this.initialY(index, points);
|
|
157
|
-
return {
|
|
158
|
-
x: xGetter(yInitial),
|
|
159
|
-
y: point.y
|
|
160
|
-
};
|
|
161
|
-
});
|
|
162
|
-
return processedPoints;
|
|
163
|
-
}
|
|
164
|
-
point(xIn, yIn) {
|
|
165
|
-
this.points.push({
|
|
166
|
-
x: xIn,
|
|
167
|
-
y: yIn
|
|
168
|
-
});
|
|
169
|
-
if (this.points.length < 4) {
|
|
170
|
-
return;
|
|
171
|
-
}
|
|
172
|
-
borderRadiusPolygon(this.context, this.points, this.getBorderRadius());
|
|
173
|
-
}
|
|
174
|
-
}
|
|
@@ -1,36 +0,0 @@
|
|
|
1
|
-
import { type FunnelCurveGenerator, type CurveOptions, type Point } from "./curve.types.js";
|
|
2
|
-
/**
|
|
3
|
-
* This is a custom "step" curve generator.
|
|
4
|
-
* It is used to draw "rectangles" from 4 points without having to rework the rendering logic,
|
|
5
|
-
* with the option to add a gap between sections while also properly handling the border radius.
|
|
6
|
-
*
|
|
7
|
-
* It takes the min and max of the x and y coordinates of the points to create a rectangle.
|
|
8
|
-
*
|
|
9
|
-
* The implementation is based on the d3-shape step curve generator.
|
|
10
|
-
* https://github.com/d3/d3-shape/blob/a82254af78f08799c71d7ab25df557c4872a3c51/src/curve/step.js
|
|
11
|
-
*/
|
|
12
|
-
export declare class Step implements FunnelCurveGenerator {
|
|
13
|
-
private context;
|
|
14
|
-
private isHorizontal;
|
|
15
|
-
private isIncreasing;
|
|
16
|
-
private gap;
|
|
17
|
-
private borderRadius;
|
|
18
|
-
private position;
|
|
19
|
-
private sections;
|
|
20
|
-
private points;
|
|
21
|
-
constructor(context: CanvasRenderingContext2D, {
|
|
22
|
-
isHorizontal,
|
|
23
|
-
gap,
|
|
24
|
-
position,
|
|
25
|
-
borderRadius,
|
|
26
|
-
isIncreasing,
|
|
27
|
-
sections
|
|
28
|
-
}: CurveOptions);
|
|
29
|
-
areaStart(): void;
|
|
30
|
-
areaEnd(): void;
|
|
31
|
-
lineStart(): void;
|
|
32
|
-
lineEnd(): void;
|
|
33
|
-
protected getBorderRadius(): number | number[];
|
|
34
|
-
processPoints(points: Point[]): Point[];
|
|
35
|
-
point(xIn: number, yIn: number): void;
|
|
36
|
-
}
|
|
@@ -1,85 +0,0 @@
|
|
|
1
|
-
import { borderRadiusPolygon } from "./borderRadiusPolygon.js";
|
|
2
|
-
import { max, min } from "./utils.js";
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* This is a custom "step" curve generator.
|
|
6
|
-
* It is used to draw "rectangles" from 4 points without having to rework the rendering logic,
|
|
7
|
-
* with the option to add a gap between sections while also properly handling the border radius.
|
|
8
|
-
*
|
|
9
|
-
* It takes the min and max of the x and y coordinates of the points to create a rectangle.
|
|
10
|
-
*
|
|
11
|
-
* The implementation is based on the d3-shape step curve generator.
|
|
12
|
-
* https://github.com/d3/d3-shape/blob/a82254af78f08799c71d7ab25df557c4872a3c51/src/curve/step.js
|
|
13
|
-
*/
|
|
14
|
-
export class Step {
|
|
15
|
-
isHorizontal = false;
|
|
16
|
-
isIncreasing = false;
|
|
17
|
-
gap = 0;
|
|
18
|
-
borderRadius = 0;
|
|
19
|
-
position = 0;
|
|
20
|
-
sections = 0;
|
|
21
|
-
points = [];
|
|
22
|
-
constructor(context, {
|
|
23
|
-
isHorizontal,
|
|
24
|
-
gap,
|
|
25
|
-
position,
|
|
26
|
-
borderRadius,
|
|
27
|
-
isIncreasing,
|
|
28
|
-
sections
|
|
29
|
-
}) {
|
|
30
|
-
this.context = context;
|
|
31
|
-
this.isHorizontal = isHorizontal ?? false;
|
|
32
|
-
this.gap = gap ?? 0;
|
|
33
|
-
this.position = position ?? 0;
|
|
34
|
-
this.sections = sections ?? 1;
|
|
35
|
-
this.borderRadius = borderRadius ?? 0;
|
|
36
|
-
this.isIncreasing = isIncreasing ?? false;
|
|
37
|
-
}
|
|
38
|
-
areaStart() {}
|
|
39
|
-
areaEnd() {}
|
|
40
|
-
lineStart() {}
|
|
41
|
-
lineEnd() {}
|
|
42
|
-
getBorderRadius() {
|
|
43
|
-
if (this.gap > 0) {
|
|
44
|
-
return this.borderRadius;
|
|
45
|
-
}
|
|
46
|
-
if (this.isIncreasing) {
|
|
47
|
-
if (this.position === this.sections - 1) {
|
|
48
|
-
return this.borderRadius;
|
|
49
|
-
}
|
|
50
|
-
return [0, 0, this.borderRadius, this.borderRadius];
|
|
51
|
-
}
|
|
52
|
-
if (this.position === 0) {
|
|
53
|
-
return this.borderRadius;
|
|
54
|
-
}
|
|
55
|
-
return [this.borderRadius, this.borderRadius];
|
|
56
|
-
}
|
|
57
|
-
processPoints(points) {
|
|
58
|
-
// Ensure we have rectangles instead of trapezoids.
|
|
59
|
-
const processedPoints = points.map((_, index) => {
|
|
60
|
-
const allX = points.map(p => p.x);
|
|
61
|
-
const allY = points.map(p => p.y);
|
|
62
|
-
if (this.isHorizontal) {
|
|
63
|
-
return {
|
|
64
|
-
x: index === 1 || index === 2 ? max(allX) : min(allX),
|
|
65
|
-
y: index <= 1 ? max(allY) : min(allY)
|
|
66
|
-
};
|
|
67
|
-
}
|
|
68
|
-
return {
|
|
69
|
-
x: index <= 1 ? min(allX) : max(allX),
|
|
70
|
-
y: index === 1 || index === 2 ? max(allY) : min(allY)
|
|
71
|
-
};
|
|
72
|
-
});
|
|
73
|
-
return processedPoints;
|
|
74
|
-
}
|
|
75
|
-
point(xIn, yIn) {
|
|
76
|
-
this.points.push({
|
|
77
|
-
x: xIn,
|
|
78
|
-
y: yIn
|
|
79
|
-
});
|
|
80
|
-
if (this.points.length < 4) {
|
|
81
|
-
return;
|
|
82
|
-
}
|
|
83
|
-
borderRadiusPolygon(this.context, this.points, this.getBorderRadius());
|
|
84
|
-
}
|
|
85
|
-
}
|
|
@@ -1,158 +0,0 @@
|
|
|
1
|
-
import { type ChartsLabelMarkProps } from '@mui/x-charts/ChartsLabel';
|
|
2
|
-
import { type CommonSeriesType, type CartesianSeriesType, type CommonDefaultizedProps, type SeriesId } from '@mui/x-charts/internals';
|
|
3
|
-
import { type Position } from '@mui/x-charts/models';
|
|
4
|
-
import { type DefaultizedProps, type MakeRequired } from '@mui/x-internals/types';
|
|
5
|
-
import { type FunnelCurveType } from "./curves/index.js";
|
|
6
|
-
export type FunnelItemId = string | number;
|
|
7
|
-
export type FunnelValueType = {
|
|
8
|
-
/**
|
|
9
|
-
* A unique identifier of the funnel section.
|
|
10
|
-
*/
|
|
11
|
-
id?: FunnelItemId;
|
|
12
|
-
/**
|
|
13
|
-
* The value of the funnel section.
|
|
14
|
-
*/
|
|
15
|
-
value: number;
|
|
16
|
-
/**
|
|
17
|
-
* The label to display on the tooltip, funnel section, or the legend. It can be a string or a function.
|
|
18
|
-
*/
|
|
19
|
-
label?: string | ((location: 'tooltip' | 'legend' | 'section') => string | undefined);
|
|
20
|
-
/**
|
|
21
|
-
* The color of the funnel section
|
|
22
|
-
*/
|
|
23
|
-
color?: string;
|
|
24
|
-
/**
|
|
25
|
-
* Defines the mark type for the funnel item.
|
|
26
|
-
* @default 'square'
|
|
27
|
-
*/
|
|
28
|
-
labelMarkType?: ChartsLabelMarkProps['type'];
|
|
29
|
-
};
|
|
30
|
-
export interface FunnelSeriesType extends Omit<CommonSeriesType<FunnelValueType, 'funnel'>, 'color' | 'colorGetter'>, CartesianSeriesType {
|
|
31
|
-
type: 'funnel';
|
|
32
|
-
/**
|
|
33
|
-
* Data associated to the funnel section.
|
|
34
|
-
*/
|
|
35
|
-
data: Readonly<FunnelValueType[]>;
|
|
36
|
-
/**
|
|
37
|
-
* The label to display on the tooltip or the legend. It can be a string or a function.
|
|
38
|
-
*/
|
|
39
|
-
label?: string | ((location: 'tooltip' | 'legend') => string);
|
|
40
|
-
/**
|
|
41
|
-
* Layout of the funnel.
|
|
42
|
-
* @default 'vertical'
|
|
43
|
-
*/
|
|
44
|
-
layout?: 'horizontal' | 'vertical';
|
|
45
|
-
/**
|
|
46
|
-
* The type of curve to use for the line.
|
|
47
|
-
*
|
|
48
|
-
* - `bump`: A curve that creates a smooth transition between points, with a bump in the middle.
|
|
49
|
-
* - `linear`: A straight line between points.
|
|
50
|
-
* - `linear-sharp`: A straight line between points, the smaller end of the funnel is a triangle.
|
|
51
|
-
* - `step`: A step line that creates a staircase effect.
|
|
52
|
-
* - `pyramid`: A pyramid shape that connects the points.
|
|
53
|
-
* - `step-pyramid`: A step line that creates a staircase effect, with a pyramid shape.
|
|
54
|
-
*
|
|
55
|
-
* Read more about curves at [curve interpolation](https://mui.com/x/react-charts/funnel/#curve-interpolation).
|
|
56
|
-
* @default 'linear'
|
|
57
|
-
*/
|
|
58
|
-
curve?: FunnelCurveType;
|
|
59
|
-
/**
|
|
60
|
-
* The radius, in pixels, of the corners of the funnel sections.
|
|
61
|
-
* @default 8
|
|
62
|
-
*/
|
|
63
|
-
borderRadius?: number;
|
|
64
|
-
/**
|
|
65
|
-
* The label configuration for the funnel plot.
|
|
66
|
-
* Allows to customize the position and margin of the label that is displayed on the funnel sections.
|
|
67
|
-
*
|
|
68
|
-
* If set to `false`, the label will not be displayed.
|
|
69
|
-
* @default { vertical: 'middle', horizontal: 'center' }
|
|
70
|
-
*/
|
|
71
|
-
sectionLabel?: FunnelLabelOptions | ((item: FunnelItem) => FunnelLabelOptions | false) | false;
|
|
72
|
-
/**
|
|
73
|
-
* Defines if the funnel sections are filled or outlined.
|
|
74
|
-
*
|
|
75
|
-
* An `outlined` funnel will have a stroke around the sections and a translucent fill.
|
|
76
|
-
* A `filled` funnel will have a solid fill and no stroke.
|
|
77
|
-
*
|
|
78
|
-
* @default 'filled'
|
|
79
|
-
*/
|
|
80
|
-
variant?: 'filled' | 'outlined';
|
|
81
|
-
/**
|
|
82
|
-
* Controls how the funnel is drawn.
|
|
83
|
-
* Ignored on `step` and `linear-sharp` curves.
|
|
84
|
-
*
|
|
85
|
-
* This affects different curves in different ways:
|
|
86
|
-
* - `bump` & `linear`: Controls which section is the "starting" point of the funnel. This section has straight edges.
|
|
87
|
-
* - `pyramid` & `step-pyramid`: Fully changes the direction of the shape.
|
|
88
|
-
*
|
|
89
|
-
* @default 'auto'
|
|
90
|
-
*/
|
|
91
|
-
funnelDirection?: 'increasing' | 'decreasing' | 'auto';
|
|
92
|
-
}
|
|
93
|
-
/**
|
|
94
|
-
* An object that allows to identify a funnel item.
|
|
95
|
-
* Used for item interaction
|
|
96
|
-
*/
|
|
97
|
-
export type FunnelItemIdentifier = {
|
|
98
|
-
type: 'funnel';
|
|
99
|
-
/**
|
|
100
|
-
* The series id of the funnel.
|
|
101
|
-
*/
|
|
102
|
-
seriesId: SeriesId;
|
|
103
|
-
/**
|
|
104
|
-
* The index of the data point in the series.
|
|
105
|
-
*/
|
|
106
|
-
dataIndex: number;
|
|
107
|
-
};
|
|
108
|
-
export type FunnelItem = {
|
|
109
|
-
/**
|
|
110
|
-
* The series id of the funnel.
|
|
111
|
-
*/
|
|
112
|
-
seriesId: SeriesId;
|
|
113
|
-
/**
|
|
114
|
-
* The index of the data point in the series.
|
|
115
|
-
*/
|
|
116
|
-
dataIndex: number;
|
|
117
|
-
/**
|
|
118
|
-
* The value of the data point.
|
|
119
|
-
*/
|
|
120
|
-
value: number;
|
|
121
|
-
};
|
|
122
|
-
export interface DefaultizedFunnelSeriesType extends Omit<DefaultizedProps<FunnelSeriesType, CommonDefaultizedProps | 'layout'>, 'funnelDirection'> {
|
|
123
|
-
dataPoints: FunnelDataPoints[][];
|
|
124
|
-
data: Readonly<MakeRequired<FunnelValueType, 'id' | 'color'>[]>;
|
|
125
|
-
funnelDirection: 'increasing' | 'decreasing';
|
|
126
|
-
}
|
|
127
|
-
export type FunnelDataPoints = Record<'x' | 'y', number> & {
|
|
128
|
-
useBandWidth: boolean;
|
|
129
|
-
stackOffset: number;
|
|
130
|
-
};
|
|
131
|
-
export type FunnelLabelOptions = {
|
|
132
|
-
/**
|
|
133
|
-
* The position of the label.
|
|
134
|
-
* @default { vertical: 'middle', horizontal: 'center' }
|
|
135
|
-
*/
|
|
136
|
-
position?: Position;
|
|
137
|
-
/**
|
|
138
|
-
* The text anchor of the label. Affects the horizontal alignment of the text.
|
|
139
|
-
*
|
|
140
|
-
* Default value depends on the position.
|
|
141
|
-
*/
|
|
142
|
-
textAnchor?: 'start' | 'middle' | 'end';
|
|
143
|
-
/**
|
|
144
|
-
* The dominant baseline of the label. Affects the vertical alignment of the text.
|
|
145
|
-
*
|
|
146
|
-
* Default value depends on the position.
|
|
147
|
-
*/
|
|
148
|
-
dominantBaseline?: 'auto' | 'baseline' | 'hanging' | 'middle' | 'central' | 'text-after-edge' | 'text-before-edge';
|
|
149
|
-
/**
|
|
150
|
-
* The offset of the label from the anchor point.
|
|
151
|
-
* If a single number is provided, the offset will be applied in both directions.
|
|
152
|
-
* @default 0
|
|
153
|
-
*/
|
|
154
|
-
offset?: number | {
|
|
155
|
-
x?: number;
|
|
156
|
-
y?: number;
|
|
157
|
-
};
|
|
158
|
-
};
|
|
@@ -1,112 +0,0 @@
|
|
|
1
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
2
|
-
import { getAxisExtrema, isBandScaleConfig, isPointScaleConfig, isContinuousScaleConfig, getScale, getColorScale, getOrdinalColorScale, getTickNumber, scaleTickNumberByRange, getCartesianAxisTriggerTooltip, isDateData, createDateFormatter, getDefaultTickNumber, scaleBand } from '@mui/x-charts/internals';
|
|
3
|
-
export const xRangeGetter = (drawingArea, reverse, removedSpace = 0) => {
|
|
4
|
-
const range = [drawingArea.left, drawingArea.left + drawingArea.width - removedSpace];
|
|
5
|
-
return reverse ? [range[1], range[0]] : [range[0], range[1]];
|
|
6
|
-
};
|
|
7
|
-
export const yRangeGetter = (drawingArea, reverse, removedSpace = 0) => {
|
|
8
|
-
const range = [drawingArea.top + drawingArea.height - removedSpace, drawingArea.top];
|
|
9
|
-
return reverse ? [range[1], range[0]] : [range[0], range[1]];
|
|
10
|
-
};
|
|
11
|
-
function getRange(drawingArea, axisDirection, axis, removedSpace = 0) {
|
|
12
|
-
return axisDirection === 'x' ? xRangeGetter(drawingArea, axis.reverse, removedSpace) : yRangeGetter(drawingArea, axis.reverse, removedSpace);
|
|
13
|
-
}
|
|
14
|
-
export function computeAxisValue({
|
|
15
|
-
drawingArea,
|
|
16
|
-
formattedSeries,
|
|
17
|
-
axis: allAxis,
|
|
18
|
-
seriesConfig,
|
|
19
|
-
axisDirection,
|
|
20
|
-
gap
|
|
21
|
-
}) {
|
|
22
|
-
if (allAxis === undefined) {
|
|
23
|
-
return {
|
|
24
|
-
axis: {},
|
|
25
|
-
axisIds: []
|
|
26
|
-
};
|
|
27
|
-
}
|
|
28
|
-
const axisIdsTriggeringTooltip = getCartesianAxisTriggerTooltip(axisDirection, seriesConfig, formattedSeries, allAxis[0].id);
|
|
29
|
-
const completeAxis = {};
|
|
30
|
-
allAxis.forEach((eachAxis, axisIndex) => {
|
|
31
|
-
const axis = eachAxis;
|
|
32
|
-
let range = getRange(drawingArea, axisDirection, axis);
|
|
33
|
-
const [minData, maxData] = getAxisExtrema(axis, axisDirection, seriesConfig, axisIndex, formattedSeries);
|
|
34
|
-
const triggerTooltip = !axis.ignoreTooltip && axisIdsTriggeringTooltip.has(axis.id);
|
|
35
|
-
const data = axis.data ?? [];
|
|
36
|
-
if (isBandScaleConfig(axis)) {
|
|
37
|
-
// Reverse range because ordinal scales are presented from top to bottom on y-axis
|
|
38
|
-
const scaleRange = axisDirection === 'y' ? [range[1], range[0]] : range;
|
|
39
|
-
const rangeSpace = Math.abs(range[1] - range[0]);
|
|
40
|
-
const N = axis.data.length;
|
|
41
|
-
const bandWidth = (rangeSpace - gap * (N - 1)) / N;
|
|
42
|
-
const step = bandWidth + gap;
|
|
43
|
-
completeAxis[axis.id] = _extends({
|
|
44
|
-
offset: 0,
|
|
45
|
-
height: 0,
|
|
46
|
-
categoryGapRatio: 0,
|
|
47
|
-
barGapRatio: 0,
|
|
48
|
-
triggerTooltip
|
|
49
|
-
}, axis, {
|
|
50
|
-
data,
|
|
51
|
-
scale: scaleBand(axis.data, scaleRange).paddingInner(gap / step).paddingOuter(0),
|
|
52
|
-
tickNumber: axis.data.length,
|
|
53
|
-
colorScale: axis.colorMap && (axis.colorMap.type === 'ordinal' ? getOrdinalColorScale(_extends({
|
|
54
|
-
values: axis.data
|
|
55
|
-
}, axis.colorMap)) : getColorScale(axis.colorMap))
|
|
56
|
-
});
|
|
57
|
-
if (isDateData(axis.data)) {
|
|
58
|
-
const dateFormatter = createDateFormatter(axis.data, scaleRange, axis.tickNumber);
|
|
59
|
-
completeAxis[axis.id].valueFormatter = axis.valueFormatter ?? dateFormatter;
|
|
60
|
-
}
|
|
61
|
-
}
|
|
62
|
-
if (isBandScaleConfig(axis)) {
|
|
63
|
-
return;
|
|
64
|
-
}
|
|
65
|
-
if (isPointScaleConfig(axis)) {
|
|
66
|
-
throw new Error('Point scale is not supported in FunnelChart. Please use band scale instead.');
|
|
67
|
-
}
|
|
68
|
-
if (isContinuousScaleConfig(axis)) {
|
|
69
|
-
const isHorizontal = Object.values(formattedSeries.funnel?.series ?? {}).some(s => s.layout === 'horizontal');
|
|
70
|
-
if (isHorizontal ? axisDirection === 'x' : axisDirection === 'y') {
|
|
71
|
-
// For linear scale replacing the band scale, we remove the space needed for gap from the scale range.
|
|
72
|
-
const itemNumber = formattedSeries.funnel?.series[formattedSeries.funnel.seriesOrder[0]].data.length ?? 0;
|
|
73
|
-
const spaceToRemove = gap * (itemNumber - 1);
|
|
74
|
-
range = getRange(drawingArea, axisDirection, axis, spaceToRemove);
|
|
75
|
-
}
|
|
76
|
-
const scaleType = axis.scaleType ?? 'linear';
|
|
77
|
-
const domainLimit = axis.domainLimit ?? 'nice';
|
|
78
|
-
const axisExtremums = [axis.min ?? minData, axis.max ?? maxData];
|
|
79
|
-
if (typeof domainLimit === 'function') {
|
|
80
|
-
const {
|
|
81
|
-
min,
|
|
82
|
-
max
|
|
83
|
-
} = domainLimit(minData, maxData);
|
|
84
|
-
axisExtremums[0] = min;
|
|
85
|
-
axisExtremums[1] = max;
|
|
86
|
-
}
|
|
87
|
-
const rawTickNumber = getTickNumber(axis, axisExtremums, getDefaultTickNumber(Math.abs(range[1] - range[0])));
|
|
88
|
-
const tickNumber = scaleTickNumberByRange(rawTickNumber, range);
|
|
89
|
-
const scale = getScale(scaleType, axisExtremums, range);
|
|
90
|
-
const finalScale = domainLimit === 'nice' ? scale.nice(rawTickNumber) : scale;
|
|
91
|
-
const [minDomain, maxDomain] = finalScale.domain();
|
|
92
|
-
const domain = [axis.min ?? minDomain, axis.max ?? maxDomain];
|
|
93
|
-
completeAxis[axis.id] = _extends({
|
|
94
|
-
offset: 0,
|
|
95
|
-
height: 0,
|
|
96
|
-
triggerTooltip
|
|
97
|
-
}, axis, {
|
|
98
|
-
data,
|
|
99
|
-
scaleType: scaleType,
|
|
100
|
-
scale: finalScale.domain(domain),
|
|
101
|
-
tickNumber,
|
|
102
|
-
colorScale: axis.colorMap && getColorScale(axis.colorMap)
|
|
103
|
-
});
|
|
104
|
-
}
|
|
105
|
-
});
|
|
106
|
-
return {
|
|
107
|
-
axis: completeAxis,
|
|
108
|
-
axisIds: allAxis.map(({
|
|
109
|
-
id
|
|
110
|
-
}) => id)
|
|
111
|
-
};
|
|
112
|
-
}
|