@mui/x-charts-pro 8.27.0 → 9.0.0-alpha.0

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.
Files changed (200) hide show
  1. package/BarChartPro/BarChartPro.js +9 -4
  2. package/CHANGELOG.md +255 -3
  3. package/ChartContainerPro/ChartContainerPro.d.ts +17 -31
  4. package/ChartContainerPro/ChartContainerPro.js +14 -287
  5. package/ChartContainerPro/useChartContainerProProps.d.ts +9 -5
  6. package/ChartContainerPro/useChartContainerProProps.js +9 -34
  7. package/ChartDataProviderPro/ChartDataProviderPro.d.ts +5 -3
  8. package/ChartDataProviderPro/ChartDataProviderPro.js +2 -2
  9. package/ChartDataProviderPro/index.d.ts +1 -1
  10. package/ChartDataProviderPro/useChartDataProviderProProps.d.ts +3 -3
  11. package/ChartZoomSlider/internals/ChartAxisZoomSliderActiveTrack.js +8 -6
  12. package/ChartZoomSlider/internals/ChartAxisZoomSliderTrack.js +6 -4
  13. package/ChartZoomSlider/internals/previews/AreaPreviewPlot.d.ts +1 -1
  14. package/ChartZoomSlider/internals/previews/AreaPreviewPlot.js +4 -4
  15. package/ChartZoomSlider/internals/previews/BarPreviewPlot.js +1 -1
  16. package/ChartZoomSlider/internals/previews/LinePreviewPlot.d.ts +1 -1
  17. package/ChartZoomSlider/internals/previews/LinePreviewPlot.js +4 -4
  18. package/ChartsContainer/index.d.ts +1 -0
  19. package/ChartsContainer/index.js +16 -0
  20. package/ChartsContainerPro/ChartsContainerPro.d.ts +37 -0
  21. package/ChartsContainerPro/ChartsContainerPro.js +187 -0
  22. package/ChartsContainerPro/index.d.ts +9 -0
  23. package/ChartsContainerPro/index.js +17 -0
  24. package/ChartsContainerPro/useChartsContainerProProps.d.ts +9 -0
  25. package/ChartsContainerPro/useChartsContainerProProps.js +44 -0
  26. package/FunnelChart/FunnelChart.js +4 -4
  27. package/FunnelChart/FunnelSection.d.ts +1 -1
  28. package/FunnelChart/funnel.types.d.ts +1 -1
  29. package/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.js +12 -9
  30. package/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.types.d.ts +3 -2
  31. package/FunnelChart/funnelAxisPlugin/useChartFunnelAxisRendering.selectors.d.ts +3 -3
  32. package/FunnelChart/index.d.ts +1 -0
  33. package/FunnelChart/index.js +12 -0
  34. package/FunnelChart/seriesConfig/index.js +2 -1
  35. package/FunnelChart/seriesConfig/legend.js +0 -1
  36. package/Heatmap/Heatmap.d.ts +5 -2
  37. package/Heatmap/Heatmap.js +27 -132
  38. package/Heatmap/Heatmap.types.d.ts +19 -0
  39. package/Heatmap/Heatmap.types.js +5 -0
  40. package/Heatmap/HeatmapItem.d.ts +6 -0
  41. package/Heatmap/HeatmapItem.js +11 -3
  42. package/Heatmap/HeatmapPlot.d.ts +7 -3
  43. package/Heatmap/HeatmapPlot.js +16 -54
  44. package/Heatmap/HeatmapSVGPlot.d.ts +2 -0
  45. package/Heatmap/HeatmapSVGPlot.js +70 -0
  46. package/Heatmap/HeatmapTooltip/HeatmapTooltip.types.d.ts +5 -1
  47. package/Heatmap/HeatmapTooltip/index.d.ts +1 -1
  48. package/Heatmap/index.d.ts +3 -2
  49. package/Heatmap/seriesConfig/getItemAtPosition.js +6 -2
  50. package/Heatmap/seriesConfig/index.js +1 -0
  51. package/Heatmap/useHeatmapProps.d.ts +24 -0
  52. package/Heatmap/useHeatmapProps.js +159 -0
  53. package/LineChartPro/LineChartPro.js +9 -4
  54. package/PieChartPro/PieChartPro.js +4 -4
  55. package/RadarChartPro/RadarChartPro.js +4 -4
  56. package/SankeyChart/SankeyChart.js +4 -4
  57. package/SankeyChart/SankeyTooltip/SankeyTooltip.types.d.ts +5 -1
  58. package/SankeyChart/SankeyTooltip/index.d.ts +1 -1
  59. package/SankeyChart/index.d.ts +1 -1
  60. package/SankeyChart/plugins/useSankeyHighlight.selectors.d.ts +7 -7
  61. package/SankeyChart/sankey.highlight.types.d.ts +4 -0
  62. package/SankeyChart/sankey.types.d.ts +6 -3
  63. package/SankeyChart/seriesConfig/getSeriesWithDefaultValues.js +13 -1
  64. package/SankeyChart/seriesConfig/identifierCleaner.d.ts +3 -0
  65. package/SankeyChart/seriesConfig/identifierCleaner.js +24 -0
  66. package/SankeyChart/seriesConfig/index.js +3 -1
  67. package/ScatterChartPro/ScatterChartPro.js +9 -4
  68. package/esm/BarChartPro/BarChartPro.js +9 -4
  69. package/esm/ChartContainerPro/ChartContainerPro.d.ts +17 -31
  70. package/esm/ChartContainerPro/ChartContainerPro.js +15 -286
  71. package/esm/ChartContainerPro/useChartContainerProProps.d.ts +9 -5
  72. package/esm/ChartContainerPro/useChartContainerProProps.js +10 -33
  73. package/esm/ChartDataProviderPro/ChartDataProviderPro.d.ts +5 -3
  74. package/esm/ChartDataProviderPro/ChartDataProviderPro.js +2 -2
  75. package/esm/ChartDataProviderPro/index.d.ts +1 -1
  76. package/esm/ChartDataProviderPro/useChartDataProviderProProps.d.ts +3 -3
  77. package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderActiveTrack.js +9 -7
  78. package/esm/ChartZoomSlider/internals/ChartAxisZoomSliderTrack.js +7 -5
  79. package/esm/ChartZoomSlider/internals/previews/AreaPreviewPlot.d.ts +1 -1
  80. package/esm/ChartZoomSlider/internals/previews/AreaPreviewPlot.js +4 -4
  81. package/esm/ChartZoomSlider/internals/previews/BarPreviewPlot.js +1 -1
  82. package/esm/ChartZoomSlider/internals/previews/LinePreviewPlot.d.ts +1 -1
  83. package/esm/ChartZoomSlider/internals/previews/LinePreviewPlot.js +4 -4
  84. package/esm/ChartsContainer/index.d.ts +1 -0
  85. package/esm/ChartsContainer/index.js +2 -0
  86. package/esm/ChartsContainerPro/ChartsContainerPro.d.ts +37 -0
  87. package/esm/ChartsContainerPro/ChartsContainerPro.js +181 -0
  88. package/esm/ChartsContainerPro/index.d.ts +9 -0
  89. package/esm/ChartsContainerPro/index.js +6 -0
  90. package/esm/ChartsContainerPro/useChartsContainerProProps.d.ts +9 -0
  91. package/esm/ChartsContainerPro/useChartsContainerProProps.js +37 -0
  92. package/esm/FunnelChart/FunnelChart.js +4 -4
  93. package/esm/FunnelChart/FunnelSection.d.ts +1 -1
  94. package/esm/FunnelChart/funnel.types.d.ts +1 -1
  95. package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.js +13 -10
  96. package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxis.types.d.ts +3 -2
  97. package/esm/FunnelChart/funnelAxisPlugin/useChartFunnelAxisRendering.selectors.d.ts +3 -3
  98. package/esm/FunnelChart/index.d.ts +1 -0
  99. package/esm/FunnelChart/index.js +1 -0
  100. package/esm/FunnelChart/seriesConfig/index.js +3 -2
  101. package/esm/FunnelChart/seriesConfig/legend.js +0 -1
  102. package/esm/Heatmap/Heatmap.d.ts +5 -2
  103. package/esm/Heatmap/Heatmap.js +28 -133
  104. package/esm/Heatmap/Heatmap.types.d.ts +19 -0
  105. package/esm/Heatmap/Heatmap.types.js +1 -0
  106. package/esm/Heatmap/HeatmapItem.d.ts +6 -0
  107. package/esm/Heatmap/HeatmapItem.js +11 -3
  108. package/esm/Heatmap/HeatmapPlot.d.ts +7 -3
  109. package/esm/Heatmap/HeatmapPlot.js +17 -56
  110. package/esm/Heatmap/HeatmapSVGPlot.d.ts +2 -0
  111. package/esm/Heatmap/HeatmapSVGPlot.js +64 -0
  112. package/esm/Heatmap/HeatmapTooltip/HeatmapTooltip.types.d.ts +5 -1
  113. package/esm/Heatmap/HeatmapTooltip/index.d.ts +1 -1
  114. package/esm/Heatmap/index.d.ts +3 -2
  115. package/esm/Heatmap/seriesConfig/getItemAtPosition.js +6 -2
  116. package/esm/Heatmap/seriesConfig/index.js +2 -1
  117. package/esm/Heatmap/useHeatmapProps.d.ts +24 -0
  118. package/esm/Heatmap/useHeatmapProps.js +151 -0
  119. package/esm/LineChartPro/LineChartPro.js +9 -4
  120. package/esm/PieChartPro/PieChartPro.js +4 -4
  121. package/esm/RadarChartPro/RadarChartPro.js +4 -4
  122. package/esm/SankeyChart/SankeyChart.js +4 -4
  123. package/esm/SankeyChart/SankeyTooltip/SankeyTooltip.types.d.ts +5 -1
  124. package/esm/SankeyChart/SankeyTooltip/index.d.ts +1 -1
  125. package/esm/SankeyChart/index.d.ts +1 -1
  126. package/esm/SankeyChart/plugins/useSankeyHighlight.selectors.d.ts +7 -7
  127. package/esm/SankeyChart/sankey.highlight.types.d.ts +4 -0
  128. package/esm/SankeyChart/sankey.types.d.ts +6 -3
  129. package/esm/SankeyChart/seriesConfig/getSeriesWithDefaultValues.js +13 -1
  130. package/esm/SankeyChart/seriesConfig/identifierCleaner.d.ts +3 -0
  131. package/esm/SankeyChart/seriesConfig/identifierCleaner.js +18 -0
  132. package/esm/SankeyChart/seriesConfig/index.js +3 -1
  133. package/esm/ScatterChartPro/ScatterChartPro.js +9 -4
  134. package/esm/index.d.ts +3 -1
  135. package/esm/index.js +2 -1
  136. package/esm/internals/index.d.ts +7 -1
  137. package/esm/internals/index.js +5 -1
  138. package/esm/internals/plugins/useChartProExport/common.d.ts +5 -1
  139. package/esm/internals/plugins/useChartProExport/common.js +36 -0
  140. package/esm/internals/plugins/useChartProExport/exportImage.d.ts +1 -1
  141. package/esm/internals/plugins/useChartProExport/exportImage.js +10 -1
  142. package/esm/internals/plugins/useChartProExport/print.d.ts +1 -1
  143. package/esm/internals/plugins/useChartProExport/print.js +2 -1
  144. package/esm/internals/plugins/useChartProExport/useChartProExport.js +4 -2
  145. package/esm/internals/plugins/useChartProZoom/ZoomInteractionConfig.selectors.d.ts +2 -2
  146. package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.d.ts +2 -3
  147. package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.js +4 -2
  148. package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.d.ts +2 -3
  149. package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.js +4 -2
  150. package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.d.ts +2 -3
  151. package/esm/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.js +6 -4
  152. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.d.ts +2 -3
  153. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.js +7 -5
  154. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.d.ts +2 -3
  155. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.js +4 -2
  156. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.d.ts +2 -3
  157. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.js +6 -4
  158. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.d.ts +2 -3
  159. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.js +6 -4
  160. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.d.ts +2 -3
  161. package/esm/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.js +6 -4
  162. package/esm/internals/plugins/useChartProZoom/useChartProZoom.selectors.d.ts +5 -5
  163. package/esm/models/seriesType/heatmap.d.ts +3 -3
  164. package/esm/plugins/selectors/useChartHeatmapPosition.selectors.d.ts +1 -1
  165. package/esm/plugins/selectors/useChartHeatmapPosition.selectors.js +3 -1
  166. package/esm/typeOverloads/modules.d.ts +9 -5
  167. package/index.d.ts +3 -1
  168. package/index.js +9 -1
  169. package/internals/index.d.ts +7 -1
  170. package/internals/index.js +43 -1
  171. package/internals/plugins/useChartProExport/common.d.ts +5 -1
  172. package/internals/plugins/useChartProExport/common.js +37 -0
  173. package/internals/plugins/useChartProExport/exportImage.d.ts +1 -1
  174. package/internals/plugins/useChartProExport/exportImage.js +9 -0
  175. package/internals/plugins/useChartProExport/print.d.ts +1 -1
  176. package/internals/plugins/useChartProExport/print.js +1 -0
  177. package/internals/plugins/useChartProExport/useChartProExport.js +4 -2
  178. package/internals/plugins/useChartProZoom/ZoomInteractionConfig.selectors.d.ts +2 -2
  179. package/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.d.ts +2 -3
  180. package/internals/plugins/useChartProZoom/gestureHooks/usePanOnDrag.js +4 -2
  181. package/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.d.ts +2 -3
  182. package/internals/plugins/useChartProZoom/gestureHooks/usePanOnPressAndDrag.js +4 -2
  183. package/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.d.ts +2 -3
  184. package/internals/plugins/useChartProZoom/gestureHooks/usePanOnWheel.js +5 -3
  185. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.d.ts +2 -3
  186. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnBrush.js +6 -4
  187. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.d.ts +2 -3
  188. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnDoubleTapReset.js +4 -2
  189. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.d.ts +2 -3
  190. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnPinch.js +5 -3
  191. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.d.ts +2 -3
  192. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnTapAndDrag.js +5 -3
  193. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.d.ts +2 -3
  194. package/internals/plugins/useChartProZoom/gestureHooks/useZoomOnWheel.js +5 -3
  195. package/internals/plugins/useChartProZoom/useChartProZoom.selectors.d.ts +5 -5
  196. package/models/seriesType/heatmap.d.ts +3 -3
  197. package/package.json +8 -8
  198. package/plugins/selectors/useChartHeatmapPosition.selectors.d.ts +1 -1
  199. package/plugins/selectors/useChartHeatmapPosition.selectors.js +3 -1
  200. package/typeOverloads/modules.d.ts +9 -5
@@ -0,0 +1,37 @@
1
+ import * as React from 'react';
2
+ import { type ChartsSurfaceProps } from '@mui/x-charts/ChartsSurface';
3
+ import { type ChartAnyPluginSignature, type ChartSeriesType } from '@mui/x-charts/internals';
4
+ import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js";
5
+ import { type ChartDataProviderProProps } from "../ChartDataProviderPro/index.js";
6
+ export interface ChartsContainerProSlots {}
7
+ export interface ChartsContainerProSlotProps {}
8
+ export type ChartsContainerProProps<TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>> = ChartDataProviderProProps<TSeries, TSignatures> & ChartsSurfaceProps;
9
+ type ChartsContainerProComponent = <TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartsContainerProProps<TSeries, TSignatures> & {
10
+ ref?: React.ForwardedRef<SVGSVGElement>;
11
+ }) => React.JSX.Element;
12
+ /**
13
+ * It sets up the data providers as well as the `<svg>` for the chart.
14
+ *
15
+ * This is a combination of both the `ChartDataProviderPro` and `ChartsSurface` components.
16
+ *
17
+ * Demos:
18
+ *
19
+ * - [Composition](https://mui.com/x/api/charts/composition/)
20
+ *
21
+ * API:
22
+ *
23
+ * - [ChartsContainerPro API](https://mui.com/x/api/charts/charts-container-pro/)
24
+ *
25
+ * @example
26
+ * ```jsx
27
+ * <ChartsContainerPro
28
+ * series={[{ label: "Label", type: "bar", data: [10, 20] }]}
29
+ * xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
30
+ * >
31
+ * <BarPlot />
32
+ * <ChartsXAxis axisId="x-axis" />
33
+ * </ChartsContainerPro>
34
+ * ```
35
+ */
36
+ declare const ChartsContainerPro: ChartsContainerProComponent;
37
+ export { ChartsContainerPro };
@@ -0,0 +1,187 @@
1
+ "use strict";
2
+ 'use client';
3
+
4
+ var _interopRequireWildcard = require("@babel/runtime/helpers/interopRequireWildcard").default;
5
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
6
+ Object.defineProperty(exports, "__esModule", {
7
+ value: true
8
+ });
9
+ exports.ChartsContainerPro = void 0;
10
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
11
+ var React = _interopRequireWildcard(require("react"));
12
+ var _propTypes = _interopRequireDefault(require("prop-types"));
13
+ var _ChartsSurface = require("@mui/x-charts/ChartsSurface");
14
+ var _useChartsContainerProProps = require("./useChartsContainerProProps");
15
+ var _ChartDataProviderPro = require("../ChartDataProviderPro");
16
+ var _jsxRuntime = require("react/jsx-runtime");
17
+ /**
18
+ * It sets up the data providers as well as the `<svg>` for the chart.
19
+ *
20
+ * This is a combination of both the `ChartDataProviderPro` and `ChartsSurface` components.
21
+ *
22
+ * Demos:
23
+ *
24
+ * - [Composition](https://mui.com/x/api/charts/composition/)
25
+ *
26
+ * API:
27
+ *
28
+ * - [ChartsContainerPro API](https://mui.com/x/api/charts/charts-container-pro/)
29
+ *
30
+ * @example
31
+ * ```jsx
32
+ * <ChartsContainerPro
33
+ * series={[{ label: "Label", type: "bar", data: [10, 20] }]}
34
+ * xAxis={[{ data: ["A", "B"], scaleType: "band", id: "x-axis" }]}
35
+ * >
36
+ * <BarPlot />
37
+ * <ChartsXAxis axisId="x-axis" />
38
+ * </ChartsContainerPro>
39
+ * ```
40
+ */
41
+ const ChartsContainerPro = exports.ChartsContainerPro = /*#__PURE__*/React.forwardRef(function ChartsContainerProInner(props, ref) {
42
+ const {
43
+ chartDataProviderProProps,
44
+ children,
45
+ chartsSurfaceProps
46
+ } = (0, _useChartsContainerProProps.useChartsContainerProProps)(props, ref);
47
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_ChartDataProviderPro.ChartDataProviderPro, (0, _extends2.default)({}, chartDataProviderProProps, {
48
+ children: /*#__PURE__*/(0, _jsxRuntime.jsx)(_ChartsSurface.ChartsSurface, (0, _extends2.default)({}, chartsSurfaceProps, {
49
+ children: children
50
+ }))
51
+ }));
52
+ });
53
+
54
+ // @ts-expect-error the type coercion breaks the prop types
55
+ if (process.env.NODE_ENV !== "production") ChartsContainerPro.displayName = "ChartsContainerPro";
56
+ process.env.NODE_ENV !== "production" ? ChartsContainerPro.propTypes = {
57
+ // ----------------------------- Warning --------------------------------
58
+ // | These PropTypes are generated from the TypeScript type definitions |
59
+ // | To update them edit the TypeScript types and run "pnpm proptypes" |
60
+ // ----------------------------------------------------------------------
61
+ apiRef: _propTypes.default.shape({
62
+ current: _propTypes.default.shape({
63
+ setZoomData: _propTypes.default.func.isRequired
64
+ })
65
+ }),
66
+ children: _propTypes.default.node,
67
+ className: _propTypes.default.string,
68
+ /**
69
+ * Color palette used to colorize multiple series.
70
+ * @default blueberryTwilightPalette
71
+ */
72
+ colors: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.string), _propTypes.default.func]),
73
+ /**
74
+ * An array of objects that can be used to populate series and axes data using their `dataKey` property.
75
+ */
76
+ dataset: _propTypes.default.arrayOf(_propTypes.default.object),
77
+ desc: _propTypes.default.string,
78
+ /**
79
+ * If `true`, the charts will not listen to the mouse move event.
80
+ * It might break interactive features, but will improve performance.
81
+ * @default false
82
+ */
83
+ disableAxisListener: _propTypes.default.bool,
84
+ /**
85
+ * The height of the chart in px. If not defined, it takes the height of the parent element.
86
+ */
87
+ height: _propTypes.default.number,
88
+ /**
89
+ * The highlighted item.
90
+ * Used when the highlight is controlled.
91
+ */
92
+ highlightedItem: _propTypes.default.shape({
93
+ dataIndex: _propTypes.default.number,
94
+ seriesId: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]).isRequired
95
+ }),
96
+ /**
97
+ * This prop is used to help implement the accessibility logic.
98
+ * If you don't provide this prop. It falls back to a randomly generated id.
99
+ */
100
+ id: _propTypes.default.string,
101
+ /**
102
+ * The list of zoom data related to each axis.
103
+ */
104
+ initialZoom: _propTypes.default.arrayOf(_propTypes.default.shape({
105
+ axisId: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]).isRequired,
106
+ end: _propTypes.default.number.isRequired,
107
+ start: _propTypes.default.number.isRequired
108
+ })),
109
+ /**
110
+ * The margin between the SVG and the drawing area.
111
+ * It's used for leaving some space for extra information such as the x- and y-axis or legend.
112
+ * Accepts an object with the optional properties: `top`, `bottom`, `left`, and `right`.
113
+ */
114
+ margin: _propTypes.default.shape({
115
+ bottom: _propTypes.default.number,
116
+ left: _propTypes.default.number,
117
+ right: _propTypes.default.number,
118
+ top: _propTypes.default.number
119
+ }),
120
+ /**
121
+ * The callback fired when the highlighted item changes.
122
+ *
123
+ * @param {HighlightItemData | null} highlightedItem The newly highlighted item.
124
+ */
125
+ onHighlightChange: _propTypes.default.func,
126
+ /**
127
+ * Callback fired when the zoom has changed.
128
+ *
129
+ * @param {ZoomData[]} zoomData Updated zoom data.
130
+ */
131
+ onZoomChange: _propTypes.default.func,
132
+ /**
133
+ * The array of series to display.
134
+ * Each type of series has its own specificity.
135
+ * Please refer to the appropriate docs page to learn more about it.
136
+ */
137
+ series: _propTypes.default.arrayOf(_propTypes.default.object),
138
+ /**
139
+ * If `true`, animations are skipped.
140
+ * If unset or `false`, the animations respects the user's `prefers-reduced-motion` setting.
141
+ */
142
+ skipAnimation: _propTypes.default.bool,
143
+ sx: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.func, _propTypes.default.object, _propTypes.default.bool])), _propTypes.default.func, _propTypes.default.object]),
144
+ theme: _propTypes.default.oneOf(['dark', 'light']),
145
+ title: _propTypes.default.string,
146
+ /**
147
+ * The width of the chart in px. If not defined, it takes the width of the parent element.
148
+ */
149
+ width: _propTypes.default.number,
150
+ /**
151
+ * The configuration of the x-axes.
152
+ * If not provided, a default axis config is used.
153
+ * An array of [[AxisConfig]] objects.
154
+ */
155
+ xAxis: _propTypes.default.arrayOf(_propTypes.default.object),
156
+ /**
157
+ * The configuration of the y-axes.
158
+ * If not provided, a default axis config is used.
159
+ * An array of [[AxisConfig]] objects.
160
+ */
161
+ yAxis: _propTypes.default.arrayOf(_propTypes.default.object),
162
+ /**
163
+ * The configuration of the z-axes.
164
+ */
165
+ zAxis: _propTypes.default.arrayOf(_propTypes.default.shape({
166
+ colorMap: _propTypes.default.oneOfType([_propTypes.default.shape({
167
+ colors: _propTypes.default.arrayOf(_propTypes.default.string).isRequired,
168
+ type: _propTypes.default.oneOf(['ordinal']).isRequired,
169
+ unknownColor: _propTypes.default.string,
170
+ values: _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number, _propTypes.default.string]).isRequired)
171
+ }), _propTypes.default.shape({
172
+ color: _propTypes.default.oneOfType([_propTypes.default.arrayOf(_propTypes.default.string.isRequired), _propTypes.default.func]).isRequired,
173
+ max: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
174
+ min: _propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]),
175
+ type: _propTypes.default.oneOf(['continuous']).isRequired
176
+ }), _propTypes.default.shape({
177
+ colors: _propTypes.default.arrayOf(_propTypes.default.string).isRequired,
178
+ thresholds: _propTypes.default.arrayOf(_propTypes.default.oneOfType([_propTypes.default.instanceOf(Date), _propTypes.default.number]).isRequired).isRequired,
179
+ type: _propTypes.default.oneOf(['piecewise']).isRequired
180
+ })]),
181
+ data: _propTypes.default.array,
182
+ dataKey: _propTypes.default.string,
183
+ id: _propTypes.default.string,
184
+ max: _propTypes.default.number,
185
+ min: _propTypes.default.number
186
+ }))
187
+ } : void 0;
@@ -0,0 +1,9 @@
1
+ import "../typeOverloads/index.js";
2
+ import type { ChartAnyPluginSignature } from '@mui/x-charts/internals';
3
+ import type { ChartProApi as ChartProApiOriginal, ProPluginsPerSeriesType } from "../context/ChartProApi.js";
4
+ import type { AllPluginSignatures } from "../internals/plugins/allPlugins.js";
5
+ export * from "./ChartsContainerPro.js";
6
+ /**
7
+ * @deprecated Use `ChartProApi` from `@mui/x-charts/context` instead.
8
+ */
9
+ export type ChartProApi<ChartType extends keyof ProPluginsPerSeriesType | undefined = undefined, Signatures extends readonly ChartAnyPluginSignature[] = (ChartType extends keyof ProPluginsPerSeriesType ? ProPluginsPerSeriesType[ChartType] : AllPluginSignatures)> = ChartProApiOriginal<ChartType, Signatures>;
@@ -0,0 +1,17 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ require("../typeOverloads");
7
+ var _ChartsContainerPro = require("./ChartsContainerPro");
8
+ Object.keys(_ChartsContainerPro).forEach(function (key) {
9
+ if (key === "default" || key === "__esModule") return;
10
+ if (key in exports && exports[key] === _ChartsContainerPro[key]) return;
11
+ Object.defineProperty(exports, key, {
12
+ enumerable: true,
13
+ get: function () {
14
+ return _ChartsContainerPro[key];
15
+ }
16
+ });
17
+ });
@@ -0,0 +1,9 @@
1
+ import { type ChartAnyPluginSignature, type ChartSeriesType, type UseChartsContainerPropsReturnValue } from '@mui/x-charts/internals';
2
+ import type * as React from 'react';
3
+ import type { ChartDataProviderProProps } from "../ChartDataProviderPro/index.js";
4
+ import type { ChartsContainerProProps } from "./ChartsContainerPro.js";
5
+ import { type AllPluginSignatures } from "../internals/plugins/allPlugins.js";
6
+ export type UseChartsContainerProPropsReturnValue<TSeries extends ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[]> = Pick<UseChartsContainerPropsReturnValue<TSeries, TSignatures>, 'chartsSurfaceProps' | 'children'> & {
7
+ chartDataProviderProProps: ChartDataProviderProProps<TSeries, TSignatures>;
8
+ };
9
+ export declare const useChartsContainerProProps: <TSeries extends ChartSeriesType = ChartSeriesType, TSignatures extends readonly ChartAnyPluginSignature[] = AllPluginSignatures<TSeries>>(props: ChartsContainerProProps<TSeries, TSignatures>, ref: React.Ref<SVGSVGElement>) => UseChartsContainerProPropsReturnValue<TSeries, TSignatures>;
@@ -0,0 +1,44 @@
1
+ "use strict";
2
+ 'use client';
3
+
4
+ var _interopRequireDefault = require("@babel/runtime/helpers/interopRequireDefault").default;
5
+ Object.defineProperty(exports, "__esModule", {
6
+ value: true
7
+ });
8
+ exports.useChartsContainerProProps = void 0;
9
+ var _extends2 = _interopRequireDefault(require("@babel/runtime/helpers/extends"));
10
+ var _objectWithoutPropertiesLoose2 = _interopRequireDefault(require("@babel/runtime/helpers/objectWithoutPropertiesLoose"));
11
+ var _internals = require("@mui/x-charts/internals");
12
+ var _allPlugins = require("../internals/plugins/allPlugins");
13
+ const _excluded = ["initialZoom", "zoomData", "onZoomChange", "zoomInteractionConfig", "plugins", "apiRef"];
14
+ const useChartsContainerProProps = (props, ref) => {
15
+ const _ref = props,
16
+ {
17
+ initialZoom,
18
+ zoomData,
19
+ onZoomChange,
20
+ zoomInteractionConfig,
21
+ plugins,
22
+ apiRef
23
+ } = _ref,
24
+ baseProps = (0, _objectWithoutPropertiesLoose2.default)(_ref, _excluded);
25
+ const {
26
+ chartDataProviderProps,
27
+ chartsSurfaceProps,
28
+ children
29
+ } = (0, _internals.useChartsContainerProps)(baseProps, ref);
30
+ const chartDataProviderProProps = (0, _extends2.default)({}, chartDataProviderProps, {
31
+ initialZoom,
32
+ zoomData,
33
+ onZoomChange,
34
+ zoomInteractionConfig,
35
+ apiRef,
36
+ plugins: plugins ?? _allPlugins.DEFAULT_PLUGINS
37
+ });
38
+ return {
39
+ chartDataProviderProProps,
40
+ chartsSurfaceProps,
41
+ children
42
+ };
43
+ };
44
+ exports.useChartsContainerProProps = useChartsContainerProProps;
@@ -215,7 +215,7 @@ process.env.NODE_ENV !== "production" ? FunnelChart.propTypes = {
215
215
  */
216
216
  hiddenItems: _propTypes.default.arrayOf(_propTypes.default.shape({
217
217
  dataIndex: _propTypes.default.number,
218
- seriesId: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
218
+ seriesId: _propTypes.default.string,
219
219
  type: _propTypes.default.oneOf(['funnel']).isRequired
220
220
  })),
221
221
  /**
@@ -229,7 +229,7 @@ process.env.NODE_ENV !== "production" ? FunnelChart.propTypes = {
229
229
  */
230
230
  highlightedItem: _propTypes.default.shape({
231
231
  dataIndex: _propTypes.default.number,
232
- seriesId: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]).isRequired
232
+ seriesId: _propTypes.default.string.isRequired
233
233
  }),
234
234
  /**
235
235
  * This prop is used to help implement the accessibility logic.
@@ -259,7 +259,7 @@ process.env.NODE_ENV !== "production" ? FunnelChart.propTypes = {
259
259
  */
260
260
  initialHiddenItems: _propTypes.default.arrayOf(_propTypes.default.shape({
261
261
  dataIndex: _propTypes.default.number,
262
- seriesId: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]),
262
+ seriesId: _propTypes.default.string,
263
263
  type: _propTypes.default.oneOf(['funnel']).isRequired
264
264
  })),
265
265
  /**
@@ -342,7 +342,7 @@ process.env.NODE_ENV !== "production" ? FunnelChart.propTypes = {
342
342
  */
343
343
  tooltipItem: _propTypes.default.shape({
344
344
  dataIndex: _propTypes.default.number.isRequired,
345
- seriesId: _propTypes.default.oneOfType([_propTypes.default.number, _propTypes.default.string]).isRequired,
345
+ seriesId: _propTypes.default.string.isRequired,
346
346
  type: _propTypes.default.oneOf(['funnel']).isRequired
347
347
  }),
348
348
  /**
@@ -1,7 +1,7 @@
1
1
  import * as React from 'react';
2
2
  import { type SeriesId } from '@mui/x-charts/internals';
3
3
  import { type FunnelSectionClasses } from "./funnelSectionClasses.js";
4
- export interface FunnelSectionProps extends Omit<React.SVGProps<SVGPathElement>, 'ref' | 'id'> {
4
+ export interface FunnelSectionProps extends Omit<React.SVGProps<SVGPathElement>, 'ref'> {
5
5
  seriesId: SeriesId;
6
6
  dataIndex: number;
7
7
  color: string;
@@ -27,7 +27,7 @@ export type FunnelValueType = {
27
27
  */
28
28
  labelMarkType?: ChartsLabelMarkProps['type'];
29
29
  };
30
- export interface FunnelSeriesType extends Omit<CommonSeriesType<FunnelValueType>, 'color' | 'colorGetter'>, CartesianSeriesType {
30
+ export interface FunnelSeriesType extends Omit<CommonSeriesType<FunnelValueType, 'funnel'>, 'color' | 'colorGetter'>, CartesianSeriesType {
31
31
  type: 'funnel';
32
32
  /**
33
33
  * Data associated to the funnel section.
@@ -15,10 +15,11 @@ var _useChartFunnelAxisRendering = require("./useChartFunnelAxisRendering.select
15
15
  const useChartFunnelAxis = ({
16
16
  params,
17
17
  store,
18
- seriesConfig,
19
- svgRef,
20
18
  instance
21
19
  }) => {
20
+ const {
21
+ svgRef
22
+ } = instance;
22
23
  const {
23
24
  xAxis,
24
25
  yAxis,
@@ -45,11 +46,12 @@ const useChartFunnelAxis = ({
45
46
  gap: gap ?? 0
46
47
  },
47
48
  cartesianAxis: {
48
- x: (0, _internals.defaultizeXAxis)(xAxis, dataset),
49
- y: (0, _internals.defaultizeYAxis)(yAxis, dataset)
49
+ axesGap: 0,
50
+ x: (0, _internals.defaultizeXAxis)(xAxis, dataset, 0),
51
+ y: (0, _internals.defaultizeYAxis)(yAxis, dataset, 0)
50
52
  }
51
53
  });
52
- }, [seriesConfig, drawingArea, xAxis, yAxis, dataset, store, gap]);
54
+ }, [drawingArea, xAxis, yAxis, dataset, store, gap]);
53
55
  React.useEffect(() => {
54
56
  const element = svgRef.current;
55
57
  if (!isInteractionEnabled || !element || params.disableAxisListener) {
@@ -75,7 +77,7 @@ const useChartFunnelAxis = ({
75
77
  const gestureHandler = event => {
76
78
  const srvEvent = event.detail.srcEvent;
77
79
  const target = event.detail.target;
78
- const svgPoint = (0, _internals.getSVGPoint)(element, srvEvent);
80
+ const svgPoint = (0, _internals.getChartPoint)(element, srvEvent);
79
81
  // Release the pointer capture if we are panning, as this would cause the tooltip to
80
82
  // be locked to the first "section" it touches.
81
83
  if (event.detail.srcEvent.buttons >= 1 && target?.hasPointerCapture(event.detail.srcEvent.pointerId)) {
@@ -119,7 +121,7 @@ const useChartFunnelAxis = ({
119
121
  const usedYAxis = yAxisIds[0];
120
122
  let dataIndex = null;
121
123
  let isXAxis = false;
122
- const svgPoint = (0, _internals.getSVGPoint)(element, event.detail.srcEvent);
124
+ const svgPoint = (0, _internals.getChartPoint)(element, event.detail.srcEvent);
123
125
  const xIndex = (0, _internals.getCartesianAxisIndex)(xAxisWithScale[usedXAxis], svgPoint.x);
124
126
  isXAxis = xIndex !== -1;
125
127
  dataIndex = isXAxis ? xIndex : (0, _internals.getCartesianAxisIndex)(yAxisWithScale[usedYAxis], svgPoint.y);
@@ -166,8 +168,8 @@ useChartFunnelAxis.getDefaultizedParams = ({
166
168
  }) => {
167
169
  return (0, _extends2.default)({}, params, {
168
170
  gap: params.gap ?? 0,
169
- defaultizedXAxis: (0, _internals.defaultizeXAxis)(params.xAxis, params.dataset),
170
- defaultizedYAxis: (0, _internals.defaultizeYAxis)(params.yAxis, params.dataset)
171
+ defaultizedXAxis: (0, _internals.defaultizeXAxis)(params.xAxis, params.dataset, 0),
172
+ defaultizedYAxis: (0, _internals.defaultizeYAxis)(params.yAxis, params.dataset, 0)
171
173
  });
172
174
  };
173
175
  useChartFunnelAxis.getInitialState = params => {
@@ -176,6 +178,7 @@ useChartFunnelAxis.getInitialState = params => {
176
178
  gap: params.gap ?? 0
177
179
  },
178
180
  cartesianAxis: {
181
+ axesGap: 0,
179
182
  x: params.defaultizedXAxis,
180
183
  y: params.defaultizedYAxis
181
184
  }
@@ -1,6 +1,6 @@
1
1
  import { type ChartPluginSignature, type UseChartCartesianAxisDefaultizedParameters, type UseChartCartesianAxisParameters, type UseChartCartesianAxisState, type UseChartInteractionSignature, type UseChartSeriesSignature, type ChartsAxisData } from '@mui/x-charts/internals';
2
2
  export type UseChartFunnelAxisSignature = ChartPluginSignature<{
3
- params: Omit<UseChartCartesianAxisParameters, 'onAxisClick' | 'onHighlightedAxisChange' | 'highlightedAxis'> & {
3
+ params: Omit<UseChartCartesianAxisParameters, 'onAxisClick' | 'onHighlightedAxisChange' | 'highlightedAxis' | 'axesGap'> & {
4
4
  /**
5
5
  * The gap, in pixels, between funnel sections.
6
6
  * @default 0
@@ -14,8 +14,9 @@ export type UseChartFunnelAxisSignature = ChartPluginSignature<{
14
14
  */
15
15
  onAxisClick?: (event: MouseEvent, data: null | ChartsAxisData) => void;
16
16
  };
17
- defaultizedParams: UseChartCartesianAxisDefaultizedParameters & {
17
+ defaultizedParams: Omit<UseChartCartesianAxisDefaultizedParameters, 'onAxisClick' | 'onHighlightedAxisChange' | 'highlightedAxis' | 'axesGap'> & {
18
18
  gap: number;
19
+ onAxisClick?: (event: MouseEvent, data: null | ChartsAxisData) => void;
19
20
  };
20
21
  state: Pick<UseChartCartesianAxisState, 'cartesianAxis'> & {
21
22
  funnel: {
@@ -3,16 +3,16 @@ import { type UseChartFunnelAxisSignature } from "./useChartFunnelAxis.types.js"
3
3
  export declare const selectorFunnel: (state: ChartState<[], [UseChartFunnelAxisSignature]>) => {
4
4
  gap: number;
5
5
  } | undefined;
6
- export declare const selectorFunnelGap: (args_0: import("@mui/x-charts/internals/plugins/corePlugins/useChartId/useChartId.types").UseChartIdState & import("@mui/x-charts/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types").UseChartExperimentalFeaturesState & import("@mui/x-charts/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & import("@mui/x-charts/internals").UseChartInteractionListenerState & Partial<Pick<import("@mui/x-charts/internals").UseChartCartesianAxisState, "cartesianAxis"> & {
6
+ export declare const selectorFunnelGap: (args_0: import("@mui/x-charts/internals/plugins/corePlugins/useChartId/useChartId.types").UseChartIdState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types").UseChartSeriesConfigState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types").UseChartExperimentalFeaturesState & import("@mui/x-charts/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & import("@mui/x-charts/internals").UseChartInteractionListenerState & Partial<Pick<import("@mui/x-charts/internals").UseChartCartesianAxisState, "cartesianAxis"> & {
7
7
  funnel: {
8
8
  gap: number;
9
9
  };
10
10
  }> & {
11
11
  cacheKey: import("@mui/x-charts/internals").ChartStateCacheKey;
12
12
  }) => number;
13
- export declare const selectorChartXAxis: (args_0: import("@mui/x-charts/internals/plugins/corePlugins/useChartId/useChartId.types").UseChartIdState & import("@mui/x-charts/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types").UseChartExperimentalFeaturesState & import("@mui/x-charts/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & import("@mui/x-charts/internals").UseChartInteractionListenerState & Partial<import("@mui/x-charts/internals").UseChartCartesianAxisState> & {
13
+ export declare const selectorChartXAxis: (args_0: import("@mui/x-charts/internals/plugins/corePlugins/useChartId/useChartId.types").UseChartIdState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types").UseChartSeriesConfigState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types").UseChartExperimentalFeaturesState & import("@mui/x-charts/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & import("@mui/x-charts/internals").UseChartInteractionListenerState & Partial<import("@mui/x-charts/internals").UseChartCartesianAxisState> & {
14
14
  cacheKey: import("@mui/x-charts/internals").ChartStateCacheKey;
15
15
  }) => import("./computeAxisValue.js").ComputeResult<import("@mui/x-charts").ChartsXAxisProps>;
16
- export declare const selectorChartYAxis: (args_0: import("@mui/x-charts/internals/plugins/corePlugins/useChartId/useChartId.types").UseChartIdState & import("@mui/x-charts/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types").UseChartExperimentalFeaturesState & import("@mui/x-charts/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & import("@mui/x-charts/internals").UseChartInteractionListenerState & Partial<import("@mui/x-charts/internals").UseChartCartesianAxisState> & {
16
+ export declare const selectorChartYAxis: (args_0: import("@mui/x-charts/internals/plugins/corePlugins/useChartId/useChartId.types").UseChartIdState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeriesConfig/useChartSeriesConfig.types").UseChartSeriesConfigState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartExperimentalFeature/useChartExperimentalFeature.types").UseChartExperimentalFeaturesState & import("@mui/x-charts/internals/plugins/corePlugins/useChartDimensions/useChartDimensions.types").UseChartDimensionsState & import("@mui/x-charts/internals/plugins/corePlugins/useChartSeries/useChartSeries.types").UseChartSeriesState<keyof import("@mui/x-charts/internals").ChartsSeriesConfig> & import("@mui/x-charts/internals/plugins/corePlugins/useChartAnimation/useChartAnimation.types").UseChartAnimationState & import("@mui/x-charts/internals").UseChartInteractionListenerState & Partial<import("@mui/x-charts/internals").UseChartCartesianAxisState> & {
17
17
  cacheKey: import("@mui/x-charts/internals").ChartStateCacheKey;
18
18
  }) => import("./computeAxisValue.js").ComputeResult<import("@mui/x-charts").ChartsYAxisProps>;
@@ -5,6 +5,7 @@ export { FunnelChart } from "./FunnelChart.js";
5
5
  export declare const Unstable_FunnelChart: import("react").ForwardRefExoticComponent<import("./FunnelChart.js").FunnelChartProps & import("react").RefAttributes<SVGSVGElement>>;
6
6
  export type { FunnelChartProps, FunnelSeries } from "./FunnelChart.js";
7
7
  export * from "./FunnelPlot.js";
8
+ export * from "./funnelPlotSlots.types.js";
8
9
  export * from "./FocusedFunnelSection.js";
9
10
  export * from "./funnel.types.js";
10
11
  export * from "./categoryAxis.types.js";
@@ -48,6 +48,18 @@ Object.keys(_FunnelPlot).forEach(function (key) {
48
48
  }
49
49
  });
50
50
  });
51
+ var _funnelPlotSlots = require("./funnelPlotSlots.types");
52
+ Object.keys(_funnelPlotSlots).forEach(function (key) {
53
+ if (key === "default" || key === "__esModule") return;
54
+ if (Object.prototype.hasOwnProperty.call(_exportNames, key)) return;
55
+ if (key in exports && exports[key] === _funnelPlotSlots[key]) return;
56
+ Object.defineProperty(exports, key, {
57
+ enumerable: true,
58
+ get: function () {
59
+ return _funnelPlotSlots[key];
60
+ }
61
+ });
62
+ });
51
63
  var _FocusedFunnelSection = require("./FocusedFunnelSection");
52
64
  Object.keys(_FocusedFunnelSection).forEach(function (key) {
53
65
  if (key === "default" || key === "__esModule") return;
@@ -24,5 +24,6 @@ const funnelSeriesConfig = exports.funnelSeriesConfig = {
24
24
  yExtremumGetter: _extremums.getExtremumY,
25
25
  getSeriesWithDefaultValues: _getSeriesWithDefaultValues.default,
26
26
  keyboardFocusHandler: _keyboardFocusHandler.default,
27
- identifierSerializer: _internals.identifierSerializerSeriesIdDataIndex
27
+ identifierSerializer: _internals.identifierSerializerSeriesIdDataIndex,
28
+ identifierCleaner: _internals.identifierCleanerSeriesIdDataIndex
28
29
  };
@@ -21,7 +21,6 @@ const legendGetter = params => {
21
21
  type: 'funnel',
22
22
  markType: item.labelMarkType ?? series[seriesId].labelMarkType,
23
23
  seriesId,
24
- id,
25
24
  itemId: id,
26
25
  dataIndex,
27
26
  color: item.color,
@@ -28,7 +28,7 @@ export interface HeatmapSlotProps extends ChartsAxisSlotProps, ChartsOverlaySlot
28
28
  tooltip?: Partial<HeatmapTooltipProps>;
29
29
  }
30
30
  export type HeatmapSeries = MakeOptional<HeatmapSeriesType, 'type'>;
31
- export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', HeatmapPluginSignatures>, 'series' | 'plugins' | 'xAxis' | 'yAxis' | 'skipAnimation' | 'slots' | 'slotProps' | 'experimentalFeatures' | 'highlightedAxis' | 'onHighlightedAxisChange' | 'onAxisClick'>, Omit<ChartsAxisProps, 'slots' | 'slotProps'>, Omit<ChartsOverlayProps, 'slots' | 'slotProps'> {
31
+ export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', HeatmapPluginSignatures>, 'series' | 'plugins' | 'xAxis' | 'yAxis' | 'axesGap' | 'skipAnimation' | 'slots' | 'slotProps' | 'experimentalFeatures' | 'highlightedAxis' | 'onHighlightedAxisChange' | 'seriesConfig' | 'onAxisClick'>, Omit<ChartsAxisProps, 'slots' | 'slotProps'>, Omit<ChartsOverlayProps, 'slots' | 'slotProps'> {
32
32
  /**
33
33
  * The function called for onClick events.
34
34
  * The second argument contains information about all line/bar elements at the current mouse position.
@@ -62,7 +62,6 @@ export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', Hea
62
62
  tooltip?: ChartsTooltipProps;
63
63
  /**
64
64
  * If `true`, the legend is not rendered.
65
- * @default true
66
65
  */
67
66
  hideLegend?: boolean;
68
67
  /**
@@ -70,6 +69,10 @@ export interface HeatmapProps extends Omit<ChartContainerProProps<'heatmap', Hea
70
69
  * @default false
71
70
  */
72
71
  showToolbar?: boolean;
72
+ /**
73
+ * The border radius of the heatmap cells in pixels.
74
+ */
75
+ borderRadius?: number;
73
76
  /**
74
77
  * Overridable component slots.
75
78
  * @default {}