@mui/x-charts-premium 9.1.0 → 9.2.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.d.mts +4 -1
- package/BarChartPremium/BarChartPremium.d.ts +4 -1
- package/BarChartPremium/BarChartPremium.js +21 -8
- package/BarChartPremium/BarChartPremium.mjs +22 -9
- package/BarChartPremium/BarPlotPremium.d.mts +37 -0
- package/BarChartPremium/BarPlotPremium.d.ts +37 -0
- package/BarChartPremium/BarPlotPremium.js +78 -0
- package/BarChartPremium/BarPlotPremium.mjs +72 -0
- package/BarChartPremium/RangeBar/useUtilityClasses.d.mts +1 -1
- package/BarChartPremium/RangeBar/useUtilityClasses.d.ts +1 -1
- package/BarChartPremium/index.d.mts +1 -0
- package/BarChartPremium/index.d.ts +1 -0
- package/BarChartPremium/index.js +12 -0
- package/BarChartPremium/index.mjs +1 -0
- package/BarChartPremium/useBarChartPremiumProps.d.mts +2 -1
- package/BarChartPremium/useBarChartPremiumProps.d.ts +2 -1
- package/BarChartPremium/useBarChartPremiumProps.js +39 -5
- package/BarChartPremium/useBarChartPremiumProps.mjs +39 -5
- package/BarChartPremium/webgl/BarWebGLPlot.d.mts +10 -0
- package/BarChartPremium/webgl/BarWebGLPlot.d.ts +10 -0
- package/BarChartPremium/webgl/BarWebGLPlot.js +81 -0
- package/BarChartPremium/webgl/BarWebGLPlot.mjs +75 -0
- package/BarChartPremium/webgl/BarWebGLProgram.d.mts +19 -0
- package/BarChartPremium/webgl/BarWebGLProgram.d.ts +19 -0
- package/BarChartPremium/webgl/BarWebGLProgram.js +107 -0
- package/BarChartPremium/webgl/BarWebGLProgram.mjs +100 -0
- package/BarChartPremium/webgl/shaders.d.mts +2 -0
- package/BarChartPremium/webgl/shaders.d.ts +2 -0
- package/BarChartPremium/webgl/shaders.js +69 -0
- package/BarChartPremium/webgl/shaders.mjs +63 -0
- package/BarChartPremium/webgl/useBarWebGLPlotData.d.mts +10 -0
- package/BarChartPremium/webgl/useBarWebGLPlotData.d.ts +10 -0
- package/BarChartPremium/webgl/useBarWebGLPlotData.js +160 -0
- package/BarChartPremium/webgl/useBarWebGLPlotData.mjs +154 -0
- package/CHANGELOG.md +103 -0
- package/ChartsDataProviderPremium/ChartsDataProviderPremium.js +2 -2
- package/ChartsDataProviderPremium/ChartsDataProviderPremium.mjs +2 -2
- package/ChartsRadialDataProviderPremium/ChartsRadialDataProviderPremium.js +9 -3
- package/ChartsRadialDataProviderPremium/ChartsRadialDataProviderPremium.mjs +9 -3
- package/RadialBarChart/RadialBarChart.d.mts +7 -0
- package/RadialBarChart/RadialBarChart.d.ts +7 -0
- package/RadialBarChart/RadialBarChart.js +15 -2
- package/RadialBarChart/RadialBarChart.mjs +15 -2
- package/RadialBarChart/RadialBarElement.js +15 -1
- package/RadialBarChart/RadialBarElement.mjs +15 -1
- package/RadialBarChart/radialBarClasses.d.mts +1 -1
- package/RadialBarChart/radialBarClasses.d.ts +1 -1
- package/RadialBarChart/seriesConfig/axisTooltipGetter.js +5 -2
- package/RadialBarChart/seriesConfig/axisTooltipGetter.mjs +5 -2
- package/RadialBarChart/seriesConfig/getItemAtPosition.d.mts +6 -0
- package/RadialBarChart/seriesConfig/getItemAtPosition.d.ts +6 -0
- package/RadialBarChart/seriesConfig/getItemAtPosition.js +69 -0
- package/RadialBarChart/seriesConfig/getItemAtPosition.mjs +63 -0
- package/RadialBarChart/seriesConfig/index.js +2 -1
- package/RadialBarChart/seriesConfig/index.mjs +2 -1
- package/RadialBarChart/useRadialBarChartProps.d.mts +2 -0
- package/RadialBarChart/useRadialBarChartProps.d.ts +2 -0
- package/RadialBarChart/useRadialBarChartProps.js +10 -2
- package/RadialBarChart/useRadialBarChartProps.mjs +10 -2
- package/RadialLineChart/RadialLineChart.js +4 -2
- package/RadialLineChart/RadialLineChart.mjs +4 -2
- package/RadialLineChart/RadialLineChart.plugins.d.mts +1 -1
- package/RadialLineChart/RadialLineChart.plugins.d.ts +1 -1
- package/RadialLineChart/RadialLineChart.plugins.js +1 -1
- package/RadialLineChart/RadialLineChart.plugins.mjs +1 -1
- package/RadialLineChart/seriesConfig/getItemAtPosition.js +3 -3
- package/RadialLineChart/seriesConfig/getItemAtPosition.mjs +4 -4
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/package.json +125 -125
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-charts-premium",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.2.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",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@babel/runtime": "^7.29.2",
|
|
31
|
-
"@mui/utils": "9.0.
|
|
31
|
+
"@mui/utils": "9.0.1",
|
|
32
32
|
"clsx": "^2.1.1",
|
|
33
33
|
"prop-types": "^15.8.1",
|
|
34
|
-
"@mui/x-charts": "^9.
|
|
34
|
+
"@mui/x-charts": "^9.2.0",
|
|
35
|
+
"@mui/x-charts-pro": "^9.2.0",
|
|
35
36
|
"@mui/x-charts-vendor": "^9.0.0",
|
|
36
|
-
"@mui/x-
|
|
37
|
-
"@mui/x-license": "^9.1.0",
|
|
37
|
+
"@mui/x-license": "^9.2.0",
|
|
38
38
|
"@mui/x-internals": "^9.1.0"
|
|
39
39
|
},
|
|
40
40
|
"peerDependencies": {
|
|
@@ -525,28 +525,28 @@
|
|
|
525
525
|
}
|
|
526
526
|
},
|
|
527
527
|
"./ChartsText": {
|
|
528
|
-
"require": {
|
|
529
|
-
"types": "./ChartsText/index.d.ts",
|
|
530
|
-
"default": "./ChartsText/index.js"
|
|
531
|
-
},
|
|
532
528
|
"import": {
|
|
533
529
|
"types": "./ChartsText/index.d.mts",
|
|
534
530
|
"default": "./ChartsText/index.mjs"
|
|
535
531
|
},
|
|
532
|
+
"require": {
|
|
533
|
+
"types": "./ChartsText/index.d.ts",
|
|
534
|
+
"default": "./ChartsText/index.js"
|
|
535
|
+
},
|
|
536
536
|
"default": {
|
|
537
537
|
"types": "./ChartsText/index.d.mts",
|
|
538
538
|
"default": "./ChartsText/index.mjs"
|
|
539
539
|
}
|
|
540
540
|
},
|
|
541
541
|
"./ChartsToolbarPro": {
|
|
542
|
-
"require": {
|
|
543
|
-
"types": "./ChartsToolbarPro/index.d.ts",
|
|
544
|
-
"default": "./ChartsToolbarPro/index.js"
|
|
545
|
-
},
|
|
546
542
|
"import": {
|
|
547
543
|
"types": "./ChartsToolbarPro/index.d.mts",
|
|
548
544
|
"default": "./ChartsToolbarPro/index.mjs"
|
|
549
545
|
},
|
|
546
|
+
"require": {
|
|
547
|
+
"types": "./ChartsToolbarPro/index.d.ts",
|
|
548
|
+
"default": "./ChartsToolbarPro/index.js"
|
|
549
|
+
},
|
|
550
550
|
"default": {
|
|
551
551
|
"types": "./ChartsToolbarPro/index.d.mts",
|
|
552
552
|
"default": "./ChartsToolbarPro/index.mjs"
|
|
@@ -623,14 +623,14 @@
|
|
|
623
623
|
}
|
|
624
624
|
},
|
|
625
625
|
"./ChartsZoomSlider": {
|
|
626
|
-
"require": {
|
|
627
|
-
"types": "./ChartsZoomSlider/index.d.ts",
|
|
628
|
-
"default": "./ChartsZoomSlider/index.js"
|
|
629
|
-
},
|
|
630
626
|
"import": {
|
|
631
627
|
"types": "./ChartsZoomSlider/index.d.mts",
|
|
632
628
|
"default": "./ChartsZoomSlider/index.mjs"
|
|
633
629
|
},
|
|
630
|
+
"require": {
|
|
631
|
+
"types": "./ChartsZoomSlider/index.d.ts",
|
|
632
|
+
"default": "./ChartsZoomSlider/index.js"
|
|
633
|
+
},
|
|
634
634
|
"default": {
|
|
635
635
|
"types": "./ChartsZoomSlider/index.d.mts",
|
|
636
636
|
"default": "./ChartsZoomSlider/index.mjs"
|
|
@@ -651,126 +651,126 @@
|
|
|
651
651
|
}
|
|
652
652
|
},
|
|
653
653
|
"./Gauge": {
|
|
654
|
-
"require": {
|
|
655
|
-
"types": "./Gauge/index.d.ts",
|
|
656
|
-
"default": "./Gauge/index.js"
|
|
657
|
-
},
|
|
658
654
|
"import": {
|
|
659
655
|
"types": "./Gauge/index.d.mts",
|
|
660
656
|
"default": "./Gauge/index.mjs"
|
|
661
657
|
},
|
|
658
|
+
"require": {
|
|
659
|
+
"types": "./Gauge/index.d.ts",
|
|
660
|
+
"default": "./Gauge/index.js"
|
|
661
|
+
},
|
|
662
662
|
"default": {
|
|
663
663
|
"types": "./Gauge/index.d.mts",
|
|
664
664
|
"default": "./Gauge/index.mjs"
|
|
665
665
|
}
|
|
666
666
|
},
|
|
667
667
|
"./Heatmap": {
|
|
668
|
-
"require": {
|
|
669
|
-
"types": "./Heatmap/index.d.ts",
|
|
670
|
-
"default": "./Heatmap/index.js"
|
|
671
|
-
},
|
|
672
668
|
"import": {
|
|
673
669
|
"types": "./Heatmap/index.d.mts",
|
|
674
670
|
"default": "./Heatmap/index.mjs"
|
|
675
671
|
},
|
|
672
|
+
"require": {
|
|
673
|
+
"types": "./Heatmap/index.d.ts",
|
|
674
|
+
"default": "./Heatmap/index.js"
|
|
675
|
+
},
|
|
676
676
|
"default": {
|
|
677
677
|
"types": "./Heatmap/index.d.mts",
|
|
678
678
|
"default": "./Heatmap/index.mjs"
|
|
679
679
|
}
|
|
680
680
|
},
|
|
681
681
|
"./HeatmapPremium": {
|
|
682
|
-
"require": {
|
|
683
|
-
"types": "./HeatmapPremium/index.d.ts",
|
|
684
|
-
"default": "./HeatmapPremium/index.js"
|
|
685
|
-
},
|
|
686
682
|
"import": {
|
|
687
683
|
"types": "./HeatmapPremium/index.d.mts",
|
|
688
684
|
"default": "./HeatmapPremium/index.mjs"
|
|
689
685
|
},
|
|
686
|
+
"require": {
|
|
687
|
+
"types": "./HeatmapPremium/index.d.ts",
|
|
688
|
+
"default": "./HeatmapPremium/index.js"
|
|
689
|
+
},
|
|
690
690
|
"default": {
|
|
691
691
|
"types": "./HeatmapPremium/index.d.mts",
|
|
692
692
|
"default": "./HeatmapPremium/index.mjs"
|
|
693
693
|
}
|
|
694
694
|
},
|
|
695
695
|
"./LineChart": {
|
|
696
|
-
"require": {
|
|
697
|
-
"types": "./LineChart/index.d.ts",
|
|
698
|
-
"default": "./LineChart/index.js"
|
|
699
|
-
},
|
|
700
696
|
"import": {
|
|
701
697
|
"types": "./LineChart/index.d.mts",
|
|
702
698
|
"default": "./LineChart/index.mjs"
|
|
703
699
|
},
|
|
700
|
+
"require": {
|
|
701
|
+
"types": "./LineChart/index.d.ts",
|
|
702
|
+
"default": "./LineChart/index.js"
|
|
703
|
+
},
|
|
704
704
|
"default": {
|
|
705
705
|
"types": "./LineChart/index.d.mts",
|
|
706
706
|
"default": "./LineChart/index.mjs"
|
|
707
707
|
}
|
|
708
708
|
},
|
|
709
709
|
"./LineChartPro": {
|
|
710
|
-
"require": {
|
|
711
|
-
"types": "./LineChartPro/index.d.ts",
|
|
712
|
-
"default": "./LineChartPro/index.js"
|
|
713
|
-
},
|
|
714
710
|
"import": {
|
|
715
711
|
"types": "./LineChartPro/index.d.mts",
|
|
716
712
|
"default": "./LineChartPro/index.mjs"
|
|
717
713
|
},
|
|
714
|
+
"require": {
|
|
715
|
+
"types": "./LineChartPro/index.d.ts",
|
|
716
|
+
"default": "./LineChartPro/index.js"
|
|
717
|
+
},
|
|
718
718
|
"default": {
|
|
719
719
|
"types": "./LineChartPro/index.d.mts",
|
|
720
720
|
"default": "./LineChartPro/index.mjs"
|
|
721
721
|
}
|
|
722
722
|
},
|
|
723
723
|
"./PieChart": {
|
|
724
|
-
"require": {
|
|
725
|
-
"types": "./PieChart/index.d.ts",
|
|
726
|
-
"default": "./PieChart/index.js"
|
|
727
|
-
},
|
|
728
724
|
"import": {
|
|
729
725
|
"types": "./PieChart/index.d.mts",
|
|
730
726
|
"default": "./PieChart/index.mjs"
|
|
731
727
|
},
|
|
728
|
+
"require": {
|
|
729
|
+
"types": "./PieChart/index.d.ts",
|
|
730
|
+
"default": "./PieChart/index.js"
|
|
731
|
+
},
|
|
732
732
|
"default": {
|
|
733
733
|
"types": "./PieChart/index.d.mts",
|
|
734
734
|
"default": "./PieChart/index.mjs"
|
|
735
735
|
}
|
|
736
736
|
},
|
|
737
737
|
"./PieChartPro": {
|
|
738
|
-
"require": {
|
|
739
|
-
"types": "./PieChartPro/index.d.ts",
|
|
740
|
-
"default": "./PieChartPro/index.js"
|
|
741
|
-
},
|
|
742
738
|
"import": {
|
|
743
739
|
"types": "./PieChartPro/index.d.mts",
|
|
744
740
|
"default": "./PieChartPro/index.mjs"
|
|
745
741
|
},
|
|
742
|
+
"require": {
|
|
743
|
+
"types": "./PieChartPro/index.d.ts",
|
|
744
|
+
"default": "./PieChartPro/index.js"
|
|
745
|
+
},
|
|
746
746
|
"default": {
|
|
747
747
|
"types": "./PieChartPro/index.d.mts",
|
|
748
748
|
"default": "./PieChartPro/index.mjs"
|
|
749
749
|
}
|
|
750
750
|
},
|
|
751
751
|
"./RadarChart": {
|
|
752
|
-
"require": {
|
|
753
|
-
"types": "./RadarChart/index.d.ts",
|
|
754
|
-
"default": "./RadarChart/index.js"
|
|
755
|
-
},
|
|
756
752
|
"import": {
|
|
757
753
|
"types": "./RadarChart/index.d.mts",
|
|
758
754
|
"default": "./RadarChart/index.mjs"
|
|
759
755
|
},
|
|
756
|
+
"require": {
|
|
757
|
+
"types": "./RadarChart/index.d.ts",
|
|
758
|
+
"default": "./RadarChart/index.js"
|
|
759
|
+
},
|
|
760
760
|
"default": {
|
|
761
761
|
"types": "./RadarChart/index.d.mts",
|
|
762
762
|
"default": "./RadarChart/index.mjs"
|
|
763
763
|
}
|
|
764
764
|
},
|
|
765
765
|
"./RadarChartPro": {
|
|
766
|
-
"require": {
|
|
767
|
-
"types": "./RadarChartPro/index.d.ts",
|
|
768
|
-
"default": "./RadarChartPro/index.js"
|
|
769
|
-
},
|
|
770
766
|
"import": {
|
|
771
767
|
"types": "./RadarChartPro/index.d.mts",
|
|
772
768
|
"default": "./RadarChartPro/index.mjs"
|
|
773
769
|
},
|
|
770
|
+
"require": {
|
|
771
|
+
"types": "./RadarChartPro/index.d.ts",
|
|
772
|
+
"default": "./RadarChartPro/index.js"
|
|
773
|
+
},
|
|
774
774
|
"default": {
|
|
775
775
|
"types": "./RadarChartPro/index.d.mts",
|
|
776
776
|
"default": "./RadarChartPro/index.mjs"
|
|
@@ -791,252 +791,252 @@
|
|
|
791
791
|
}
|
|
792
792
|
},
|
|
793
793
|
"./RadialLineChart": {
|
|
794
|
-
"require": {
|
|
795
|
-
"types": "./RadialLineChart/index.d.ts",
|
|
796
|
-
"default": "./RadialLineChart/index.js"
|
|
797
|
-
},
|
|
798
794
|
"import": {
|
|
799
795
|
"types": "./RadialLineChart/index.d.mts",
|
|
800
796
|
"default": "./RadialLineChart/index.mjs"
|
|
801
797
|
},
|
|
798
|
+
"require": {
|
|
799
|
+
"types": "./RadialLineChart/index.d.ts",
|
|
800
|
+
"default": "./RadialLineChart/index.js"
|
|
801
|
+
},
|
|
802
802
|
"default": {
|
|
803
803
|
"types": "./RadialLineChart/index.d.mts",
|
|
804
804
|
"default": "./RadialLineChart/index.mjs"
|
|
805
805
|
}
|
|
806
806
|
},
|
|
807
807
|
"./SankeyChart": {
|
|
808
|
-
"require": {
|
|
809
|
-
"types": "./SankeyChart/index.d.ts",
|
|
810
|
-
"default": "./SankeyChart/index.js"
|
|
811
|
-
},
|
|
812
808
|
"import": {
|
|
813
809
|
"types": "./SankeyChart/index.d.mts",
|
|
814
810
|
"default": "./SankeyChart/index.mjs"
|
|
815
811
|
},
|
|
812
|
+
"require": {
|
|
813
|
+
"types": "./SankeyChart/index.d.ts",
|
|
814
|
+
"default": "./SankeyChart/index.js"
|
|
815
|
+
},
|
|
816
816
|
"default": {
|
|
817
817
|
"types": "./SankeyChart/index.d.mts",
|
|
818
818
|
"default": "./SankeyChart/index.mjs"
|
|
819
819
|
}
|
|
820
820
|
},
|
|
821
821
|
"./ScatterChart": {
|
|
822
|
-
"require": {
|
|
823
|
-
"types": "./ScatterChart/index.d.ts",
|
|
824
|
-
"default": "./ScatterChart/index.js"
|
|
825
|
-
},
|
|
826
822
|
"import": {
|
|
827
823
|
"types": "./ScatterChart/index.d.mts",
|
|
828
824
|
"default": "./ScatterChart/index.mjs"
|
|
829
825
|
},
|
|
826
|
+
"require": {
|
|
827
|
+
"types": "./ScatterChart/index.d.ts",
|
|
828
|
+
"default": "./ScatterChart/index.js"
|
|
829
|
+
},
|
|
830
830
|
"default": {
|
|
831
831
|
"types": "./ScatterChart/index.d.mts",
|
|
832
832
|
"default": "./ScatterChart/index.mjs"
|
|
833
833
|
}
|
|
834
834
|
},
|
|
835
835
|
"./ScatterChartPremium": {
|
|
836
|
-
"require": {
|
|
837
|
-
"types": "./ScatterChartPremium/index.d.ts",
|
|
838
|
-
"default": "./ScatterChartPremium/index.js"
|
|
839
|
-
},
|
|
840
836
|
"import": {
|
|
841
837
|
"types": "./ScatterChartPremium/index.d.mts",
|
|
842
838
|
"default": "./ScatterChartPremium/index.mjs"
|
|
843
839
|
},
|
|
840
|
+
"require": {
|
|
841
|
+
"types": "./ScatterChartPremium/index.d.ts",
|
|
842
|
+
"default": "./ScatterChartPremium/index.js"
|
|
843
|
+
},
|
|
844
844
|
"default": {
|
|
845
845
|
"types": "./ScatterChartPremium/index.d.mts",
|
|
846
846
|
"default": "./ScatterChartPremium/index.mjs"
|
|
847
847
|
}
|
|
848
848
|
},
|
|
849
849
|
"./ScatterChartPro": {
|
|
850
|
-
"require": {
|
|
851
|
-
"types": "./ScatterChartPro/index.d.ts",
|
|
852
|
-
"default": "./ScatterChartPro/index.js"
|
|
853
|
-
},
|
|
854
850
|
"import": {
|
|
855
851
|
"types": "./ScatterChartPro/index.d.mts",
|
|
856
852
|
"default": "./ScatterChartPro/index.mjs"
|
|
857
853
|
},
|
|
854
|
+
"require": {
|
|
855
|
+
"types": "./ScatterChartPro/index.d.ts",
|
|
856
|
+
"default": "./ScatterChartPro/index.js"
|
|
857
|
+
},
|
|
858
858
|
"default": {
|
|
859
859
|
"types": "./ScatterChartPro/index.d.mts",
|
|
860
860
|
"default": "./ScatterChartPro/index.mjs"
|
|
861
861
|
}
|
|
862
862
|
},
|
|
863
863
|
"./SparkLineChart": {
|
|
864
|
-
"require": {
|
|
865
|
-
"types": "./SparkLineChart/index.d.ts",
|
|
866
|
-
"default": "./SparkLineChart/index.js"
|
|
867
|
-
},
|
|
868
864
|
"import": {
|
|
869
865
|
"types": "./SparkLineChart/index.d.mts",
|
|
870
866
|
"default": "./SparkLineChart/index.mjs"
|
|
871
867
|
},
|
|
868
|
+
"require": {
|
|
869
|
+
"types": "./SparkLineChart/index.d.ts",
|
|
870
|
+
"default": "./SparkLineChart/index.js"
|
|
871
|
+
},
|
|
872
872
|
"default": {
|
|
873
873
|
"types": "./SparkLineChart/index.d.mts",
|
|
874
874
|
"default": "./SparkLineChart/index.mjs"
|
|
875
875
|
}
|
|
876
876
|
},
|
|
877
877
|
"./Toolbar": {
|
|
878
|
-
"require": {
|
|
879
|
-
"types": "./Toolbar/index.d.ts",
|
|
880
|
-
"default": "./Toolbar/index.js"
|
|
881
|
-
},
|
|
882
878
|
"import": {
|
|
883
879
|
"types": "./Toolbar/index.d.mts",
|
|
884
880
|
"default": "./Toolbar/index.mjs"
|
|
885
881
|
},
|
|
882
|
+
"require": {
|
|
883
|
+
"types": "./Toolbar/index.d.ts",
|
|
884
|
+
"default": "./Toolbar/index.js"
|
|
885
|
+
},
|
|
886
886
|
"default": {
|
|
887
887
|
"types": "./Toolbar/index.d.mts",
|
|
888
888
|
"default": "./Toolbar/index.mjs"
|
|
889
889
|
}
|
|
890
890
|
},
|
|
891
891
|
"./colorPalettes": {
|
|
892
|
-
"require": {
|
|
893
|
-
"types": "./colorPalettes/index.d.ts",
|
|
894
|
-
"default": "./colorPalettes/index.js"
|
|
895
|
-
},
|
|
896
892
|
"import": {
|
|
897
893
|
"types": "./colorPalettes/index.d.mts",
|
|
898
894
|
"default": "./colorPalettes/index.mjs"
|
|
899
895
|
},
|
|
896
|
+
"require": {
|
|
897
|
+
"types": "./colorPalettes/index.d.ts",
|
|
898
|
+
"default": "./colorPalettes/index.js"
|
|
899
|
+
},
|
|
900
900
|
"default": {
|
|
901
901
|
"types": "./colorPalettes/index.d.mts",
|
|
902
902
|
"default": "./colorPalettes/index.mjs"
|
|
903
903
|
}
|
|
904
904
|
},
|
|
905
905
|
"./constants": {
|
|
906
|
-
"require": {
|
|
907
|
-
"types": "./constants/index.d.ts",
|
|
908
|
-
"default": "./constants/index.js"
|
|
909
|
-
},
|
|
910
906
|
"import": {
|
|
911
907
|
"types": "./constants/index.d.mts",
|
|
912
908
|
"default": "./constants/index.mjs"
|
|
913
909
|
},
|
|
910
|
+
"require": {
|
|
911
|
+
"types": "./constants/index.d.ts",
|
|
912
|
+
"default": "./constants/index.js"
|
|
913
|
+
},
|
|
914
914
|
"default": {
|
|
915
915
|
"types": "./constants/index.d.mts",
|
|
916
916
|
"default": "./constants/index.mjs"
|
|
917
917
|
}
|
|
918
918
|
},
|
|
919
919
|
"./context": {
|
|
920
|
-
"require": {
|
|
921
|
-
"types": "./context/index.d.ts",
|
|
922
|
-
"default": "./context/index.js"
|
|
923
|
-
},
|
|
924
920
|
"import": {
|
|
925
921
|
"types": "./context/index.d.mts",
|
|
926
922
|
"default": "./context/index.mjs"
|
|
927
923
|
},
|
|
924
|
+
"require": {
|
|
925
|
+
"types": "./context/index.d.ts",
|
|
926
|
+
"default": "./context/index.js"
|
|
927
|
+
},
|
|
928
928
|
"default": {
|
|
929
929
|
"types": "./context/index.d.mts",
|
|
930
930
|
"default": "./context/index.mjs"
|
|
931
931
|
}
|
|
932
932
|
},
|
|
933
933
|
"./hooks": {
|
|
934
|
-
"require": {
|
|
935
|
-
"types": "./hooks/index.d.ts",
|
|
936
|
-
"default": "./hooks/index.js"
|
|
937
|
-
},
|
|
938
934
|
"import": {
|
|
939
935
|
"types": "./hooks/index.d.mts",
|
|
940
936
|
"default": "./hooks/index.mjs"
|
|
941
937
|
},
|
|
938
|
+
"require": {
|
|
939
|
+
"types": "./hooks/index.d.ts",
|
|
940
|
+
"default": "./hooks/index.js"
|
|
941
|
+
},
|
|
942
942
|
"default": {
|
|
943
943
|
"types": "./hooks/index.d.mts",
|
|
944
944
|
"default": "./hooks/index.mjs"
|
|
945
945
|
}
|
|
946
946
|
},
|
|
947
947
|
"./internals": {
|
|
948
|
-
"require": {
|
|
949
|
-
"types": "./internals/index.d.ts",
|
|
950
|
-
"default": "./internals/index.js"
|
|
951
|
-
},
|
|
952
948
|
"import": {
|
|
953
949
|
"types": "./internals/index.d.mts",
|
|
954
950
|
"default": "./internals/index.mjs"
|
|
955
951
|
},
|
|
952
|
+
"require": {
|
|
953
|
+
"types": "./internals/index.d.ts",
|
|
954
|
+
"default": "./internals/index.js"
|
|
955
|
+
},
|
|
956
956
|
"default": {
|
|
957
957
|
"types": "./internals/index.d.mts",
|
|
958
958
|
"default": "./internals/index.mjs"
|
|
959
959
|
}
|
|
960
960
|
},
|
|
961
961
|
"./locales": {
|
|
962
|
-
"require": {
|
|
963
|
-
"types": "./locales/index.d.ts",
|
|
964
|
-
"default": "./locales/index.js"
|
|
965
|
-
},
|
|
966
962
|
"import": {
|
|
967
963
|
"types": "./locales/index.d.mts",
|
|
968
964
|
"default": "./locales/index.mjs"
|
|
969
965
|
},
|
|
966
|
+
"require": {
|
|
967
|
+
"types": "./locales/index.d.ts",
|
|
968
|
+
"default": "./locales/index.js"
|
|
969
|
+
},
|
|
970
970
|
"default": {
|
|
971
971
|
"types": "./locales/index.d.mts",
|
|
972
972
|
"default": "./locales/index.mjs"
|
|
973
973
|
}
|
|
974
974
|
},
|
|
975
975
|
"./models": {
|
|
976
|
-
"require": {
|
|
977
|
-
"types": "./models/index.d.ts",
|
|
978
|
-
"default": "./models/index.js"
|
|
979
|
-
},
|
|
980
976
|
"import": {
|
|
981
977
|
"types": "./models/index.d.mts",
|
|
982
978
|
"default": "./models/index.mjs"
|
|
983
979
|
},
|
|
980
|
+
"require": {
|
|
981
|
+
"types": "./models/index.d.ts",
|
|
982
|
+
"default": "./models/index.js"
|
|
983
|
+
},
|
|
984
984
|
"default": {
|
|
985
985
|
"types": "./models/index.d.mts",
|
|
986
986
|
"default": "./models/index.mjs"
|
|
987
987
|
}
|
|
988
988
|
},
|
|
989
989
|
"./plugins": {
|
|
990
|
-
"require": {
|
|
991
|
-
"types": "./plugins/index.d.ts",
|
|
992
|
-
"default": "./plugins/index.js"
|
|
993
|
-
},
|
|
994
990
|
"import": {
|
|
995
991
|
"types": "./plugins/index.d.mts",
|
|
996
992
|
"default": "./plugins/index.mjs"
|
|
997
993
|
},
|
|
994
|
+
"require": {
|
|
995
|
+
"types": "./plugins/index.d.ts",
|
|
996
|
+
"default": "./plugins/index.js"
|
|
997
|
+
},
|
|
998
998
|
"default": {
|
|
999
999
|
"types": "./plugins/index.d.mts",
|
|
1000
1000
|
"default": "./plugins/index.mjs"
|
|
1001
1001
|
}
|
|
1002
1002
|
},
|
|
1003
1003
|
"./typeOverloads": {
|
|
1004
|
-
"require": {
|
|
1005
|
-
"types": "./typeOverloads/index.d.ts",
|
|
1006
|
-
"default": "./typeOverloads/index.js"
|
|
1007
|
-
},
|
|
1008
1004
|
"import": {
|
|
1009
1005
|
"types": "./typeOverloads/index.d.mts",
|
|
1010
1006
|
"default": "./typeOverloads/index.mjs"
|
|
1011
1007
|
},
|
|
1008
|
+
"require": {
|
|
1009
|
+
"types": "./typeOverloads/index.d.ts",
|
|
1010
|
+
"default": "./typeOverloads/index.js"
|
|
1011
|
+
},
|
|
1012
1012
|
"default": {
|
|
1013
1013
|
"types": "./typeOverloads/index.d.mts",
|
|
1014
1014
|
"default": "./typeOverloads/index.mjs"
|
|
1015
1015
|
}
|
|
1016
1016
|
},
|
|
1017
1017
|
"./utils": {
|
|
1018
|
-
"require": {
|
|
1019
|
-
"types": "./utils/index.d.ts",
|
|
1020
|
-
"default": "./utils/index.js"
|
|
1021
|
-
},
|
|
1022
1018
|
"import": {
|
|
1023
1019
|
"types": "./utils/index.d.mts",
|
|
1024
1020
|
"default": "./utils/index.mjs"
|
|
1025
1021
|
},
|
|
1022
|
+
"require": {
|
|
1023
|
+
"types": "./utils/index.d.ts",
|
|
1024
|
+
"default": "./utils/index.js"
|
|
1025
|
+
},
|
|
1026
1026
|
"default": {
|
|
1027
1027
|
"types": "./utils/index.d.mts",
|
|
1028
1028
|
"default": "./utils/index.mjs"
|
|
1029
1029
|
}
|
|
1030
1030
|
},
|
|
1031
1031
|
"./moduleAugmentation/rangeBarOnClick": {
|
|
1032
|
-
"require": {
|
|
1033
|
-
"types": "./moduleAugmentation/rangeBarOnClick.d.ts",
|
|
1034
|
-
"default": "./moduleAugmentation/rangeBarOnClick.js"
|
|
1035
|
-
},
|
|
1036
1032
|
"import": {
|
|
1037
1033
|
"types": "./moduleAugmentation/rangeBarOnClick.d.mts",
|
|
1038
1034
|
"default": "./moduleAugmentation/rangeBarOnClick.mjs"
|
|
1039
1035
|
},
|
|
1036
|
+
"require": {
|
|
1037
|
+
"types": "./moduleAugmentation/rangeBarOnClick.d.ts",
|
|
1038
|
+
"default": "./moduleAugmentation/rangeBarOnClick.js"
|
|
1039
|
+
},
|
|
1040
1040
|
"default": {
|
|
1041
1041
|
"types": "./moduleAugmentation/rangeBarOnClick.d.mts",
|
|
1042
1042
|
"default": "./moduleAugmentation/rangeBarOnClick.mjs"
|