@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,39 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
-
import _objectWithoutPropertiesLoose from "@babel/runtime/helpers/esm/objectWithoutPropertiesLoose";
|
|
5
|
-
const _excluded = ["borderRadius"];
|
|
6
|
-
import * as React from 'react';
|
|
7
|
-
import PropTypes from 'prop-types';
|
|
8
|
-
import { HeatmapSVGPlot } from "./HeatmapSVGPlot.js";
|
|
9
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
-
function HeatmapPlot(_ref) {
|
|
11
|
-
let {
|
|
12
|
-
borderRadius
|
|
13
|
-
} = _ref,
|
|
14
|
-
props = _objectWithoutPropertiesLoose(_ref, _excluded);
|
|
15
|
-
return /*#__PURE__*/_jsx(HeatmapSVGPlot, _extends({
|
|
16
|
-
borderRadius: borderRadius
|
|
17
|
-
}, props));
|
|
18
|
-
}
|
|
19
|
-
process.env.NODE_ENV !== "production" ? HeatmapPlot.propTypes = {
|
|
20
|
-
// ----------------------------- Warning --------------------------------
|
|
21
|
-
// | These PropTypes are generated from the TypeScript type definitions |
|
|
22
|
-
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
23
|
-
// ----------------------------------------------------------------------
|
|
24
|
-
/**
|
|
25
|
-
* The border radius of the heatmap cells in pixels.
|
|
26
|
-
*/
|
|
27
|
-
borderRadius: PropTypes.number,
|
|
28
|
-
/**
|
|
29
|
-
* The props used for each component slot.
|
|
30
|
-
* @default {}
|
|
31
|
-
*/
|
|
32
|
-
slotProps: PropTypes.object,
|
|
33
|
-
/**
|
|
34
|
-
* Overridable component slots.
|
|
35
|
-
* @default {}
|
|
36
|
-
*/
|
|
37
|
-
slots: PropTypes.object
|
|
38
|
-
} : void 0;
|
|
39
|
-
export { HeatmapPlot };
|
|
@@ -1,64 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import * as React from 'react';
|
|
4
|
-
import { useXScale, useYScale, useZColorScale } from '@mui/x-charts/hooks';
|
|
5
|
-
import { selectorChartsIsFadedCallback, selectorChartsIsHighlightedCallback, useStore, useRegisterPointerInteractions } from '@mui/x-charts/internals';
|
|
6
|
-
import { useHeatmapSeriesContext } from "../hooks/index.js";
|
|
7
|
-
import { HeatmapItem } from "./HeatmapItem.js";
|
|
8
|
-
import { selectorHeatmapItemAtPosition } from "../plugins/selectors/useChartHeatmapPosition.selectors.js";
|
|
9
|
-
import { shouldRegisterPointerInteractionsGlobally } from "./shouldRegisterPointerInteractionsGlobally.js";
|
|
10
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
11
|
-
const MemoHeatmapItem = /*#__PURE__*/React.memo(HeatmapItem);
|
|
12
|
-
if (process.env.NODE_ENV !== "production") MemoHeatmapItem.displayName = "MemoHeatmapItem";
|
|
13
|
-
export function HeatmapSVGPlot(props) {
|
|
14
|
-
const store = useStore();
|
|
15
|
-
const xScale = useXScale();
|
|
16
|
-
const yScale = useYScale();
|
|
17
|
-
const colorScale = useZColorScale();
|
|
18
|
-
const series = useHeatmapSeriesContext();
|
|
19
|
-
const isHighlighted = store.use(selectorChartsIsHighlightedCallback);
|
|
20
|
-
const isFaded = store.use(selectorChartsIsFadedCallback);
|
|
21
|
-
const xDomain = xScale.domain();
|
|
22
|
-
const yDomain = yScale.domain();
|
|
23
|
-
if (!series || series.seriesOrder.length === 0) {
|
|
24
|
-
return null;
|
|
25
|
-
}
|
|
26
|
-
const seriesToDisplay = series.series[series.seriesOrder[0]];
|
|
27
|
-
return /*#__PURE__*/_jsxs(React.Fragment, {
|
|
28
|
-
children: [shouldRegisterPointerInteractionsGlobally(props.slots, props.slotProps) ? /*#__PURE__*/_jsx(RegisterHeatmapPointerInteractions, {}) : null, /*#__PURE__*/_jsx("g", {
|
|
29
|
-
children: seriesToDisplay.data.map(([xIndex, yIndex, value], dataIndex) => {
|
|
30
|
-
const x = xScale(xDomain[xIndex]);
|
|
31
|
-
const y = yScale(yDomain[yIndex]);
|
|
32
|
-
const color = colorScale?.(value);
|
|
33
|
-
if (x === undefined || y === undefined || !color) {
|
|
34
|
-
return null;
|
|
35
|
-
}
|
|
36
|
-
const item = {
|
|
37
|
-
seriesId: seriesToDisplay.id,
|
|
38
|
-
dataIndex
|
|
39
|
-
};
|
|
40
|
-
return /*#__PURE__*/_jsx(MemoHeatmapItem, {
|
|
41
|
-
width: xScale.bandwidth(),
|
|
42
|
-
height: yScale.bandwidth(),
|
|
43
|
-
x: x,
|
|
44
|
-
y: y,
|
|
45
|
-
xIndex: xIndex,
|
|
46
|
-
yIndex: yIndex,
|
|
47
|
-
color: color,
|
|
48
|
-
dataIndex: dataIndex,
|
|
49
|
-
seriesId: series.seriesOrder[0],
|
|
50
|
-
value: value,
|
|
51
|
-
slots: props.slots,
|
|
52
|
-
slotProps: props.slotProps,
|
|
53
|
-
isHighlighted: isHighlighted(item),
|
|
54
|
-
isFaded: isFaded(item),
|
|
55
|
-
borderRadius: props.borderRadius
|
|
56
|
-
}, `${xIndex}_${yIndex}`);
|
|
57
|
-
})
|
|
58
|
-
})]
|
|
59
|
-
});
|
|
60
|
-
}
|
|
61
|
-
function RegisterHeatmapPointerInteractions() {
|
|
62
|
-
useRegisterPointerInteractions(selectorHeatmapItemAtPosition);
|
|
63
|
-
return null;
|
|
64
|
-
}
|
|
@@ -1,194 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import _extends from "@babel/runtime/helpers/esm/extends";
|
|
4
|
-
import PropTypes from 'prop-types';
|
|
5
|
-
import HTMLElementType from '@mui/utils/HTMLElementType';
|
|
6
|
-
import { ChartsTooltipContainer } from '@mui/x-charts/ChartsTooltip';
|
|
7
|
-
import { HeatmapTooltipContent } from "./HeatmapTooltipContent.js";
|
|
8
|
-
import { useUtilityClasses } from "./HeatmapTooltip.classes.js";
|
|
9
|
-
import { jsx as _jsx } from "react/jsx-runtime";
|
|
10
|
-
function HeatmapTooltip(props) {
|
|
11
|
-
const classes = useUtilityClasses({
|
|
12
|
-
classes: props.classes
|
|
13
|
-
});
|
|
14
|
-
return /*#__PURE__*/_jsx(ChartsTooltipContainer, _extends({
|
|
15
|
-
trigger: "item"
|
|
16
|
-
}, props, {
|
|
17
|
-
classes: classes,
|
|
18
|
-
children: /*#__PURE__*/_jsx(HeatmapTooltipContent, {
|
|
19
|
-
classes: classes
|
|
20
|
-
})
|
|
21
|
-
}));
|
|
22
|
-
}
|
|
23
|
-
process.env.NODE_ENV !== "production" ? HeatmapTooltip.propTypes = {
|
|
24
|
-
// ----------------------------- Warning --------------------------------
|
|
25
|
-
// | These PropTypes are generated from the TypeScript type definitions |
|
|
26
|
-
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
27
|
-
// ----------------------------------------------------------------------
|
|
28
|
-
/**
|
|
29
|
-
* Determine if the tooltip should be placed on the pointer location or on the node.
|
|
30
|
-
* @default 'pointer'
|
|
31
|
-
*/
|
|
32
|
-
anchor: PropTypes.oneOf(['node', 'pointer']),
|
|
33
|
-
/**
|
|
34
|
-
* An HTML element, [virtualElement](https://popper.js.org/docs/v2/virtual-elements/),
|
|
35
|
-
* or a function that returns either.
|
|
36
|
-
* It's used to set the position of the popper.
|
|
37
|
-
* The return value will passed as the reference object of the Popper instance.
|
|
38
|
-
*/
|
|
39
|
-
anchorEl: PropTypes /* @typescript-to-proptypes-ignore */.oneOfType([HTMLElementType, PropTypes.object, PropTypes.func]),
|
|
40
|
-
/**
|
|
41
|
-
* Override or extend the styles applied to the component.
|
|
42
|
-
*/
|
|
43
|
-
classes: PropTypes.object,
|
|
44
|
-
/**
|
|
45
|
-
* The component used for the root node.
|
|
46
|
-
* Either a string to use a HTML element or a component.
|
|
47
|
-
*/
|
|
48
|
-
component: PropTypes.elementType,
|
|
49
|
-
/**
|
|
50
|
-
* The components used for each slot inside the Popper.
|
|
51
|
-
* Either a string to use a HTML element or a component.
|
|
52
|
-
*
|
|
53
|
-
* @deprecated use the `slots` prop instead. This prop will be removed in a future major release. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
|
|
54
|
-
* @default {}
|
|
55
|
-
*/
|
|
56
|
-
components: PropTypes.shape({
|
|
57
|
-
Root: PropTypes.elementType
|
|
58
|
-
}),
|
|
59
|
-
/**
|
|
60
|
-
* The props used for each slot inside the Popper.
|
|
61
|
-
*
|
|
62
|
-
* @deprecated use the `slotProps` prop instead. This prop will be removed in a future major release. [How to migrate](/material-ui/migration/migrating-from-deprecated-apis/).
|
|
63
|
-
* @default {}
|
|
64
|
-
*/
|
|
65
|
-
componentsProps: PropTypes.shape({
|
|
66
|
-
root: PropTypes.oneOfType([PropTypes.func, PropTypes.object])
|
|
67
|
-
}),
|
|
68
|
-
/**
|
|
69
|
-
* An HTML element or function that returns one.
|
|
70
|
-
* The `container` will have the portal children appended to it.
|
|
71
|
-
*
|
|
72
|
-
* You can also provide a callback, which is called in a React layout effect.
|
|
73
|
-
* This lets you set the container from a ref, and also makes server-side rendering possible.
|
|
74
|
-
*
|
|
75
|
-
* By default, it uses the body of the top-level document object,
|
|
76
|
-
* so it's simply `document.body` most of the time.
|
|
77
|
-
*/
|
|
78
|
-
container: PropTypes.oneOfType([(props, propName) => {
|
|
79
|
-
if (props[propName] == null) {
|
|
80
|
-
return new Error(`Prop '${propName}' is required but wasn't specified`);
|
|
81
|
-
}
|
|
82
|
-
if (typeof props[propName] !== 'object' || props[propName].nodeType !== 1) {
|
|
83
|
-
return new Error(`Expected prop '${propName}' to be of type Element`);
|
|
84
|
-
}
|
|
85
|
-
return null;
|
|
86
|
-
}, PropTypes.func]),
|
|
87
|
-
/**
|
|
88
|
-
* The `children` will be under the DOM hierarchy of the parent component.
|
|
89
|
-
* @default false
|
|
90
|
-
*/
|
|
91
|
-
disablePortal: PropTypes.bool,
|
|
92
|
-
/**
|
|
93
|
-
* Always keep the children in the DOM.
|
|
94
|
-
* This prop can be useful in SEO situation or
|
|
95
|
-
* when you want to maximize the responsiveness of the Popper.
|
|
96
|
-
* @default false
|
|
97
|
-
*/
|
|
98
|
-
keepMounted: PropTypes.bool,
|
|
99
|
-
/**
|
|
100
|
-
* Popper.js is based on a "plugin-like" architecture,
|
|
101
|
-
* most of its features are fully encapsulated "modifiers".
|
|
102
|
-
*
|
|
103
|
-
* A modifier is a function that is called each time Popper.js needs to
|
|
104
|
-
* compute the position of the popper.
|
|
105
|
-
* For this reason, modifiers should be very performant to avoid bottlenecks.
|
|
106
|
-
* To learn how to create a modifier, [read the modifiers documentation](https://popper.js.org/docs/v2/modifiers/).
|
|
107
|
-
*/
|
|
108
|
-
modifiers: PropTypes.arrayOf(PropTypes.shape({
|
|
109
|
-
data: PropTypes.object,
|
|
110
|
-
effect: PropTypes.func,
|
|
111
|
-
enabled: PropTypes.bool,
|
|
112
|
-
fn: PropTypes.func,
|
|
113
|
-
name: PropTypes.any,
|
|
114
|
-
options: PropTypes.object,
|
|
115
|
-
phase: PropTypes.oneOf(['afterMain', 'afterRead', 'afterWrite', 'beforeMain', 'beforeRead', 'beforeWrite', 'main', 'read', 'write']),
|
|
116
|
-
requires: PropTypes.arrayOf(PropTypes.string),
|
|
117
|
-
requiresIfExists: PropTypes.arrayOf(PropTypes.string)
|
|
118
|
-
})),
|
|
119
|
-
/**
|
|
120
|
-
* If `true`, the component is shown.
|
|
121
|
-
*/
|
|
122
|
-
open: PropTypes.bool,
|
|
123
|
-
/**
|
|
124
|
-
* Popper placement.
|
|
125
|
-
* @default 'bottom'
|
|
126
|
-
*/
|
|
127
|
-
placement: PropTypes.oneOf(['auto-end', 'auto-start', 'auto', 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']),
|
|
128
|
-
/**
|
|
129
|
-
* Options provided to the [`Popper.js`](https://popper.js.org/docs/v2/constructors/#options) instance.
|
|
130
|
-
* @default {}
|
|
131
|
-
*/
|
|
132
|
-
popperOptions: PropTypes.shape({
|
|
133
|
-
modifiers: PropTypes.array,
|
|
134
|
-
onFirstUpdate: PropTypes.func,
|
|
135
|
-
placement: PropTypes.oneOf(['auto-end', 'auto-start', 'auto', 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']),
|
|
136
|
-
strategy: PropTypes.oneOf(['absolute', 'fixed'])
|
|
137
|
-
}),
|
|
138
|
-
/**
|
|
139
|
-
* A ref that points to the used popper instance.
|
|
140
|
-
*/
|
|
141
|
-
popperRef: PropTypes.oneOfType([PropTypes.func, PropTypes.shape({
|
|
142
|
-
current: PropTypes.shape({
|
|
143
|
-
destroy: PropTypes.func.isRequired,
|
|
144
|
-
forceUpdate: PropTypes.func.isRequired,
|
|
145
|
-
setOptions: PropTypes.func.isRequired,
|
|
146
|
-
state: PropTypes.shape({
|
|
147
|
-
attributes: PropTypes.object.isRequired,
|
|
148
|
-
elements: PropTypes.object.isRequired,
|
|
149
|
-
modifiersData: PropTypes.object.isRequired,
|
|
150
|
-
options: PropTypes.object.isRequired,
|
|
151
|
-
orderedModifiers: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
152
|
-
placement: PropTypes.oneOf(['auto-end', 'auto-start', 'auto', 'bottom-end', 'bottom-start', 'bottom', 'left-end', 'left-start', 'left', 'right-end', 'right-start', 'right', 'top-end', 'top-start', 'top']).isRequired,
|
|
153
|
-
rects: PropTypes.object.isRequired,
|
|
154
|
-
reset: PropTypes.bool.isRequired,
|
|
155
|
-
scrollParents: PropTypes.object.isRequired,
|
|
156
|
-
strategy: PropTypes.oneOf(['absolute', 'fixed']).isRequired,
|
|
157
|
-
styles: PropTypes.object.isRequired
|
|
158
|
-
}).isRequired,
|
|
159
|
-
update: PropTypes.func.isRequired
|
|
160
|
-
})
|
|
161
|
-
})]),
|
|
162
|
-
/**
|
|
163
|
-
* Determines the tooltip position relatively to the anchor.
|
|
164
|
-
*/
|
|
165
|
-
position: PropTypes.oneOf(['bottom', 'left', 'right', 'top']),
|
|
166
|
-
/**
|
|
167
|
-
* The props used for each slot inside the Popper.
|
|
168
|
-
* @default {}
|
|
169
|
-
*/
|
|
170
|
-
slotProps: PropTypes.object,
|
|
171
|
-
/**
|
|
172
|
-
* The components used for each slot inside the Popper.
|
|
173
|
-
* Either a string to use a HTML element or a component.
|
|
174
|
-
* @default {}
|
|
175
|
-
*/
|
|
176
|
-
slots: PropTypes.object,
|
|
177
|
-
/**
|
|
178
|
-
* The system prop that allows defining system overrides as well as additional CSS styles.
|
|
179
|
-
*/
|
|
180
|
-
sx: PropTypes.oneOfType([PropTypes.arrayOf(PropTypes.oneOfType([PropTypes.func, PropTypes.object, PropTypes.bool])), PropTypes.func, PropTypes.object]),
|
|
181
|
-
/**
|
|
182
|
-
* Help supporting a react-transition-group/Transition component.
|
|
183
|
-
* @default false
|
|
184
|
-
*/
|
|
185
|
-
transition: PropTypes.bool,
|
|
186
|
-
/**
|
|
187
|
-
* Select the kind of tooltip to display
|
|
188
|
-
* - 'item': Shows data about the item below the mouse.
|
|
189
|
-
* - 'none': Does not display tooltip
|
|
190
|
-
* @default 'item'
|
|
191
|
-
*/
|
|
192
|
-
trigger: PropTypes.oneOf(['item', 'none'])
|
|
193
|
-
} : void 0;
|
|
194
|
-
export { HeatmapTooltip };
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { type ChartsTooltipContainerProps, type ChartsTooltipClasses, type ChartsTooltipSlots, type ChartsTooltipSlotProps } from '@mui/x-charts/ChartsTooltip';
|
|
2
|
-
export interface HeatmapTooltipSlots extends ChartsTooltipSlots {}
|
|
3
|
-
export interface HeatmapTooltipSlotProps extends ChartsTooltipSlotProps {}
|
|
4
|
-
export interface HeatmapTooltipClasses extends ChartsTooltipClasses {}
|
|
5
|
-
export interface HeatmapTooltipContentClasses extends ChartsTooltipClasses {}
|
|
6
|
-
export interface HeatmapTooltipProps extends Omit<ChartsTooltipContainerProps, 'trigger' | 'children'> {
|
|
7
|
-
/**
|
|
8
|
-
* Select the kind of tooltip to display
|
|
9
|
-
* - 'item': Shows data about the item below the mouse.
|
|
10
|
-
* - 'none': Does not display tooltip
|
|
11
|
-
* @default 'item'
|
|
12
|
-
*/
|
|
13
|
-
trigger?: 'item' | 'none';
|
|
14
|
-
}
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { type HeatmapTooltipProps } from "./HeatmapTooltip.types.js";
|
|
2
|
-
export interface HeatmapTooltipContentProps extends Pick<HeatmapTooltipProps, 'classes'> {}
|
|
3
|
-
export declare function HeatmapTooltipContent(props: HeatmapTooltipContentProps): import("react/jsx-runtime").JSX.Element | null;
|
|
4
|
-
export declare namespace HeatmapTooltipContent {
|
|
5
|
-
var propTypes: any;
|
|
6
|
-
}
|
|
@@ -1,88 +0,0 @@
|
|
|
1
|
-
'use client';
|
|
2
|
-
|
|
3
|
-
import PropTypes from 'prop-types';
|
|
4
|
-
import clsx from 'clsx';
|
|
5
|
-
import { ChartsTooltipPaper, ChartsTooltipTable, ChartsTooltipRow, ChartsTooltipCell, useItemTooltip } from '@mui/x-charts/ChartsTooltip';
|
|
6
|
-
import { useXAxis, useYAxis } from '@mui/x-charts/hooks';
|
|
7
|
-
import { getLabel, ChartsLabelMark } from '@mui/x-charts/internals';
|
|
8
|
-
import { useHeatmapSeriesContext } from "../../hooks/useHeatmapSeries.js";
|
|
9
|
-
import { HeatmapTooltipAxesValue } from "./HeatmapTooltipAxesValue.js";
|
|
10
|
-
import { useUtilityClasses } from "./HeatmapTooltip.classes.js";
|
|
11
|
-
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
12
|
-
export function HeatmapTooltipContent(props) {
|
|
13
|
-
const classes = useUtilityClasses(props);
|
|
14
|
-
const xAxis = useXAxis();
|
|
15
|
-
const yAxis = useYAxis();
|
|
16
|
-
const heatmapSeries = useHeatmapSeriesContext();
|
|
17
|
-
const tooltipData = useItemTooltip();
|
|
18
|
-
const dataIndex = tooltipData?.identifier.dataIndex;
|
|
19
|
-
if (!tooltipData || dataIndex === undefined || !heatmapSeries || heatmapSeries.seriesOrder.length === 0) {
|
|
20
|
-
return null;
|
|
21
|
-
}
|
|
22
|
-
const {
|
|
23
|
-
series,
|
|
24
|
-
seriesOrder
|
|
25
|
-
} = heatmapSeries;
|
|
26
|
-
const seriesId = seriesOrder[0];
|
|
27
|
-
const {
|
|
28
|
-
color,
|
|
29
|
-
value,
|
|
30
|
-
markType
|
|
31
|
-
} = tooltipData;
|
|
32
|
-
const [xIndex, yIndex] = value;
|
|
33
|
-
const formattedX = xAxis.valueFormatter?.(xAxis.data[xIndex], {
|
|
34
|
-
location: 'tooltip',
|
|
35
|
-
scale: xAxis.scale
|
|
36
|
-
}) ?? xAxis.data[xIndex].toLocaleString();
|
|
37
|
-
const formattedY = yAxis.valueFormatter?.(yAxis.data[yIndex], {
|
|
38
|
-
location: 'tooltip',
|
|
39
|
-
scale: yAxis.scale
|
|
40
|
-
}) ?? yAxis.data[yIndex].toLocaleString();
|
|
41
|
-
const formattedValue = series[seriesId].valueFormatter(value, {
|
|
42
|
-
dataIndex
|
|
43
|
-
});
|
|
44
|
-
const seriesLabel = getLabel(series[seriesId].label, 'tooltip');
|
|
45
|
-
return /*#__PURE__*/_jsx(ChartsTooltipPaper, {
|
|
46
|
-
className: classes.paper,
|
|
47
|
-
children: /*#__PURE__*/_jsxs(ChartsTooltipTable, {
|
|
48
|
-
className: classes.table,
|
|
49
|
-
children: [/*#__PURE__*/_jsxs(HeatmapTooltipAxesValue, {
|
|
50
|
-
children: [/*#__PURE__*/_jsx("span", {
|
|
51
|
-
children: formattedX
|
|
52
|
-
}), /*#__PURE__*/_jsx("span", {
|
|
53
|
-
children: formattedY
|
|
54
|
-
})]
|
|
55
|
-
}), /*#__PURE__*/_jsx("tbody", {
|
|
56
|
-
children: /*#__PURE__*/_jsxs(ChartsTooltipRow, {
|
|
57
|
-
className: classes.row,
|
|
58
|
-
children: [/*#__PURE__*/_jsxs(ChartsTooltipCell, {
|
|
59
|
-
className: clsx(classes.labelCell, classes.cell),
|
|
60
|
-
component: "th",
|
|
61
|
-
children: [/*#__PURE__*/_jsx("div", {
|
|
62
|
-
className: classes.markContainer,
|
|
63
|
-
children: /*#__PURE__*/_jsx(ChartsLabelMark, {
|
|
64
|
-
type: markType,
|
|
65
|
-
color: color,
|
|
66
|
-
className: classes.mark
|
|
67
|
-
})
|
|
68
|
-
}), seriesLabel]
|
|
69
|
-
}), /*#__PURE__*/_jsx(ChartsTooltipCell, {
|
|
70
|
-
className: clsx(classes.valueCell, classes.cell),
|
|
71
|
-
component: "td",
|
|
72
|
-
children: formattedValue
|
|
73
|
-
})]
|
|
74
|
-
})
|
|
75
|
-
})]
|
|
76
|
-
})
|
|
77
|
-
});
|
|
78
|
-
}
|
|
79
|
-
process.env.NODE_ENV !== "production" ? HeatmapTooltipContent.propTypes = {
|
|
80
|
-
// ----------------------------- Warning --------------------------------
|
|
81
|
-
// | These PropTypes are generated from the TypeScript type definitions |
|
|
82
|
-
// | To update them edit the TypeScript types and run "pnpm proptypes" |
|
|
83
|
-
// ----------------------------------------------------------------------
|
|
84
|
-
/**
|
|
85
|
-
* Override or extend the styles applied to the component.
|
|
86
|
-
*/
|
|
87
|
-
classes: PropTypes.object
|
|
88
|
-
} : void 0;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
export interface HeatmapClasses {
|
|
2
|
-
/** Styles applied to the heatmap cells. */
|
|
3
|
-
cell: string;
|
|
4
|
-
/** Styles applied to the cell element if highlighted. */
|
|
5
|
-
highlighted: string;
|
|
6
|
-
/** Styles applied to the cell element if faded. */
|
|
7
|
-
faded: string;
|
|
8
|
-
/**
|
|
9
|
-
* Styles applied to the root element for a specified series.
|
|
10
|
-
* Needs to be suffixed with the series ID: `.${heatmapClasses.series}-${seriesId}`.
|
|
11
|
-
*/
|
|
12
|
-
series: string;
|
|
13
|
-
}
|
|
14
|
-
export type HeatmapClassKey = keyof HeatmapClasses;
|
|
15
|
-
export declare function getHeatmapUtilityClass(slot: string): string;
|
|
16
|
-
export declare const heatmapClasses: HeatmapClasses;
|
package/esm/Heatmap/index.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
export { Heatmap } from "./Heatmap.js";
|
|
2
|
-
export type { HeatmapSeries, HeatmapProps, HeatmapSlots, HeatmapSlotProps } from "./Heatmap.js";
|
|
3
|
-
export { HeatmapPlot, type HeatmapPlotProps } from "./HeatmapPlot.js";
|
|
4
|
-
export type { HeatmapPlotSlots, HeatmapPlotSlotProps } from "./Heatmap.types.js";
|
|
5
|
-
export * from "./FocusedHeatmapCell.js";
|
|
6
|
-
export type { HeatmapCellProps } from "./internals/HeatmapCell.js";
|
|
7
|
-
export * from "./HeatmapTooltip/index.js";
|
|
8
|
-
export * from "./Heatmap.plugins.js";
|
|
9
|
-
export * from "./heatmapClasses.js";
|
package/esm/Heatmap/index.js
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
import type * as React from 'react';
|
|
2
|
-
import type { SeriesId } from '@mui/x-charts/models';
|
|
3
|
-
import type { HeatmapClasses } from "../heatmapClasses.js";
|
|
4
|
-
export interface HeatmapItemOwnerState {
|
|
5
|
-
seriesId: SeriesId;
|
|
6
|
-
dataIndex: number;
|
|
7
|
-
color: string;
|
|
8
|
-
isFaded: boolean;
|
|
9
|
-
isHighlighted: boolean;
|
|
10
|
-
classes?: Partial<HeatmapClasses>;
|
|
11
|
-
}
|
|
12
|
-
export interface HeatmapCellProps extends React.ComponentPropsWithRef<'rect'> {
|
|
13
|
-
x: number;
|
|
14
|
-
y: number;
|
|
15
|
-
width: number;
|
|
16
|
-
height: number;
|
|
17
|
-
ownerState: HeatmapItemOwnerState;
|
|
18
|
-
}
|
|
19
|
-
export declare const HeatmapCell: import("@emotion/styled").StyledComponent<import("@mui/system").MUIStyledCommonProps<import("@mui/material/styles").Theme> & {
|
|
20
|
-
ownerState: HeatmapItemOwnerState;
|
|
21
|
-
}, Pick<React.SVGProps<SVGRectElement>, keyof React.SVGProps<SVGRectElement>>, {}>;
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import type { ChartState, UseChartCartesianAxisSignature } from '@mui/x-charts/internals';
|
|
2
|
-
import type { SeriesItemIdentifier } from '@mui/x-charts/models';
|
|
3
|
-
export default function getItemAtPosition(state: ChartState<[UseChartCartesianAxisSignature]>, point: {
|
|
4
|
-
x: number;
|
|
5
|
-
y: number;
|
|
6
|
-
}): SeriesItemIdentifier<'heatmap'> | undefined;
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { cartesianSeriesTypes, identifierSerializerSeriesIdDataIndex, identifierCleanerSeriesIdDataIndex } from '@mui/x-charts/internals';
|
|
2
|
-
import { getBaseExtremum } from "./extremums.js";
|
|
3
|
-
import seriesProcessor from "./seriesProcessor.js";
|
|
4
|
-
import getColor from "./getColor.js";
|
|
5
|
-
import tooltipGetter from "./tooltip.js";
|
|
6
|
-
import getSeriesWithDefaultValues from "./getSeriesWithDefaultValues.js";
|
|
7
|
-
import tooltipItemPositionGetter from "./tooltipPosition.js";
|
|
8
|
-
import getItemAtPosition from "./getItemAtPosition.js";
|
|
9
|
-
import keyboardFocusHandler from "./keyboardFocusHandler.js";
|
|
10
|
-
cartesianSeriesTypes.addType('heatmap');
|
|
11
|
-
export const heatmapSeriesConfig = {
|
|
12
|
-
seriesProcessor,
|
|
13
|
-
colorProcessor: getColor,
|
|
14
|
-
legendGetter: () => [],
|
|
15
|
-
tooltipGetter,
|
|
16
|
-
tooltipItemPositionGetter,
|
|
17
|
-
xExtremumGetter: getBaseExtremum,
|
|
18
|
-
yExtremumGetter: getBaseExtremum,
|
|
19
|
-
getSeriesWithDefaultValues,
|
|
20
|
-
identifierSerializer: identifierSerializerSeriesIdDataIndex,
|
|
21
|
-
identifierCleaner: identifierCleanerSeriesIdDataIndex,
|
|
22
|
-
getItemAtPosition,
|
|
23
|
-
keyboardFocusHandler
|
|
24
|
-
};
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { HeatmapCell } from "./internals/HeatmapCell.js";
|
|
2
|
-
|
|
3
|
-
/* Global pointer interactions should be registered when we're using the default HeatmapCell.
|
|
4
|
-
* We only want to return false when a custom slot is being used to avoid breaking changes.
|
|
5
|
-
*
|
|
6
|
-
* This can be removed in v9. */
|
|
7
|
-
export function shouldRegisterPointerInteractionsGlobally(slots, slotProps) {
|
|
8
|
-
// If 'onPointerEnter' is defined in the slotProps, we don't want to register globally.
|
|
9
|
-
if ('onPointerEnter' in (slotProps?.cell ?? {})) {
|
|
10
|
-
return false;
|
|
11
|
-
}
|
|
12
|
-
return slots === undefined || slots.cell === HeatmapCell;
|
|
13
|
-
}
|
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
import { type ChartsWrapperProps } from '@mui/x-charts/ChartsWrapper';
|
|
2
|
-
import * as React from 'react';
|
|
3
|
-
import { type ChartsLegendProps, type ChartsLegendSlotExtension } from '@mui/x-charts/ChartsLegend';
|
|
4
|
-
import type { ChartsOverlayProps } from '@mui/x-charts/ChartsOverlay';
|
|
5
|
-
import { type ChartsClipPathProps } from '@mui/x-charts/ChartsClipPath';
|
|
6
|
-
import type { ChartsAxisProps } from '@mui/x-charts/ChartsAxis';
|
|
7
|
-
import { type HeatmapPluginSignatures } from "./Heatmap.plugins.js";
|
|
8
|
-
import { type HeatmapProps } from "./Heatmap.js";
|
|
9
|
-
import { type ChartDataProviderProProps } from "../ChartDataProviderPro/index.js";
|
|
10
|
-
import { type HeatmapPlotProps } from "./HeatmapPlot.js";
|
|
11
|
-
export type UseHeatmapProps = HeatmapProps;
|
|
12
|
-
export declare function useHeatmapProps(props: UseHeatmapProps): {
|
|
13
|
-
chartDataProviderProProps: ChartDataProviderProProps<"heatmap", HeatmapPluginSignatures>;
|
|
14
|
-
chartsWrapperProps: Omit<ChartsWrapperProps, "children">;
|
|
15
|
-
heatmapPlotProps: HeatmapPlotProps;
|
|
16
|
-
clipPathProps: ChartsClipPathProps;
|
|
17
|
-
clipPathGroupProps: {
|
|
18
|
-
clipPath: string;
|
|
19
|
-
};
|
|
20
|
-
overlayProps: ChartsOverlayProps;
|
|
21
|
-
chartsAxisProps: ChartsAxisProps;
|
|
22
|
-
legendProps: ChartsLegendProps | ChartsLegendSlotExtension;
|
|
23
|
-
children: React.ReactNode;
|
|
24
|
-
};
|