@mui/x-charts 9.0.3 → 9.1.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 (191) hide show
  1. package/BarChart/BarChart.d.mts +1 -2
  2. package/BarChart/BarChart.d.ts +1 -2
  3. package/BarChart/BarChart.js +2 -913
  4. package/BarChart/BarChart.mjs +2 -913
  5. package/BarChart/FocusedBar.js +3 -0
  6. package/BarChart/FocusedBar.mjs +3 -0
  7. package/BarChart/seriesConfig/bar/seriesProcessor.js +2 -0
  8. package/BarChart/seriesConfig/bar/seriesProcessor.mjs +2 -0
  9. package/CHANGELOG.md +220 -0
  10. package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.d.mts +55 -0
  11. package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.d.ts +55 -0
  12. package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.js +94 -0
  13. package/ChartsAxisHighlightValue/ChartsAxisHighlightValue.mjs +88 -0
  14. package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.d.mts +13 -0
  15. package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.d.ts +13 -0
  16. package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.js +86 -0
  17. package/ChartsAxisHighlightValue/ChartsAxisHighlightValueItem.mjs +80 -0
  18. package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.d.mts +18 -0
  19. package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.d.ts +18 -0
  20. package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.js +26 -0
  21. package/ChartsAxisHighlightValue/chartsAxisHighlightValueClasses.mjs +16 -0
  22. package/ChartsAxisHighlightValue/index.d.mts +1 -0
  23. package/ChartsAxisHighlightValue/index.d.ts +1 -0
  24. package/ChartsAxisHighlightValue/index.js +16 -0
  25. package/ChartsAxisHighlightValue/index.mjs +1 -0
  26. package/ChartsAxisHighlightValue/useAxisHighlightValue.d.mts +14 -0
  27. package/ChartsAxisHighlightValue/useAxisHighlightValue.d.ts +14 -0
  28. package/ChartsAxisHighlightValue/useAxisHighlightValue.js +130 -0
  29. package/ChartsAxisHighlightValue/useAxisHighlightValue.mjs +124 -0
  30. package/ChartsContainer/ChartsContainer.js +4 -1431
  31. package/ChartsContainer/ChartsContainer.mjs +4 -1431
  32. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.d.mts +15 -0
  33. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.d.ts +15 -0
  34. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.js +56 -0
  35. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.mjs +50 -0
  36. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.d.mts +6 -0
  37. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.d.ts +6 -0
  38. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.js +5 -0
  39. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlight.types.mjs +1 -0
  40. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.d.mts +11 -0
  41. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.d.ts +11 -0
  42. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.js +70 -0
  43. package/ChartsRadialAxisHighlight/ChartsRadialAxisHighlightPath.mjs +64 -0
  44. package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.d.mts +9 -0
  45. package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.d.ts +9 -0
  46. package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.js +87 -0
  47. package/ChartsRadialAxisHighlight/ChartsRadiusAxisHighlight.mjs +81 -0
  48. package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.d.mts +9 -0
  49. package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.d.ts +9 -0
  50. package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.js +98 -0
  51. package/ChartsRadialAxisHighlight/ChartsRotationAxisHighlight.mjs +92 -0
  52. package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.d.mts +7 -0
  53. package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.d.ts +7 -0
  54. package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.js +14 -0
  55. package/ChartsRadialAxisHighlight/chartsRadialAxisHighlightClasses.mjs +6 -0
  56. package/ChartsRadialAxisHighlight/index.d.mts +5 -0
  57. package/ChartsRadialAxisHighlight/index.d.ts +5 -0
  58. package/ChartsRadialAxisHighlight/index.js +47 -0
  59. package/ChartsRadialAxisHighlight/index.mjs +4 -0
  60. package/ChartsRadiusAxis/index.d.mts +3 -2
  61. package/ChartsRadiusAxis/index.d.ts +3 -2
  62. package/ChartsRadiusAxis/index.mjs +3 -1
  63. package/ChartsRotationAxis/index.d.mts +3 -2
  64. package/ChartsRotationAxis/index.d.ts +3 -2
  65. package/ChartsRotationAxis/index.mjs +3 -1
  66. package/ChartsTooltip/useAxesTooltip.js +11 -3
  67. package/ChartsTooltip/useAxesTooltip.mjs +11 -3
  68. package/ChartsXAxis/useAxisTicksProps.d.mts +162 -81
  69. package/ChartsXAxis/useAxisTicksProps.d.ts +162 -81
  70. package/ChartsYAxis/useAxisTicksProps.d.mts +162 -81
  71. package/ChartsYAxis/useAxisTicksProps.d.ts +162 -81
  72. package/LICENSE +2 -0
  73. package/LineChart/FocusedLineMark.js +3 -0
  74. package/LineChart/FocusedLineMark.mjs +3 -0
  75. package/LineChart/LineChart.js +2 -913
  76. package/LineChart/LineChart.mjs +2 -913
  77. package/LineChart/seriesConfig/curveEvaluation.d.mts +19 -1
  78. package/LineChart/seriesConfig/curveEvaluation.d.ts +19 -1
  79. package/LineChart/seriesConfig/curveEvaluation.js +132 -0
  80. package/LineChart/seriesConfig/curveEvaluation.mjs +131 -0
  81. package/LineChart/seriesConfig/getItemAtPosition.js +12 -35
  82. package/LineChart/seriesConfig/getItemAtPosition.mjs +10 -33
  83. package/LineChart/seriesConfig/getSeriesWithDefaultValues.js +2 -1
  84. package/LineChart/seriesConfig/getSeriesWithDefaultValues.mjs +2 -1
  85. package/LineChart/seriesConfig/seriesProcessor.js +4 -0
  86. package/LineChart/seriesConfig/seriesProcessor.mjs +4 -0
  87. package/LineChart/useAreaPlotData.js +4 -0
  88. package/LineChart/useAreaPlotData.mjs +4 -0
  89. package/LineChart/useLinePlotData.js +2 -0
  90. package/LineChart/useLinePlotData.mjs +2 -0
  91. package/LineChart/useMarkPlotData.js +2 -0
  92. package/LineChart/useMarkPlotData.mjs +2 -0
  93. package/PieChart/FocusedPieArc.js +3 -0
  94. package/PieChart/FocusedPieArc.mjs +3 -0
  95. package/RadarChart/FocusedRadarMark.js +3 -0
  96. package/RadarChart/FocusedRadarMark.mjs +3 -0
  97. package/ScatterChart/FocusedScatterMark.js +10 -21
  98. package/ScatterChart/FocusedScatterMark.mjs +10 -21
  99. package/ScatterChart/HighlightedScatterMark.d.mts +11 -0
  100. package/ScatterChart/HighlightedScatterMark.d.ts +11 -0
  101. package/ScatterChart/HighlightedScatterMark.js +68 -0
  102. package/ScatterChart/HighlightedScatterMark.mjs +62 -0
  103. package/ScatterChart/ScatterChart.d.mts +1 -2
  104. package/ScatterChart/ScatterChart.d.ts +1 -2
  105. package/ScatterChart/ScatterChart.js +2 -913
  106. package/ScatterChart/ScatterChart.mjs +2 -913
  107. package/ScatterChart/index.d.mts +1 -0
  108. package/ScatterChart/index.d.ts +1 -0
  109. package/ScatterChart/index.js +12 -0
  110. package/ScatterChart/index.mjs +1 -0
  111. package/ScatterChart/scatterClasses.d.mts +3 -1
  112. package/ScatterChart/scatterClasses.d.ts +3 -1
  113. package/ScatterChart/scatterClasses.js +3 -2
  114. package/ScatterChart/scatterClasses.mjs +3 -2
  115. package/ScatterChart/useScatterChartProps.js +3 -1
  116. package/ScatterChart/useScatterChartProps.mjs +3 -1
  117. package/ScatterChart/useScatterItemPosition.d.mts +16 -0
  118. package/ScatterChart/useScatterItemPosition.d.ts +16 -0
  119. package/ScatterChart/useScatterItemPosition.js +47 -0
  120. package/ScatterChart/useScatterItemPosition.mjs +41 -0
  121. package/SparkLineChart/SparkLineChart.js +2 -913
  122. package/SparkLineChart/SparkLineChart.mjs +2 -913
  123. package/hooks/useAxis.d.mts +3 -3
  124. package/hooks/useAxis.d.ts +3 -3
  125. package/hooks/useAxisSystem.d.mts +1 -1
  126. package/hooks/useAxisSystem.d.ts +1 -1
  127. package/hooks/useAxisSystem.js +1 -1
  128. package/hooks/useAxisSystem.mjs +1 -1
  129. package/index.d.mts +2 -0
  130. package/index.d.ts +2 -0
  131. package/index.js +25 -1
  132. package/index.mjs +3 -1
  133. package/internals/commonNextFocusItem.js +62 -8
  134. package/internals/commonNextFocusItem.mjs +62 -8
  135. package/internals/findClosestIndex.d.mts +5 -0
  136. package/internals/findClosestIndex.d.ts +5 -0
  137. package/internals/findClosestIndex.js +27 -0
  138. package/internals/findClosestIndex.mjs +22 -0
  139. package/internals/getAsNumber.d.mts +1 -0
  140. package/internals/getAsNumber.d.ts +1 -0
  141. package/internals/getAsNumber.js +9 -0
  142. package/internals/getAsNumber.mjs +3 -0
  143. package/internals/index.d.mts +6 -0
  144. package/internals/index.d.ts +6 -0
  145. package/internals/index.js +60 -0
  146. package/internals/index.mjs +6 -0
  147. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.js +4 -2
  148. package/internals/plugins/corePlugins/useChartInteractionListener/useChartInteractionListener.mjs +4 -2
  149. package/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.mts +2 -2
  150. package/internals/plugins/corePlugins/useChartSeriesConfig/types/polarExtremumGetter.types.d.ts +2 -2
  151. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.js +4 -21
  152. package/internals/plugins/featurePlugins/useChartCartesianAxis/getAxisValue.mjs +4 -21
  153. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.mts +3 -2
  154. package/internals/plugins/featurePlugins/useChartCartesianAxis/useChartCartesianAxisRendering.selectors.d.ts +3 -2
  155. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/findVisibleDataIndex.d.mts +30 -0
  156. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/findVisibleDataIndex.d.ts +30 -0
  157. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/findVisibleDataIndex.js +57 -0
  158. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/findVisibleDataIndex.mjs +51 -0
  159. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.js +7 -1
  160. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getMaxSeriesLength.mjs +7 -1
  161. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.js +7 -1
  162. package/internals/plugins/featurePlugins/useChartKeyboardNavigation/utils/getNonEmptySeriesArray.mjs +7 -1
  163. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.mts +4 -7
  164. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.d.ts +4 -7
  165. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.js +2 -1
  166. package/internals/plugins/featurePlugins/useChartPolarAxis/computeAxisValue.mjs +2 -1
  167. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.mts +3 -2
  168. package/internals/plugins/featurePlugins/useChartPolarAxis/defaultizeAxis.d.ts +3 -2
  169. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.mts +2 -2
  170. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisExtremum.d.ts +2 -2
  171. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.mts +2 -2
  172. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.d.ts +2 -2
  173. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.js +27 -6
  174. package/internals/plugins/featurePlugins/useChartPolarAxis/getAxisIndex.mjs +27 -5
  175. package/internals/plugins/featurePlugins/useChartPolarAxis/index.d.mts +2 -1
  176. package/internals/plugins/featurePlugins/useChartPolarAxis/index.d.ts +2 -1
  177. package/internals/plugins/featurePlugins/useChartPolarAxis/index.js +12 -0
  178. package/internals/plugins/featurePlugins/useChartPolarAxis/index.mjs +2 -1
  179. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.mts +4 -4
  180. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.selectors.d.ts +4 -4
  181. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.mts +3 -3
  182. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarAxis.types.d.ts +3 -3
  183. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.mts +1 -1
  184. package/internals/plugins/featurePlugins/useChartPolarAxis/useChartPolarInteraction.selectors.d.ts +1 -1
  185. package/models/axis.d.mts +28 -28
  186. package/models/axis.d.ts +28 -28
  187. package/models/axis.js +5 -1
  188. package/models/axis.mjs +5 -1
  189. package/models/seriesType/line.d.mts +6 -6
  190. package/models/seriesType/line.d.ts +6 -6
  191. package/package.json +170 -142
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@mui/x-charts",
3
- "version": "9.0.3",
3
+ "version": "9.1.0",
4
4
  "author": "MUI Team",
5
5
  "description": "The community edition of MUI X Charts components.",
6
6
  "license": "MIT",
@@ -34,9 +34,9 @@
34
34
  "prop-types": "^15.8.1",
35
35
  "reselect": "^5.1.1",
36
36
  "use-sync-external-store": "^1.6.0",
37
- "@mui/x-internals": "^9.0.0",
37
+ "@mui/x-internal-gestures": "^9.1.0",
38
38
  "@mui/x-charts-vendor": "^9.0.0",
39
- "@mui/x-internal-gestures": "^9.0.2"
39
+ "@mui/x-internals": "^9.1.0"
40
40
  },
41
41
  "peerDependencies": {
42
42
  "@emotion/react": "^11.9.0",
@@ -116,6 +116,20 @@
116
116
  "default": "./ChartsAxisHighlight/index.mjs"
117
117
  }
118
118
  },
119
+ "./ChartsAxisHighlightValue": {
120
+ "import": {
121
+ "types": "./ChartsAxisHighlightValue/index.d.mts",
122
+ "default": "./ChartsAxisHighlightValue/index.mjs"
123
+ },
124
+ "require": {
125
+ "types": "./ChartsAxisHighlightValue/index.d.ts",
126
+ "default": "./ChartsAxisHighlightValue/index.js"
127
+ },
128
+ "default": {
129
+ "types": "./ChartsAxisHighlightValue/index.d.mts",
130
+ "default": "./ChartsAxisHighlightValue/index.mjs"
131
+ }
132
+ },
119
133
  "./ChartsBrushOverlay": {
120
134
  "import": {
121
135
  "types": "./ChartsBrushOverlay/index.d.mts",
@@ -187,490 +201,504 @@
187
201
  }
188
202
  },
189
203
  "./ChartsLabel": {
190
- "require": {
191
- "types": "./ChartsLabel/index.d.ts",
192
- "default": "./ChartsLabel/index.js"
193
- },
194
204
  "import": {
195
205
  "types": "./ChartsLabel/index.d.mts",
196
206
  "default": "./ChartsLabel/index.mjs"
197
207
  },
208
+ "require": {
209
+ "types": "./ChartsLabel/index.d.ts",
210
+ "default": "./ChartsLabel/index.js"
211
+ },
198
212
  "default": {
199
213
  "types": "./ChartsLabel/index.d.mts",
200
214
  "default": "./ChartsLabel/index.mjs"
201
215
  }
202
216
  },
203
217
  "./ChartsLayerContainer": {
204
- "require": {
205
- "types": "./ChartsLayerContainer/index.d.ts",
206
- "default": "./ChartsLayerContainer/index.js"
207
- },
208
218
  "import": {
209
219
  "types": "./ChartsLayerContainer/index.d.mts",
210
220
  "default": "./ChartsLayerContainer/index.mjs"
211
221
  },
222
+ "require": {
223
+ "types": "./ChartsLayerContainer/index.d.ts",
224
+ "default": "./ChartsLayerContainer/index.js"
225
+ },
212
226
  "default": {
213
227
  "types": "./ChartsLayerContainer/index.d.mts",
214
228
  "default": "./ChartsLayerContainer/index.mjs"
215
229
  }
216
230
  },
217
231
  "./ChartsLegend": {
218
- "require": {
219
- "types": "./ChartsLegend/index.d.ts",
220
- "default": "./ChartsLegend/index.js"
221
- },
222
232
  "import": {
223
233
  "types": "./ChartsLegend/index.d.mts",
224
234
  "default": "./ChartsLegend/index.mjs"
225
235
  },
236
+ "require": {
237
+ "types": "./ChartsLegend/index.d.ts",
238
+ "default": "./ChartsLegend/index.js"
239
+ },
226
240
  "default": {
227
241
  "types": "./ChartsLegend/index.d.mts",
228
242
  "default": "./ChartsLegend/index.mjs"
229
243
  }
230
244
  },
231
245
  "./ChartsLocalizationProvider": {
232
- "require": {
233
- "types": "./ChartsLocalizationProvider/index.d.ts",
234
- "default": "./ChartsLocalizationProvider/index.js"
235
- },
236
246
  "import": {
237
247
  "types": "./ChartsLocalizationProvider/index.d.mts",
238
248
  "default": "./ChartsLocalizationProvider/index.mjs"
239
249
  },
250
+ "require": {
251
+ "types": "./ChartsLocalizationProvider/index.d.ts",
252
+ "default": "./ChartsLocalizationProvider/index.js"
253
+ },
240
254
  "default": {
241
255
  "types": "./ChartsLocalizationProvider/index.d.mts",
242
256
  "default": "./ChartsLocalizationProvider/index.mjs"
243
257
  }
244
258
  },
245
259
  "./ChartsOverlay": {
246
- "require": {
247
- "types": "./ChartsOverlay/index.d.ts",
248
- "default": "./ChartsOverlay/index.js"
249
- },
250
260
  "import": {
251
261
  "types": "./ChartsOverlay/index.d.mts",
252
262
  "default": "./ChartsOverlay/index.mjs"
253
263
  },
264
+ "require": {
265
+ "types": "./ChartsOverlay/index.d.ts",
266
+ "default": "./ChartsOverlay/index.js"
267
+ },
254
268
  "default": {
255
269
  "types": "./ChartsOverlay/index.d.mts",
256
270
  "default": "./ChartsOverlay/index.mjs"
257
271
  }
258
272
  },
259
- "./ChartsRadialDataProvider": {
273
+ "./ChartsRadialAxisHighlight": {
274
+ "import": {
275
+ "types": "./ChartsRadialAxisHighlight/index.d.mts",
276
+ "default": "./ChartsRadialAxisHighlight/index.mjs"
277
+ },
260
278
  "require": {
261
- "types": "./ChartsRadialDataProvider/index.d.ts",
262
- "default": "./ChartsRadialDataProvider/index.js"
279
+ "types": "./ChartsRadialAxisHighlight/index.d.ts",
280
+ "default": "./ChartsRadialAxisHighlight/index.js"
263
281
  },
282
+ "default": {
283
+ "types": "./ChartsRadialAxisHighlight/index.d.mts",
284
+ "default": "./ChartsRadialAxisHighlight/index.mjs"
285
+ }
286
+ },
287
+ "./ChartsRadialDataProvider": {
264
288
  "import": {
265
289
  "types": "./ChartsRadialDataProvider/index.d.mts",
266
290
  "default": "./ChartsRadialDataProvider/index.mjs"
267
291
  },
292
+ "require": {
293
+ "types": "./ChartsRadialDataProvider/index.d.ts",
294
+ "default": "./ChartsRadialDataProvider/index.js"
295
+ },
268
296
  "default": {
269
297
  "types": "./ChartsRadialDataProvider/index.d.mts",
270
298
  "default": "./ChartsRadialDataProvider/index.mjs"
271
299
  }
272
300
  },
273
301
  "./ChartsRadialGrid": {
274
- "require": {
275
- "types": "./ChartsRadialGrid/index.d.ts",
276
- "default": "./ChartsRadialGrid/index.js"
277
- },
278
302
  "import": {
279
303
  "types": "./ChartsRadialGrid/index.d.mts",
280
304
  "default": "./ChartsRadialGrid/index.mjs"
281
305
  },
306
+ "require": {
307
+ "types": "./ChartsRadialGrid/index.d.ts",
308
+ "default": "./ChartsRadialGrid/index.js"
309
+ },
282
310
  "default": {
283
311
  "types": "./ChartsRadialGrid/index.d.mts",
284
312
  "default": "./ChartsRadialGrid/index.mjs"
285
313
  }
286
314
  },
287
315
  "./ChartsRadiusAxis": {
288
- "require": {
289
- "types": "./ChartsRadiusAxis/index.d.ts",
290
- "default": "./ChartsRadiusAxis/index.js"
291
- },
292
316
  "import": {
293
317
  "types": "./ChartsRadiusAxis/index.d.mts",
294
318
  "default": "./ChartsRadiusAxis/index.mjs"
295
319
  },
320
+ "require": {
321
+ "types": "./ChartsRadiusAxis/index.d.ts",
322
+ "default": "./ChartsRadiusAxis/index.js"
323
+ },
296
324
  "default": {
297
325
  "types": "./ChartsRadiusAxis/index.d.mts",
298
326
  "default": "./ChartsRadiusAxis/index.mjs"
299
327
  }
300
328
  },
301
329
  "./ChartsReferenceLine": {
302
- "require": {
303
- "types": "./ChartsReferenceLine/index.d.ts",
304
- "default": "./ChartsReferenceLine/index.js"
305
- },
306
330
  "import": {
307
331
  "types": "./ChartsReferenceLine/index.d.mts",
308
332
  "default": "./ChartsReferenceLine/index.mjs"
309
333
  },
334
+ "require": {
335
+ "types": "./ChartsReferenceLine/index.d.ts",
336
+ "default": "./ChartsReferenceLine/index.js"
337
+ },
310
338
  "default": {
311
339
  "types": "./ChartsReferenceLine/index.d.mts",
312
340
  "default": "./ChartsReferenceLine/index.mjs"
313
341
  }
314
342
  },
315
343
  "./ChartsRotationAxis": {
316
- "require": {
317
- "types": "./ChartsRotationAxis/index.d.ts",
318
- "default": "./ChartsRotationAxis/index.js"
319
- },
320
344
  "import": {
321
345
  "types": "./ChartsRotationAxis/index.d.mts",
322
346
  "default": "./ChartsRotationAxis/index.mjs"
323
347
  },
348
+ "require": {
349
+ "types": "./ChartsRotationAxis/index.d.ts",
350
+ "default": "./ChartsRotationAxis/index.js"
351
+ },
324
352
  "default": {
325
353
  "types": "./ChartsRotationAxis/index.d.mts",
326
354
  "default": "./ChartsRotationAxis/index.mjs"
327
355
  }
328
356
  },
329
357
  "./ChartsSurface": {
330
- "require": {
331
- "types": "./ChartsSurface/index.d.ts",
332
- "default": "./ChartsSurface/index.js"
333
- },
334
358
  "import": {
335
359
  "types": "./ChartsSurface/index.d.mts",
336
360
  "default": "./ChartsSurface/index.mjs"
337
361
  },
362
+ "require": {
363
+ "types": "./ChartsSurface/index.d.ts",
364
+ "default": "./ChartsSurface/index.js"
365
+ },
338
366
  "default": {
339
367
  "types": "./ChartsSurface/index.d.mts",
340
368
  "default": "./ChartsSurface/index.mjs"
341
369
  }
342
370
  },
343
371
  "./ChartsSvgLayer": {
344
- "require": {
345
- "types": "./ChartsSvgLayer/index.d.ts",
346
- "default": "./ChartsSvgLayer/index.js"
347
- },
348
372
  "import": {
349
373
  "types": "./ChartsSvgLayer/index.d.mts",
350
374
  "default": "./ChartsSvgLayer/index.mjs"
351
375
  },
376
+ "require": {
377
+ "types": "./ChartsSvgLayer/index.d.ts",
378
+ "default": "./ChartsSvgLayer/index.js"
379
+ },
352
380
  "default": {
353
381
  "types": "./ChartsSvgLayer/index.d.mts",
354
382
  "default": "./ChartsSvgLayer/index.mjs"
355
383
  }
356
384
  },
357
385
  "./ChartsText": {
358
- "require": {
359
- "types": "./ChartsText/index.d.ts",
360
- "default": "./ChartsText/index.js"
361
- },
362
386
  "import": {
363
387
  "types": "./ChartsText/index.d.mts",
364
388
  "default": "./ChartsText/index.mjs"
365
389
  },
390
+ "require": {
391
+ "types": "./ChartsText/index.d.ts",
392
+ "default": "./ChartsText/index.js"
393
+ },
366
394
  "default": {
367
395
  "types": "./ChartsText/index.d.mts",
368
396
  "default": "./ChartsText/index.mjs"
369
397
  }
370
398
  },
371
399
  "./ChartsTooltip": {
372
- "require": {
373
- "types": "./ChartsTooltip/index.d.ts",
374
- "default": "./ChartsTooltip/index.js"
375
- },
376
400
  "import": {
377
401
  "types": "./ChartsTooltip/index.d.mts",
378
402
  "default": "./ChartsTooltip/index.mjs"
379
403
  },
404
+ "require": {
405
+ "types": "./ChartsTooltip/index.d.ts",
406
+ "default": "./ChartsTooltip/index.js"
407
+ },
380
408
  "default": {
381
409
  "types": "./ChartsTooltip/index.d.mts",
382
410
  "default": "./ChartsTooltip/index.mjs"
383
411
  }
384
412
  },
385
413
  "./ChartsWrapper": {
386
- "require": {
387
- "types": "./ChartsWrapper/index.d.ts",
388
- "default": "./ChartsWrapper/index.js"
389
- },
390
414
  "import": {
391
415
  "types": "./ChartsWrapper/index.d.mts",
392
416
  "default": "./ChartsWrapper/index.mjs"
393
417
  },
418
+ "require": {
419
+ "types": "./ChartsWrapper/index.d.ts",
420
+ "default": "./ChartsWrapper/index.js"
421
+ },
394
422
  "default": {
395
423
  "types": "./ChartsWrapper/index.d.mts",
396
424
  "default": "./ChartsWrapper/index.mjs"
397
425
  }
398
426
  },
399
427
  "./ChartsXAxis": {
400
- "require": {
401
- "types": "./ChartsXAxis/index.d.ts",
402
- "default": "./ChartsXAxis/index.js"
403
- },
404
428
  "import": {
405
429
  "types": "./ChartsXAxis/index.d.mts",
406
430
  "default": "./ChartsXAxis/index.mjs"
407
431
  },
432
+ "require": {
433
+ "types": "./ChartsXAxis/index.d.ts",
434
+ "default": "./ChartsXAxis/index.js"
435
+ },
408
436
  "default": {
409
437
  "types": "./ChartsXAxis/index.d.mts",
410
438
  "default": "./ChartsXAxis/index.mjs"
411
439
  }
412
440
  },
413
441
  "./ChartsYAxis": {
414
- "require": {
415
- "types": "./ChartsYAxis/index.d.ts",
416
- "default": "./ChartsYAxis/index.js"
417
- },
418
442
  "import": {
419
443
  "types": "./ChartsYAxis/index.d.mts",
420
444
  "default": "./ChartsYAxis/index.mjs"
421
445
  },
446
+ "require": {
447
+ "types": "./ChartsYAxis/index.d.ts",
448
+ "default": "./ChartsYAxis/index.js"
449
+ },
422
450
  "default": {
423
451
  "types": "./ChartsYAxis/index.d.mts",
424
452
  "default": "./ChartsYAxis/index.mjs"
425
453
  }
426
454
  },
427
455
  "./Gauge": {
428
- "require": {
429
- "types": "./Gauge/index.d.ts",
430
- "default": "./Gauge/index.js"
431
- },
432
456
  "import": {
433
457
  "types": "./Gauge/index.d.mts",
434
458
  "default": "./Gauge/index.mjs"
435
459
  },
460
+ "require": {
461
+ "types": "./Gauge/index.d.ts",
462
+ "default": "./Gauge/index.js"
463
+ },
436
464
  "default": {
437
465
  "types": "./Gauge/index.d.mts",
438
466
  "default": "./Gauge/index.mjs"
439
467
  }
440
468
  },
441
469
  "./LineChart": {
442
- "require": {
443
- "types": "./LineChart/index.d.ts",
444
- "default": "./LineChart/index.js"
445
- },
446
470
  "import": {
447
471
  "types": "./LineChart/index.d.mts",
448
472
  "default": "./LineChart/index.mjs"
449
473
  },
474
+ "require": {
475
+ "types": "./LineChart/index.d.ts",
476
+ "default": "./LineChart/index.js"
477
+ },
450
478
  "default": {
451
479
  "types": "./LineChart/index.d.mts",
452
480
  "default": "./LineChart/index.mjs"
453
481
  }
454
482
  },
455
483
  "./PieChart": {
456
- "require": {
457
- "types": "./PieChart/index.d.ts",
458
- "default": "./PieChart/index.js"
459
- },
460
484
  "import": {
461
485
  "types": "./PieChart/index.d.mts",
462
486
  "default": "./PieChart/index.mjs"
463
487
  },
488
+ "require": {
489
+ "types": "./PieChart/index.d.ts",
490
+ "default": "./PieChart/index.js"
491
+ },
464
492
  "default": {
465
493
  "types": "./PieChart/index.d.mts",
466
494
  "default": "./PieChart/index.mjs"
467
495
  }
468
496
  },
469
497
  "./RadarChart": {
470
- "require": {
471
- "types": "./RadarChart/index.d.ts",
472
- "default": "./RadarChart/index.js"
473
- },
474
498
  "import": {
475
499
  "types": "./RadarChart/index.d.mts",
476
500
  "default": "./RadarChart/index.mjs"
477
501
  },
502
+ "require": {
503
+ "types": "./RadarChart/index.d.ts",
504
+ "default": "./RadarChart/index.js"
505
+ },
478
506
  "default": {
479
507
  "types": "./RadarChart/index.d.mts",
480
508
  "default": "./RadarChart/index.mjs"
481
509
  }
482
510
  },
483
511
  "./ScatterChart": {
484
- "require": {
485
- "types": "./ScatterChart/index.d.ts",
486
- "default": "./ScatterChart/index.js"
487
- },
488
512
  "import": {
489
513
  "types": "./ScatterChart/index.d.mts",
490
514
  "default": "./ScatterChart/index.mjs"
491
515
  },
516
+ "require": {
517
+ "types": "./ScatterChart/index.d.ts",
518
+ "default": "./ScatterChart/index.js"
519
+ },
492
520
  "default": {
493
521
  "types": "./ScatterChart/index.d.mts",
494
522
  "default": "./ScatterChart/index.mjs"
495
523
  }
496
524
  },
497
525
  "./SparkLineChart": {
498
- "require": {
499
- "types": "./SparkLineChart/index.d.ts",
500
- "default": "./SparkLineChart/index.js"
501
- },
502
526
  "import": {
503
527
  "types": "./SparkLineChart/index.d.mts",
504
528
  "default": "./SparkLineChart/index.mjs"
505
529
  },
530
+ "require": {
531
+ "types": "./SparkLineChart/index.d.ts",
532
+ "default": "./SparkLineChart/index.js"
533
+ },
506
534
  "default": {
507
535
  "types": "./SparkLineChart/index.d.mts",
508
536
  "default": "./SparkLineChart/index.mjs"
509
537
  }
510
538
  },
511
539
  "./Toolbar": {
512
- "require": {
513
- "types": "./Toolbar/index.d.ts",
514
- "default": "./Toolbar/index.js"
515
- },
516
540
  "import": {
517
541
  "types": "./Toolbar/index.d.mts",
518
542
  "default": "./Toolbar/index.mjs"
519
543
  },
544
+ "require": {
545
+ "types": "./Toolbar/index.d.ts",
546
+ "default": "./Toolbar/index.js"
547
+ },
520
548
  "default": {
521
549
  "types": "./Toolbar/index.d.mts",
522
550
  "default": "./Toolbar/index.mjs"
523
551
  }
524
552
  },
525
553
  "./colorPalettes": {
526
- "require": {
527
- "types": "./colorPalettes/index.d.ts",
528
- "default": "./colorPalettes/index.js"
529
- },
530
554
  "import": {
531
555
  "types": "./colorPalettes/index.d.mts",
532
556
  "default": "./colorPalettes/index.mjs"
533
557
  },
558
+ "require": {
559
+ "types": "./colorPalettes/index.d.ts",
560
+ "default": "./colorPalettes/index.js"
561
+ },
534
562
  "default": {
535
563
  "types": "./colorPalettes/index.d.mts",
536
564
  "default": "./colorPalettes/index.mjs"
537
565
  }
538
566
  },
539
567
  "./constants": {
540
- "require": {
541
- "types": "./constants/index.d.ts",
542
- "default": "./constants/index.js"
543
- },
544
568
  "import": {
545
569
  "types": "./constants/index.d.mts",
546
570
  "default": "./constants/index.mjs"
547
571
  },
572
+ "require": {
573
+ "types": "./constants/index.d.ts",
574
+ "default": "./constants/index.js"
575
+ },
548
576
  "default": {
549
577
  "types": "./constants/index.d.mts",
550
578
  "default": "./constants/index.mjs"
551
579
  }
552
580
  },
553
581
  "./context": {
554
- "require": {
555
- "types": "./context/index.d.ts",
556
- "default": "./context/index.js"
557
- },
558
582
  "import": {
559
583
  "types": "./context/index.d.mts",
560
584
  "default": "./context/index.mjs"
561
585
  },
586
+ "require": {
587
+ "types": "./context/index.d.ts",
588
+ "default": "./context/index.js"
589
+ },
562
590
  "default": {
563
591
  "types": "./context/index.d.mts",
564
592
  "default": "./context/index.mjs"
565
593
  }
566
594
  },
567
595
  "./hooks": {
568
- "require": {
569
- "types": "./hooks/index.d.ts",
570
- "default": "./hooks/index.js"
571
- },
572
596
  "import": {
573
597
  "types": "./hooks/index.d.mts",
574
598
  "default": "./hooks/index.mjs"
575
599
  },
600
+ "require": {
601
+ "types": "./hooks/index.d.ts",
602
+ "default": "./hooks/index.js"
603
+ },
576
604
  "default": {
577
605
  "types": "./hooks/index.d.mts",
578
606
  "default": "./hooks/index.mjs"
579
607
  }
580
608
  },
581
609
  "./internals": {
582
- "require": {
583
- "types": "./internals/index.d.ts",
584
- "default": "./internals/index.js"
585
- },
586
610
  "import": {
587
611
  "types": "./internals/index.d.mts",
588
612
  "default": "./internals/index.mjs"
589
613
  },
614
+ "require": {
615
+ "types": "./internals/index.d.ts",
616
+ "default": "./internals/index.js"
617
+ },
590
618
  "default": {
591
619
  "types": "./internals/index.d.mts",
592
620
  "default": "./internals/index.mjs"
593
621
  }
594
622
  },
595
623
  "./locales": {
596
- "require": {
597
- "types": "./locales/index.d.ts",
598
- "default": "./locales/index.js"
599
- },
600
624
  "import": {
601
625
  "types": "./locales/index.d.mts",
602
626
  "default": "./locales/index.mjs"
603
627
  },
628
+ "require": {
629
+ "types": "./locales/index.d.ts",
630
+ "default": "./locales/index.js"
631
+ },
604
632
  "default": {
605
633
  "types": "./locales/index.d.mts",
606
634
  "default": "./locales/index.mjs"
607
635
  }
608
636
  },
609
637
  "./models": {
610
- "require": {
611
- "types": "./models/index.d.ts",
612
- "default": "./models/index.js"
613
- },
614
638
  "import": {
615
639
  "types": "./models/index.d.mts",
616
640
  "default": "./models/index.mjs"
617
641
  },
642
+ "require": {
643
+ "types": "./models/index.d.ts",
644
+ "default": "./models/index.js"
645
+ },
618
646
  "default": {
619
647
  "types": "./models/index.d.mts",
620
648
  "default": "./models/index.mjs"
621
649
  }
622
650
  },
623
651
  "./plugins": {
624
- "require": {
625
- "types": "./plugins/index.d.ts",
626
- "default": "./plugins/index.js"
627
- },
628
652
  "import": {
629
653
  "types": "./plugins/index.d.mts",
630
654
  "default": "./plugins/index.mjs"
631
655
  },
656
+ "require": {
657
+ "types": "./plugins/index.d.ts",
658
+ "default": "./plugins/index.js"
659
+ },
632
660
  "default": {
633
661
  "types": "./plugins/index.d.mts",
634
662
  "default": "./plugins/index.mjs"
635
663
  }
636
664
  },
637
665
  "./themeAugmentation": {
638
- "require": {
639
- "types": "./themeAugmentation/index.d.ts",
640
- "default": "./themeAugmentation/index.js"
641
- },
642
666
  "import": {
643
667
  "types": "./themeAugmentation/index.d.mts",
644
668
  "default": "./themeAugmentation/index.mjs"
645
669
  },
670
+ "require": {
671
+ "types": "./themeAugmentation/index.d.ts",
672
+ "default": "./themeAugmentation/index.js"
673
+ },
646
674
  "default": {
647
675
  "types": "./themeAugmentation/index.d.mts",
648
676
  "default": "./themeAugmentation/index.mjs"
649
677
  }
650
678
  },
651
679
  "./utils": {
652
- "require": {
653
- "types": "./utils/index.d.ts",
654
- "default": "./utils/index.js"
655
- },
656
680
  "import": {
657
681
  "types": "./utils/index.d.mts",
658
682
  "default": "./utils/index.mjs"
659
683
  },
684
+ "require": {
685
+ "types": "./utils/index.d.ts",
686
+ "default": "./utils/index.js"
687
+ },
660
688
  "default": {
661
689
  "types": "./utils/index.d.mts",
662
690
  "default": "./utils/index.mjs"
663
691
  }
664
692
  },
665
693
  "./moduleAugmentation/barChartBatchRendererOnItemClick": {
666
- "require": {
667
- "types": "./moduleAugmentation/barChartBatchRendererOnItemClick.d.ts",
668
- "default": "./moduleAugmentation/barChartBatchRendererOnItemClick.js"
669
- },
670
694
  "import": {
671
695
  "types": "./moduleAugmentation/barChartBatchRendererOnItemClick.d.mts",
672
696
  "default": "./moduleAugmentation/barChartBatchRendererOnItemClick.mjs"
673
697
  },
698
+ "require": {
699
+ "types": "./moduleAugmentation/barChartBatchRendererOnItemClick.d.ts",
700
+ "default": "./moduleAugmentation/barChartBatchRendererOnItemClick.js"
701
+ },
674
702
  "default": {
675
703
  "types": "./moduleAugmentation/barChartBatchRendererOnItemClick.d.mts",
676
704
  "default": "./moduleAugmentation/barChartBatchRendererOnItemClick.mjs"