@mui/x-charts-premium 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.
- package/BarChartPremium/BarChartPremium.js +2 -1183
- package/BarChartPremium/BarChartPremium.mjs +2 -1183
- package/BarChartPremium/RangeBar/FocusedRangeBar.js +3 -0
- package/BarChartPremium/RangeBar/FocusedRangeBar.mjs +3 -0
- package/BarChartPremium/RangeBar/seriesConfig/seriesProcessor.js +2 -0
- package/BarChartPremium/RangeBar/seriesConfig/seriesProcessor.mjs +2 -0
- package/CHANGELOG.md +220 -0
- package/CandlestickChart/CandlestickChart.d.mts +2 -2
- package/CandlestickChart/CandlestickChart.d.ts +2 -2
- package/CandlestickChart/CandlestickChart.js +2 -1183
- package/CandlestickChart/CandlestickChart.mjs +2 -1183
- package/CandlestickChart/CandlestickWebGLProgram.d.mts +6 -11
- package/CandlestickChart/CandlestickWebGLProgram.d.ts +6 -11
- package/CandlestickChart/CandlestickWebGLProgram.js +136 -121
- package/CandlestickChart/CandlestickWebGLProgram.mjs +137 -122
- package/CandlestickChart/useCandlestickPlotData.d.mts +2 -2
- package/CandlestickChart/useCandlestickPlotData.d.ts +2 -2
- package/CandlestickChart/useCandlestickPlotData.js +121 -61
- package/CandlestickChart/useCandlestickPlotData.mjs +122 -61
- package/ChartsAxisHighlightValue/index.d.mts +1 -0
- package/ChartsAxisHighlightValue/index.d.ts +1 -0
- package/ChartsAxisHighlightValue/index.js +16 -0
- package/ChartsAxisHighlightValue/index.mjs +2 -0
- package/ChartsDataProviderPremium/ChartsDataProviderPremium.js +2 -2
- package/ChartsDataProviderPremium/ChartsDataProviderPremium.mjs +2 -2
- package/ChartsRadialAxisHighlight/index.d.mts +1 -0
- package/ChartsRadialAxisHighlight/index.d.ts +1 -0
- package/ChartsRadialAxisHighlight/index.js +16 -0
- package/ChartsRadialAxisHighlight/index.mjs +2 -0
- package/ChartsRadialDataProviderPremium/ChartsRadialDataProviderPremium.js +2 -2
- package/ChartsRadialDataProviderPremium/ChartsRadialDataProviderPremium.mjs +2 -2
- package/HeatmapPremium/HeatmapPremium.js +2 -155
- package/HeatmapPremium/HeatmapPremium.mjs +2 -155
- package/HeatmapPremium/webgl/HeatmapWebGLPlot.js +19 -112
- package/HeatmapPremium/webgl/HeatmapWebGLPlot.mjs +19 -111
- package/HeatmapPremium/webgl/HeatmapWebGLProgram.d.mts +24 -0
- package/HeatmapPremium/webgl/HeatmapWebGLProgram.d.ts +24 -0
- package/HeatmapPremium/webgl/HeatmapWebGLProgram.js +132 -0
- package/HeatmapPremium/webgl/HeatmapWebGLProgram.mjs +125 -0
- package/HeatmapPremium/webgl/shaders.d.mts +1 -1
- package/HeatmapPremium/webgl/shaders.d.ts +1 -1
- package/HeatmapPremium/webgl/shaders.js +1 -1
- package/HeatmapPremium/webgl/shaders.mjs +1 -1
- package/HeatmapPremium/webgl/useHeatmapPlotData.d.mts +3 -3
- package/HeatmapPremium/webgl/useHeatmapPlotData.d.ts +3 -3
- package/HeatmapPremium/webgl/useHeatmapPlotData.js +78 -26
- package/HeatmapPremium/webgl/useHeatmapPlotData.mjs +80 -26
- package/LICENSE +3 -1
- package/RadialBarChart/RadialBarChart.d.mts +60 -0
- package/RadialBarChart/RadialBarChart.d.ts +60 -0
- package/RadialBarChart/RadialBarChart.js +298 -0
- package/RadialBarChart/RadialBarChart.mjs +292 -0
- package/RadialBarChart/RadialBarChart.plugins.d.mts +4 -0
- package/RadialBarChart/RadialBarChart.plugins.d.ts +4 -0
- package/RadialBarChart/RadialBarChart.plugins.js +9 -0
- package/RadialBarChart/RadialBarChart.plugins.mjs +3 -0
- package/RadialBarChart/RadialBarElement.d.mts +16 -0
- package/RadialBarChart/RadialBarElement.d.ts +16 -0
- package/RadialBarChart/RadialBarElement.js +54 -0
- package/RadialBarChart/RadialBarElement.mjs +48 -0
- package/RadialBarChart/RadialBarPlot.d.mts +21 -0
- package/RadialBarChart/RadialBarPlot.d.ts +21 -0
- package/RadialBarChart/RadialBarPlot.js +85 -0
- package/RadialBarChart/RadialBarPlot.mjs +79 -0
- package/RadialBarChart/index.d.mts +3 -0
- package/RadialBarChart/index.d.ts +3 -0
- package/RadialBarChart/index.js +39 -0
- package/RadialBarChart/index.mjs +3 -0
- package/RadialBarChart/radialBarClasses.d.mts +15 -0
- package/RadialBarChart/radialBarClasses.d.ts +15 -0
- package/RadialBarChart/radialBarClasses.js +26 -0
- package/RadialBarChart/radialBarClasses.mjs +18 -0
- package/RadialBarChart/seriesConfig/seriesProcessor.js +4 -0
- package/RadialBarChart/seriesConfig/seriesProcessor.mjs +4 -0
- package/RadialBarChart/useRadialBarChartProps.d.mts +28 -0
- package/RadialBarChart/useRadialBarChartProps.d.ts +28 -0
- package/RadialBarChart/useRadialBarChartProps.js +100 -0
- package/RadialBarChart/useRadialBarChartProps.mjs +93 -0
- package/RadialBarChart/useRadialBarPlotData.d.mts +23 -0
- package/RadialBarChart/useRadialBarPlotData.d.ts +23 -0
- package/RadialBarChart/useRadialBarPlotData.js +94 -0
- package/RadialBarChart/useRadialBarPlotData.mjs +87 -0
- package/RadialLineChart/RadialArea.js +13 -1
- package/RadialLineChart/RadialArea.mjs +13 -1
- package/RadialLineChart/RadialLine.js +13 -1
- package/RadialLineChart/RadialLine.mjs +13 -1
- package/RadialLineChart/RadialLineChart.d.mts +11 -3
- package/RadialLineChart/RadialLineChart.d.ts +11 -3
- package/RadialLineChart/RadialLineChart.js +24 -673
- package/RadialLineChart/RadialLineChart.mjs +24 -673
- package/RadialLineChart/RadialLineHighlightElement.d.mts +15 -0
- package/RadialLineChart/RadialLineHighlightElement.d.ts +15 -0
- package/RadialLineChart/RadialLineHighlightElement.js +46 -0
- package/RadialLineChart/RadialLineHighlightElement.mjs +39 -0
- package/RadialLineChart/RadialLineHighlightPlot.d.mts +23 -0
- package/RadialLineChart/RadialLineHighlightPlot.d.ts +23 -0
- package/RadialLineChart/RadialLineHighlightPlot.js +92 -0
- package/RadialLineChart/RadialLineHighlightPlot.mjs +86 -0
- package/RadialLineChart/RadialMarkPlot.js +32 -3
- package/RadialLineChart/RadialMarkPlot.mjs +32 -3
- package/RadialLineChart/index.d.mts +3 -1
- package/RadialLineChart/index.d.ts +3 -1
- package/RadialLineChart/index.js +22 -0
- package/RadialLineChart/index.mjs +3 -1
- package/RadialLineChart/radialLineClasses.d.mts +3 -1
- package/RadialLineChart/radialLineClasses.d.ts +3 -1
- package/RadialLineChart/radialLineClasses.js +2 -1
- package/RadialLineChart/radialLineClasses.mjs +2 -1
- package/RadialLineChart/seriesConfig/getItemAtPosition.d.mts +6 -0
- package/RadialLineChart/seriesConfig/getItemAtPosition.d.ts +6 -0
- package/RadialLineChart/seriesConfig/getItemAtPosition.js +353 -0
- package/RadialLineChart/seriesConfig/getItemAtPosition.mjs +348 -0
- package/RadialLineChart/seriesConfig/getSeriesWithDefaultValues.js +2 -1
- package/RadialLineChart/seriesConfig/getSeriesWithDefaultValues.mjs +2 -1
- package/RadialLineChart/seriesConfig/index.js +2 -1
- package/RadialLineChart/seriesConfig/index.mjs +2 -1
- package/RadialLineChart/seriesConfig/seriesProcessor.js +4 -0
- package/RadialLineChart/seriesConfig/seriesProcessor.mjs +4 -0
- package/RadialLineChart/useRadialLineChartProps.d.mts +2 -0
- package/RadialLineChart/useRadialLineChartProps.d.ts +2 -0
- package/RadialLineChart/useRadialLineChartProps.js +16 -8
- package/RadialLineChart/useRadialLineChartProps.mjs +16 -8
- package/RadialLineChart/useRadialLinePlotData.d.mts +3 -1
- package/RadialLineChart/useRadialLinePlotData.d.ts +3 -1
- package/RadialLineChart/useRadialLinePlotData.js +5 -1
- package/RadialLineChart/useRadialLinePlotData.mjs +6 -2
- package/ScatterChartPremium/ScatterChartPremium.d.mts +25 -0
- package/ScatterChartPremium/ScatterChartPremium.d.ts +25 -0
- package/ScatterChartPremium/ScatterChartPremium.js +507 -0
- package/ScatterChartPremium/ScatterChartPremium.mjs +501 -0
- package/ScatterChartPremium/ScatterChartPremium.plugins.d.mts +3 -0
- package/ScatterChartPremium/ScatterChartPremium.plugins.d.ts +3 -0
- package/ScatterChartPremium/ScatterChartPremium.plugins.js +8 -0
- package/ScatterChartPremium/ScatterChartPremium.plugins.mjs +2 -0
- package/ScatterChartPremium/ScatterPlotPremium.d.mts +14 -0
- package/ScatterChartPremium/ScatterPlotPremium.d.ts +14 -0
- package/ScatterChartPremium/ScatterPlotPremium.js +28 -0
- package/ScatterChartPremium/ScatterPlotPremium.mjs +21 -0
- package/ScatterChartPremium/index.d.mts +3 -0
- package/ScatterChartPremium/index.d.ts +3 -0
- package/ScatterChartPremium/index.js +26 -0
- package/ScatterChartPremium/index.mjs +3 -0
- package/ScatterChartPremium/webgl/ScatterWebGLPlot.d.mts +4 -0
- package/ScatterChartPremium/webgl/ScatterWebGLPlot.d.ts +4 -0
- package/ScatterChartPremium/webgl/ScatterWebGLPlot.js +70 -0
- package/ScatterChartPremium/webgl/ScatterWebGLPlot.mjs +65 -0
- package/ScatterChartPremium/webgl/ScatterWebGLProgram.d.mts +18 -0
- package/ScatterChartPremium/webgl/ScatterWebGLProgram.d.ts +18 -0
- package/ScatterChartPremium/webgl/ScatterWebGLProgram.js +129 -0
- package/ScatterChartPremium/webgl/ScatterWebGLProgram.mjs +122 -0
- package/ScatterChartPremium/webgl/shaders.d.mts +2 -0
- package/ScatterChartPremium/webgl/shaders.d.ts +2 -0
- package/ScatterChartPremium/webgl/shaders.js +57 -0
- package/ScatterChartPremium/webgl/shaders.mjs +51 -0
- package/ScatterChartPremium/webgl/useScatterWebGLPlotData.d.mts +7 -0
- package/ScatterChartPremium/webgl/useScatterWebGLPlotData.d.ts +7 -0
- package/ScatterChartPremium/webgl/useScatterWebGLPlotData.js +140 -0
- package/ScatterChartPremium/webgl/useScatterWebGLPlotData.mjs +134 -0
- package/index.d.mts +3 -1
- package/index.d.ts +3 -1
- package/index.js +25 -1
- package/index.mjs +4 -2
- package/internals/index.d.mts +1 -0
- package/internals/index.d.ts +1 -0
- package/internals/index.js +13 -0
- package/internals/index.mjs +1 -0
- package/models/seriesType/radialLine.d.mts +7 -1
- package/models/seriesType/radialLine.d.ts +7 -1
- package/package.json +185 -115
- package/plugins/selectors/useChartCandlestickPosition.selectors.d.mts +1 -1
- package/plugins/selectors/useChartCandlestickPosition.selectors.d.ts +1 -1
- package/utils/webgl/parseColor.d.mts +2 -1
- package/utils/webgl/parseColor.d.ts +2 -1
- package/utils/webgl/parseColor.js +8 -7
- package/utils/webgl/parseColor.mjs +8 -7
- package/utils/webgl/utils.d.mts +13 -0
- package/utils/webgl/utils.d.ts +13 -0
- package/utils/webgl/utils.js +29 -0
- package/utils/webgl/utils.mjs +27 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-charts-premium",
|
|
3
|
-
"version": "9.0
|
|
3
|
+
"version": "9.1.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "The Premium plan edition of the MUI X Charts components.",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -31,11 +31,11 @@
|
|
|
31
31
|
"@mui/utils": "9.0.0",
|
|
32
32
|
"clsx": "^2.1.1",
|
|
33
33
|
"prop-types": "^15.8.1",
|
|
34
|
-
"@mui/x-charts
|
|
35
|
-
"@mui/x-
|
|
36
|
-
"@mui/x-charts": "^9.0
|
|
37
|
-
"@mui/x-license": "^9.0
|
|
38
|
-
"@mui/x-
|
|
34
|
+
"@mui/x-charts": "^9.1.0",
|
|
35
|
+
"@mui/x-charts-vendor": "^9.0.0",
|
|
36
|
+
"@mui/x-charts-pro": "^9.1.0",
|
|
37
|
+
"@mui/x-license": "^9.1.0",
|
|
38
|
+
"@mui/x-internals": "^9.1.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
41
41
|
"@emotion/react": "^11.9.0",
|
|
@@ -174,6 +174,20 @@
|
|
|
174
174
|
"default": "./ChartsAxisHighlight/index.mjs"
|
|
175
175
|
}
|
|
176
176
|
},
|
|
177
|
+
"./ChartsAxisHighlightValue": {
|
|
178
|
+
"import": {
|
|
179
|
+
"types": "./ChartsAxisHighlightValue/index.d.mts",
|
|
180
|
+
"default": "./ChartsAxisHighlightValue/index.mjs"
|
|
181
|
+
},
|
|
182
|
+
"require": {
|
|
183
|
+
"types": "./ChartsAxisHighlightValue/index.d.ts",
|
|
184
|
+
"default": "./ChartsAxisHighlightValue/index.js"
|
|
185
|
+
},
|
|
186
|
+
"default": {
|
|
187
|
+
"types": "./ChartsAxisHighlightValue/index.d.mts",
|
|
188
|
+
"default": "./ChartsAxisHighlightValue/index.mjs"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
177
191
|
"./ChartsBrushOverlay": {
|
|
178
192
|
"import": {
|
|
179
193
|
"types": "./ChartsBrushOverlay/index.d.mts",
|
|
@@ -370,6 +384,20 @@
|
|
|
370
384
|
"default": "./ChartsOverlay/index.mjs"
|
|
371
385
|
}
|
|
372
386
|
},
|
|
387
|
+
"./ChartsRadialAxisHighlight": {
|
|
388
|
+
"import": {
|
|
389
|
+
"types": "./ChartsRadialAxisHighlight/index.d.mts",
|
|
390
|
+
"default": "./ChartsRadialAxisHighlight/index.mjs"
|
|
391
|
+
},
|
|
392
|
+
"require": {
|
|
393
|
+
"types": "./ChartsRadialAxisHighlight/index.d.ts",
|
|
394
|
+
"default": "./ChartsRadialAxisHighlight/index.js"
|
|
395
|
+
},
|
|
396
|
+
"default": {
|
|
397
|
+
"types": "./ChartsRadialAxisHighlight/index.d.mts",
|
|
398
|
+
"default": "./ChartsRadialAxisHighlight/index.mjs"
|
|
399
|
+
}
|
|
400
|
+
},
|
|
373
401
|
"./ChartsRadialDataProvider": {
|
|
374
402
|
"import": {
|
|
375
403
|
"types": "./ChartsRadialDataProvider/index.d.mts",
|
|
@@ -497,28 +525,28 @@
|
|
|
497
525
|
}
|
|
498
526
|
},
|
|
499
527
|
"./ChartsText": {
|
|
500
|
-
"import": {
|
|
501
|
-
"types": "./ChartsText/index.d.mts",
|
|
502
|
-
"default": "./ChartsText/index.mjs"
|
|
503
|
-
},
|
|
504
528
|
"require": {
|
|
505
529
|
"types": "./ChartsText/index.d.ts",
|
|
506
530
|
"default": "./ChartsText/index.js"
|
|
507
531
|
},
|
|
532
|
+
"import": {
|
|
533
|
+
"types": "./ChartsText/index.d.mts",
|
|
534
|
+
"default": "./ChartsText/index.mjs"
|
|
535
|
+
},
|
|
508
536
|
"default": {
|
|
509
537
|
"types": "./ChartsText/index.d.mts",
|
|
510
538
|
"default": "./ChartsText/index.mjs"
|
|
511
539
|
}
|
|
512
540
|
},
|
|
513
541
|
"./ChartsToolbarPro": {
|
|
514
|
-
"import": {
|
|
515
|
-
"types": "./ChartsToolbarPro/index.d.mts",
|
|
516
|
-
"default": "./ChartsToolbarPro/index.mjs"
|
|
517
|
-
},
|
|
518
542
|
"require": {
|
|
519
543
|
"types": "./ChartsToolbarPro/index.d.ts",
|
|
520
544
|
"default": "./ChartsToolbarPro/index.js"
|
|
521
545
|
},
|
|
546
|
+
"import": {
|
|
547
|
+
"types": "./ChartsToolbarPro/index.d.mts",
|
|
548
|
+
"default": "./ChartsToolbarPro/index.mjs"
|
|
549
|
+
},
|
|
522
550
|
"default": {
|
|
523
551
|
"types": "./ChartsToolbarPro/index.d.mts",
|
|
524
552
|
"default": "./ChartsToolbarPro/index.mjs"
|
|
@@ -595,14 +623,14 @@
|
|
|
595
623
|
}
|
|
596
624
|
},
|
|
597
625
|
"./ChartsZoomSlider": {
|
|
598
|
-
"import": {
|
|
599
|
-
"types": "./ChartsZoomSlider/index.d.mts",
|
|
600
|
-
"default": "./ChartsZoomSlider/index.mjs"
|
|
601
|
-
},
|
|
602
626
|
"require": {
|
|
603
627
|
"types": "./ChartsZoomSlider/index.d.ts",
|
|
604
628
|
"default": "./ChartsZoomSlider/index.js"
|
|
605
629
|
},
|
|
630
|
+
"import": {
|
|
631
|
+
"types": "./ChartsZoomSlider/index.d.mts",
|
|
632
|
+
"default": "./ChartsZoomSlider/index.mjs"
|
|
633
|
+
},
|
|
606
634
|
"default": {
|
|
607
635
|
"types": "./ChartsZoomSlider/index.d.mts",
|
|
608
636
|
"default": "./ChartsZoomSlider/index.mjs"
|
|
@@ -623,350 +651,392 @@
|
|
|
623
651
|
}
|
|
624
652
|
},
|
|
625
653
|
"./Gauge": {
|
|
626
|
-
"import": {
|
|
627
|
-
"types": "./Gauge/index.d.mts",
|
|
628
|
-
"default": "./Gauge/index.mjs"
|
|
629
|
-
},
|
|
630
654
|
"require": {
|
|
631
655
|
"types": "./Gauge/index.d.ts",
|
|
632
656
|
"default": "./Gauge/index.js"
|
|
633
657
|
},
|
|
658
|
+
"import": {
|
|
659
|
+
"types": "./Gauge/index.d.mts",
|
|
660
|
+
"default": "./Gauge/index.mjs"
|
|
661
|
+
},
|
|
634
662
|
"default": {
|
|
635
663
|
"types": "./Gauge/index.d.mts",
|
|
636
664
|
"default": "./Gauge/index.mjs"
|
|
637
665
|
}
|
|
638
666
|
},
|
|
639
667
|
"./Heatmap": {
|
|
640
|
-
"import": {
|
|
641
|
-
"types": "./Heatmap/index.d.mts",
|
|
642
|
-
"default": "./Heatmap/index.mjs"
|
|
643
|
-
},
|
|
644
668
|
"require": {
|
|
645
669
|
"types": "./Heatmap/index.d.ts",
|
|
646
670
|
"default": "./Heatmap/index.js"
|
|
647
671
|
},
|
|
672
|
+
"import": {
|
|
673
|
+
"types": "./Heatmap/index.d.mts",
|
|
674
|
+
"default": "./Heatmap/index.mjs"
|
|
675
|
+
},
|
|
648
676
|
"default": {
|
|
649
677
|
"types": "./Heatmap/index.d.mts",
|
|
650
678
|
"default": "./Heatmap/index.mjs"
|
|
651
679
|
}
|
|
652
680
|
},
|
|
653
681
|
"./HeatmapPremium": {
|
|
654
|
-
"import": {
|
|
655
|
-
"types": "./HeatmapPremium/index.d.mts",
|
|
656
|
-
"default": "./HeatmapPremium/index.mjs"
|
|
657
|
-
},
|
|
658
682
|
"require": {
|
|
659
683
|
"types": "./HeatmapPremium/index.d.ts",
|
|
660
684
|
"default": "./HeatmapPremium/index.js"
|
|
661
685
|
},
|
|
686
|
+
"import": {
|
|
687
|
+
"types": "./HeatmapPremium/index.d.mts",
|
|
688
|
+
"default": "./HeatmapPremium/index.mjs"
|
|
689
|
+
},
|
|
662
690
|
"default": {
|
|
663
691
|
"types": "./HeatmapPremium/index.d.mts",
|
|
664
692
|
"default": "./HeatmapPremium/index.mjs"
|
|
665
693
|
}
|
|
666
694
|
},
|
|
667
695
|
"./LineChart": {
|
|
668
|
-
"import": {
|
|
669
|
-
"types": "./LineChart/index.d.mts",
|
|
670
|
-
"default": "./LineChart/index.mjs"
|
|
671
|
-
},
|
|
672
696
|
"require": {
|
|
673
697
|
"types": "./LineChart/index.d.ts",
|
|
674
698
|
"default": "./LineChart/index.js"
|
|
675
699
|
},
|
|
700
|
+
"import": {
|
|
701
|
+
"types": "./LineChart/index.d.mts",
|
|
702
|
+
"default": "./LineChart/index.mjs"
|
|
703
|
+
},
|
|
676
704
|
"default": {
|
|
677
705
|
"types": "./LineChart/index.d.mts",
|
|
678
706
|
"default": "./LineChart/index.mjs"
|
|
679
707
|
}
|
|
680
708
|
},
|
|
681
709
|
"./LineChartPro": {
|
|
682
|
-
"import": {
|
|
683
|
-
"types": "./LineChartPro/index.d.mts",
|
|
684
|
-
"default": "./LineChartPro/index.mjs"
|
|
685
|
-
},
|
|
686
710
|
"require": {
|
|
687
711
|
"types": "./LineChartPro/index.d.ts",
|
|
688
712
|
"default": "./LineChartPro/index.js"
|
|
689
713
|
},
|
|
714
|
+
"import": {
|
|
715
|
+
"types": "./LineChartPro/index.d.mts",
|
|
716
|
+
"default": "./LineChartPro/index.mjs"
|
|
717
|
+
},
|
|
690
718
|
"default": {
|
|
691
719
|
"types": "./LineChartPro/index.d.mts",
|
|
692
720
|
"default": "./LineChartPro/index.mjs"
|
|
693
721
|
}
|
|
694
722
|
},
|
|
695
723
|
"./PieChart": {
|
|
696
|
-
"import": {
|
|
697
|
-
"types": "./PieChart/index.d.mts",
|
|
698
|
-
"default": "./PieChart/index.mjs"
|
|
699
|
-
},
|
|
700
724
|
"require": {
|
|
701
725
|
"types": "./PieChart/index.d.ts",
|
|
702
726
|
"default": "./PieChart/index.js"
|
|
703
727
|
},
|
|
728
|
+
"import": {
|
|
729
|
+
"types": "./PieChart/index.d.mts",
|
|
730
|
+
"default": "./PieChart/index.mjs"
|
|
731
|
+
},
|
|
704
732
|
"default": {
|
|
705
733
|
"types": "./PieChart/index.d.mts",
|
|
706
734
|
"default": "./PieChart/index.mjs"
|
|
707
735
|
}
|
|
708
736
|
},
|
|
709
737
|
"./PieChartPro": {
|
|
710
|
-
"import": {
|
|
711
|
-
"types": "./PieChartPro/index.d.mts",
|
|
712
|
-
"default": "./PieChartPro/index.mjs"
|
|
713
|
-
},
|
|
714
738
|
"require": {
|
|
715
739
|
"types": "./PieChartPro/index.d.ts",
|
|
716
740
|
"default": "./PieChartPro/index.js"
|
|
717
741
|
},
|
|
742
|
+
"import": {
|
|
743
|
+
"types": "./PieChartPro/index.d.mts",
|
|
744
|
+
"default": "./PieChartPro/index.mjs"
|
|
745
|
+
},
|
|
718
746
|
"default": {
|
|
719
747
|
"types": "./PieChartPro/index.d.mts",
|
|
720
748
|
"default": "./PieChartPro/index.mjs"
|
|
721
749
|
}
|
|
722
750
|
},
|
|
723
751
|
"./RadarChart": {
|
|
724
|
-
"import": {
|
|
725
|
-
"types": "./RadarChart/index.d.mts",
|
|
726
|
-
"default": "./RadarChart/index.mjs"
|
|
727
|
-
},
|
|
728
752
|
"require": {
|
|
729
753
|
"types": "./RadarChart/index.d.ts",
|
|
730
754
|
"default": "./RadarChart/index.js"
|
|
731
755
|
},
|
|
756
|
+
"import": {
|
|
757
|
+
"types": "./RadarChart/index.d.mts",
|
|
758
|
+
"default": "./RadarChart/index.mjs"
|
|
759
|
+
},
|
|
732
760
|
"default": {
|
|
733
761
|
"types": "./RadarChart/index.d.mts",
|
|
734
762
|
"default": "./RadarChart/index.mjs"
|
|
735
763
|
}
|
|
736
764
|
},
|
|
737
765
|
"./RadarChartPro": {
|
|
738
|
-
"import": {
|
|
739
|
-
"types": "./RadarChartPro/index.d.mts",
|
|
740
|
-
"default": "./RadarChartPro/index.mjs"
|
|
741
|
-
},
|
|
742
766
|
"require": {
|
|
743
767
|
"types": "./RadarChartPro/index.d.ts",
|
|
744
768
|
"default": "./RadarChartPro/index.js"
|
|
745
769
|
},
|
|
770
|
+
"import": {
|
|
771
|
+
"types": "./RadarChartPro/index.d.mts",
|
|
772
|
+
"default": "./RadarChartPro/index.mjs"
|
|
773
|
+
},
|
|
746
774
|
"default": {
|
|
747
775
|
"types": "./RadarChartPro/index.d.mts",
|
|
748
776
|
"default": "./RadarChartPro/index.mjs"
|
|
749
777
|
}
|
|
750
778
|
},
|
|
751
|
-
"./
|
|
779
|
+
"./RadialBarChart": {
|
|
752
780
|
"import": {
|
|
753
|
-
"types": "./
|
|
754
|
-
"default": "./
|
|
781
|
+
"types": "./RadialBarChart/index.d.mts",
|
|
782
|
+
"default": "./RadialBarChart/index.mjs"
|
|
783
|
+
},
|
|
784
|
+
"require": {
|
|
785
|
+
"types": "./RadialBarChart/index.d.ts",
|
|
786
|
+
"default": "./RadialBarChart/index.js"
|
|
755
787
|
},
|
|
788
|
+
"default": {
|
|
789
|
+
"types": "./RadialBarChart/index.d.mts",
|
|
790
|
+
"default": "./RadialBarChart/index.mjs"
|
|
791
|
+
}
|
|
792
|
+
},
|
|
793
|
+
"./RadialLineChart": {
|
|
756
794
|
"require": {
|
|
757
795
|
"types": "./RadialLineChart/index.d.ts",
|
|
758
796
|
"default": "./RadialLineChart/index.js"
|
|
759
797
|
},
|
|
798
|
+
"import": {
|
|
799
|
+
"types": "./RadialLineChart/index.d.mts",
|
|
800
|
+
"default": "./RadialLineChart/index.mjs"
|
|
801
|
+
},
|
|
760
802
|
"default": {
|
|
761
803
|
"types": "./RadialLineChart/index.d.mts",
|
|
762
804
|
"default": "./RadialLineChart/index.mjs"
|
|
763
805
|
}
|
|
764
806
|
},
|
|
765
807
|
"./SankeyChart": {
|
|
766
|
-
"import": {
|
|
767
|
-
"types": "./SankeyChart/index.d.mts",
|
|
768
|
-
"default": "./SankeyChart/index.mjs"
|
|
769
|
-
},
|
|
770
808
|
"require": {
|
|
771
809
|
"types": "./SankeyChart/index.d.ts",
|
|
772
810
|
"default": "./SankeyChart/index.js"
|
|
773
811
|
},
|
|
812
|
+
"import": {
|
|
813
|
+
"types": "./SankeyChart/index.d.mts",
|
|
814
|
+
"default": "./SankeyChart/index.mjs"
|
|
815
|
+
},
|
|
774
816
|
"default": {
|
|
775
817
|
"types": "./SankeyChart/index.d.mts",
|
|
776
818
|
"default": "./SankeyChart/index.mjs"
|
|
777
819
|
}
|
|
778
820
|
},
|
|
779
821
|
"./ScatterChart": {
|
|
780
|
-
"import": {
|
|
781
|
-
"types": "./ScatterChart/index.d.mts",
|
|
782
|
-
"default": "./ScatterChart/index.mjs"
|
|
783
|
-
},
|
|
784
822
|
"require": {
|
|
785
823
|
"types": "./ScatterChart/index.d.ts",
|
|
786
824
|
"default": "./ScatterChart/index.js"
|
|
787
825
|
},
|
|
826
|
+
"import": {
|
|
827
|
+
"types": "./ScatterChart/index.d.mts",
|
|
828
|
+
"default": "./ScatterChart/index.mjs"
|
|
829
|
+
},
|
|
788
830
|
"default": {
|
|
789
831
|
"types": "./ScatterChart/index.d.mts",
|
|
790
832
|
"default": "./ScatterChart/index.mjs"
|
|
791
833
|
}
|
|
792
834
|
},
|
|
793
|
-
"./
|
|
835
|
+
"./ScatterChartPremium": {
|
|
836
|
+
"require": {
|
|
837
|
+
"types": "./ScatterChartPremium/index.d.ts",
|
|
838
|
+
"default": "./ScatterChartPremium/index.js"
|
|
839
|
+
},
|
|
794
840
|
"import": {
|
|
795
|
-
"types": "./
|
|
796
|
-
"default": "./
|
|
841
|
+
"types": "./ScatterChartPremium/index.d.mts",
|
|
842
|
+
"default": "./ScatterChartPremium/index.mjs"
|
|
797
843
|
},
|
|
844
|
+
"default": {
|
|
845
|
+
"types": "./ScatterChartPremium/index.d.mts",
|
|
846
|
+
"default": "./ScatterChartPremium/index.mjs"
|
|
847
|
+
}
|
|
848
|
+
},
|
|
849
|
+
"./ScatterChartPro": {
|
|
798
850
|
"require": {
|
|
799
851
|
"types": "./ScatterChartPro/index.d.ts",
|
|
800
852
|
"default": "./ScatterChartPro/index.js"
|
|
801
853
|
},
|
|
854
|
+
"import": {
|
|
855
|
+
"types": "./ScatterChartPro/index.d.mts",
|
|
856
|
+
"default": "./ScatterChartPro/index.mjs"
|
|
857
|
+
},
|
|
802
858
|
"default": {
|
|
803
859
|
"types": "./ScatterChartPro/index.d.mts",
|
|
804
860
|
"default": "./ScatterChartPro/index.mjs"
|
|
805
861
|
}
|
|
806
862
|
},
|
|
807
863
|
"./SparkLineChart": {
|
|
808
|
-
"import": {
|
|
809
|
-
"types": "./SparkLineChart/index.d.mts",
|
|
810
|
-
"default": "./SparkLineChart/index.mjs"
|
|
811
|
-
},
|
|
812
864
|
"require": {
|
|
813
865
|
"types": "./SparkLineChart/index.d.ts",
|
|
814
866
|
"default": "./SparkLineChart/index.js"
|
|
815
867
|
},
|
|
868
|
+
"import": {
|
|
869
|
+
"types": "./SparkLineChart/index.d.mts",
|
|
870
|
+
"default": "./SparkLineChart/index.mjs"
|
|
871
|
+
},
|
|
816
872
|
"default": {
|
|
817
873
|
"types": "./SparkLineChart/index.d.mts",
|
|
818
874
|
"default": "./SparkLineChart/index.mjs"
|
|
819
875
|
}
|
|
820
876
|
},
|
|
821
877
|
"./Toolbar": {
|
|
822
|
-
"import": {
|
|
823
|
-
"types": "./Toolbar/index.d.mts",
|
|
824
|
-
"default": "./Toolbar/index.mjs"
|
|
825
|
-
},
|
|
826
878
|
"require": {
|
|
827
879
|
"types": "./Toolbar/index.d.ts",
|
|
828
880
|
"default": "./Toolbar/index.js"
|
|
829
881
|
},
|
|
882
|
+
"import": {
|
|
883
|
+
"types": "./Toolbar/index.d.mts",
|
|
884
|
+
"default": "./Toolbar/index.mjs"
|
|
885
|
+
},
|
|
830
886
|
"default": {
|
|
831
887
|
"types": "./Toolbar/index.d.mts",
|
|
832
888
|
"default": "./Toolbar/index.mjs"
|
|
833
889
|
}
|
|
834
890
|
},
|
|
835
891
|
"./colorPalettes": {
|
|
836
|
-
"import": {
|
|
837
|
-
"types": "./colorPalettes/index.d.mts",
|
|
838
|
-
"default": "./colorPalettes/index.mjs"
|
|
839
|
-
},
|
|
840
892
|
"require": {
|
|
841
893
|
"types": "./colorPalettes/index.d.ts",
|
|
842
894
|
"default": "./colorPalettes/index.js"
|
|
843
895
|
},
|
|
896
|
+
"import": {
|
|
897
|
+
"types": "./colorPalettes/index.d.mts",
|
|
898
|
+
"default": "./colorPalettes/index.mjs"
|
|
899
|
+
},
|
|
844
900
|
"default": {
|
|
845
901
|
"types": "./colorPalettes/index.d.mts",
|
|
846
902
|
"default": "./colorPalettes/index.mjs"
|
|
847
903
|
}
|
|
848
904
|
},
|
|
849
905
|
"./constants": {
|
|
850
|
-
"import": {
|
|
851
|
-
"types": "./constants/index.d.mts",
|
|
852
|
-
"default": "./constants/index.mjs"
|
|
853
|
-
},
|
|
854
906
|
"require": {
|
|
855
907
|
"types": "./constants/index.d.ts",
|
|
856
908
|
"default": "./constants/index.js"
|
|
857
909
|
},
|
|
910
|
+
"import": {
|
|
911
|
+
"types": "./constants/index.d.mts",
|
|
912
|
+
"default": "./constants/index.mjs"
|
|
913
|
+
},
|
|
858
914
|
"default": {
|
|
859
915
|
"types": "./constants/index.d.mts",
|
|
860
916
|
"default": "./constants/index.mjs"
|
|
861
917
|
}
|
|
862
918
|
},
|
|
863
919
|
"./context": {
|
|
864
|
-
"import": {
|
|
865
|
-
"types": "./context/index.d.mts",
|
|
866
|
-
"default": "./context/index.mjs"
|
|
867
|
-
},
|
|
868
920
|
"require": {
|
|
869
921
|
"types": "./context/index.d.ts",
|
|
870
922
|
"default": "./context/index.js"
|
|
871
923
|
},
|
|
924
|
+
"import": {
|
|
925
|
+
"types": "./context/index.d.mts",
|
|
926
|
+
"default": "./context/index.mjs"
|
|
927
|
+
},
|
|
872
928
|
"default": {
|
|
873
929
|
"types": "./context/index.d.mts",
|
|
874
930
|
"default": "./context/index.mjs"
|
|
875
931
|
}
|
|
876
932
|
},
|
|
877
933
|
"./hooks": {
|
|
878
|
-
"import": {
|
|
879
|
-
"types": "./hooks/index.d.mts",
|
|
880
|
-
"default": "./hooks/index.mjs"
|
|
881
|
-
},
|
|
882
934
|
"require": {
|
|
883
935
|
"types": "./hooks/index.d.ts",
|
|
884
936
|
"default": "./hooks/index.js"
|
|
885
937
|
},
|
|
938
|
+
"import": {
|
|
939
|
+
"types": "./hooks/index.d.mts",
|
|
940
|
+
"default": "./hooks/index.mjs"
|
|
941
|
+
},
|
|
886
942
|
"default": {
|
|
887
943
|
"types": "./hooks/index.d.mts",
|
|
888
944
|
"default": "./hooks/index.mjs"
|
|
889
945
|
}
|
|
890
946
|
},
|
|
891
|
-
"./
|
|
947
|
+
"./internals": {
|
|
948
|
+
"require": {
|
|
949
|
+
"types": "./internals/index.d.ts",
|
|
950
|
+
"default": "./internals/index.js"
|
|
951
|
+
},
|
|
892
952
|
"import": {
|
|
893
|
-
"types": "./
|
|
894
|
-
"default": "./
|
|
953
|
+
"types": "./internals/index.d.mts",
|
|
954
|
+
"default": "./internals/index.mjs"
|
|
895
955
|
},
|
|
956
|
+
"default": {
|
|
957
|
+
"types": "./internals/index.d.mts",
|
|
958
|
+
"default": "./internals/index.mjs"
|
|
959
|
+
}
|
|
960
|
+
},
|
|
961
|
+
"./locales": {
|
|
896
962
|
"require": {
|
|
897
963
|
"types": "./locales/index.d.ts",
|
|
898
964
|
"default": "./locales/index.js"
|
|
899
965
|
},
|
|
966
|
+
"import": {
|
|
967
|
+
"types": "./locales/index.d.mts",
|
|
968
|
+
"default": "./locales/index.mjs"
|
|
969
|
+
},
|
|
900
970
|
"default": {
|
|
901
971
|
"types": "./locales/index.d.mts",
|
|
902
972
|
"default": "./locales/index.mjs"
|
|
903
973
|
}
|
|
904
974
|
},
|
|
905
975
|
"./models": {
|
|
906
|
-
"import": {
|
|
907
|
-
"types": "./models/index.d.mts",
|
|
908
|
-
"default": "./models/index.mjs"
|
|
909
|
-
},
|
|
910
976
|
"require": {
|
|
911
977
|
"types": "./models/index.d.ts",
|
|
912
978
|
"default": "./models/index.js"
|
|
913
979
|
},
|
|
980
|
+
"import": {
|
|
981
|
+
"types": "./models/index.d.mts",
|
|
982
|
+
"default": "./models/index.mjs"
|
|
983
|
+
},
|
|
914
984
|
"default": {
|
|
915
985
|
"types": "./models/index.d.mts",
|
|
916
986
|
"default": "./models/index.mjs"
|
|
917
987
|
}
|
|
918
988
|
},
|
|
919
989
|
"./plugins": {
|
|
920
|
-
"import": {
|
|
921
|
-
"types": "./plugins/index.d.mts",
|
|
922
|
-
"default": "./plugins/index.mjs"
|
|
923
|
-
},
|
|
924
990
|
"require": {
|
|
925
991
|
"types": "./plugins/index.d.ts",
|
|
926
992
|
"default": "./plugins/index.js"
|
|
927
993
|
},
|
|
994
|
+
"import": {
|
|
995
|
+
"types": "./plugins/index.d.mts",
|
|
996
|
+
"default": "./plugins/index.mjs"
|
|
997
|
+
},
|
|
928
998
|
"default": {
|
|
929
999
|
"types": "./plugins/index.d.mts",
|
|
930
1000
|
"default": "./plugins/index.mjs"
|
|
931
1001
|
}
|
|
932
1002
|
},
|
|
933
1003
|
"./typeOverloads": {
|
|
934
|
-
"import": {
|
|
935
|
-
"types": "./typeOverloads/index.d.mts",
|
|
936
|
-
"default": "./typeOverloads/index.mjs"
|
|
937
|
-
},
|
|
938
1004
|
"require": {
|
|
939
1005
|
"types": "./typeOverloads/index.d.ts",
|
|
940
1006
|
"default": "./typeOverloads/index.js"
|
|
941
1007
|
},
|
|
1008
|
+
"import": {
|
|
1009
|
+
"types": "./typeOverloads/index.d.mts",
|
|
1010
|
+
"default": "./typeOverloads/index.mjs"
|
|
1011
|
+
},
|
|
942
1012
|
"default": {
|
|
943
1013
|
"types": "./typeOverloads/index.d.mts",
|
|
944
1014
|
"default": "./typeOverloads/index.mjs"
|
|
945
1015
|
}
|
|
946
1016
|
},
|
|
947
1017
|
"./utils": {
|
|
948
|
-
"import": {
|
|
949
|
-
"types": "./utils/index.d.mts",
|
|
950
|
-
"default": "./utils/index.mjs"
|
|
951
|
-
},
|
|
952
1018
|
"require": {
|
|
953
1019
|
"types": "./utils/index.d.ts",
|
|
954
1020
|
"default": "./utils/index.js"
|
|
955
1021
|
},
|
|
1022
|
+
"import": {
|
|
1023
|
+
"types": "./utils/index.d.mts",
|
|
1024
|
+
"default": "./utils/index.mjs"
|
|
1025
|
+
},
|
|
956
1026
|
"default": {
|
|
957
1027
|
"types": "./utils/index.d.mts",
|
|
958
1028
|
"default": "./utils/index.mjs"
|
|
959
1029
|
}
|
|
960
1030
|
},
|
|
961
1031
|
"./moduleAugmentation/rangeBarOnClick": {
|
|
962
|
-
"import": {
|
|
963
|
-
"types": "./moduleAugmentation/rangeBarOnClick.d.mts",
|
|
964
|
-
"default": "./moduleAugmentation/rangeBarOnClick.mjs"
|
|
965
|
-
},
|
|
966
1032
|
"require": {
|
|
967
1033
|
"types": "./moduleAugmentation/rangeBarOnClick.d.ts",
|
|
968
1034
|
"default": "./moduleAugmentation/rangeBarOnClick.js"
|
|
969
1035
|
},
|
|
1036
|
+
"import": {
|
|
1037
|
+
"types": "./moduleAugmentation/rangeBarOnClick.d.mts",
|
|
1038
|
+
"default": "./moduleAugmentation/rangeBarOnClick.mjs"
|
|
1039
|
+
},
|
|
970
1040
|
"default": {
|
|
971
1041
|
"types": "./moduleAugmentation/rangeBarOnClick.d.mts",
|
|
972
1042
|
"default": "./moduleAugmentation/rangeBarOnClick.mjs"
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { type OHLCItemIdentifier } from "../../models/index.mjs";
|
|
2
2
|
export declare const selectorCandlestickItemAtPosition: (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<{}> & {
|
|
3
3
|
cacheKey: import("@mui/x-charts/internals").ChartStateCacheKey;
|
|
4
|
-
}, svgPoint: Pick<DOMPoint, "
|
|
4
|
+
}, svgPoint: Pick<DOMPoint, "y" | "x">) => OHLCItemIdentifier | undefined;
|
|
@@ -1,4 +1,4 @@
|
|
|
1
1
|
import { type OHLCItemIdentifier } from "../../models/index.js";
|
|
2
2
|
export declare const selectorCandlestickItemAtPosition: (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<{}> & {
|
|
3
3
|
cacheKey: import("@mui/x-charts/internals").ChartStateCacheKey;
|
|
4
|
-
}, svgPoint: Pick<DOMPoint, "
|
|
4
|
+
}, svgPoint: Pick<DOMPoint, "y" | "x">) => OHLCItemIdentifier | undefined;
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Parse color string to RGBA
|
|
2
|
+
* Parse color string to RGBA tuple. Each channel is in [0, 255], matching the byte
|
|
3
|
+
* representation we upload to GPU color buffers.
|
|
3
4
|
* This function does not work in SSR.
|
|
4
5
|
*/
|
|
5
6
|
export declare function parseColor(color: string): [number, number, number, number];
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/**
|
|
2
|
-
* Parse color string to RGBA
|
|
2
|
+
* Parse color string to RGBA tuple. Each channel is in [0, 255], matching the byte
|
|
3
|
+
* representation we upload to GPU color buffers.
|
|
3
4
|
* This function does not work in SSR.
|
|
4
5
|
*/
|
|
5
6
|
export declare function parseColor(color: string): [number, number, number, number];
|