@mui/x-charts 9.7.0 → 9.8.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/CHANGELOG.md +130 -1
- package/ChartsTooltip/ChartsTooltipContainer.js +14 -3
- package/ChartsTooltip/ChartsTooltipContainer.mjs +15 -4
- package/ChartsXAxis/ChartsGroupedXAxisTicks.js +3 -13
- package/ChartsXAxis/ChartsGroupedXAxisTicks.mjs +2 -12
- package/ChartsYAxis/ChartsGroupedYAxisTicks.js +4 -16
- package/ChartsYAxis/ChartsGroupedYAxisTicks.mjs +3 -13
- package/hooks/index.d.mts +2 -1
- package/hooks/index.d.ts +2 -1
- package/hooks/index.js +10 -2
- package/hooks/index.mjs +2 -1
- package/hooks/usePolarGeometry.d.mts +51 -0
- package/hooks/usePolarGeometry.d.ts +51 -0
- package/hooks/usePolarGeometry.js +47 -0
- package/hooks/usePolarGeometry.mjs +41 -0
- package/index.js +1 -1
- package/index.mjs +1 -1
- package/internals/animation/animation.d.mts +1 -1
- package/internals/animation/animation.d.ts +1 -1
- package/internals/commonNextFocusItem.d.mts +15 -5
- package/internals/commonNextFocusItem.d.ts +15 -5
- package/internals/commonNextFocusItem.js +6 -0
- package/internals/commonNextFocusItem.mjs +7 -0
- package/internals/createCommonKeyboardFocusHandler.d.mts +5 -1
- package/internals/createCommonKeyboardFocusHandler.d.ts +5 -1
- package/internals/getGroupingConfig.d.mts +6 -0
- package/internals/getGroupingConfig.d.ts +6 -0
- package/internals/getGroupingConfig.js +20 -0
- package/internals/getGroupingConfig.mjs +12 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.mts +1 -0
- package/internals/plugins/corePlugins/useChartSeries/useChartSeries.selectors.d.ts +1 -0
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.mts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/colorProcessor.types.d.ts +1 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.d.mts +7 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/seriesConfig.types.d.ts +7 -1
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.d.mts +18 -7
- package/internals/plugins/corePlugins/useChartSeriesConfig/types/tooltipItemPositionGetter.types.d.ts +18 -7
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartHighlight/createIsFaded.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartHighlight/createIsHighlighted.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.mts +1 -1
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.d.ts +1 -1
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.js +3 -7
- package/internals/plugins/featurePlugins/useChartTooltip/useChartTooltip.selectors.mjs +3 -7
- package/internals/plugins/featurePlugins/useGeoProjection/useGeoProjection.selectors.d.mts +1 -2
- package/internals/plugins/featurePlugins/useGeoProjection/useGeoProjection.selectors.d.ts +1 -2
- package/internals/plugins/featurePlugins/useGeoProjection/useGeoProjection.types.d.mts +9 -0
- package/internals/plugins/featurePlugins/useGeoProjection/useGeoProjection.types.d.ts +9 -0
- package/internals/shallowEqual.d.mts +1 -1
- package/internals/shallowEqual.d.ts +1 -1
- package/internals/shallowEqual.js +1 -1
- package/internals/shallowEqual.mjs +1 -1
- package/package.json +4 -4
|
@@ -3,6 +3,6 @@
|
|
|
3
3
|
* when any key has values which are not strictly equal between the arguments.
|
|
4
4
|
* Returns true when the values of all keys are strictly equal.
|
|
5
5
|
*
|
|
6
|
-
* Source: https://github.com/
|
|
6
|
+
* Source: https://github.com/react/react/blob/c2a196174763e0b4f16ed1c512ed4442b062395e/packages/shared/shallowEqual.js#L18
|
|
7
7
|
*/
|
|
8
8
|
export declare function shallowEqual(objA: unknown, objB: unknown): boolean;
|
|
@@ -9,7 +9,7 @@ exports.shallowEqual = shallowEqual;
|
|
|
9
9
|
* when any key has values which are not strictly equal between the arguments.
|
|
10
10
|
* Returns true when the values of all keys are strictly equal.
|
|
11
11
|
*
|
|
12
|
-
* Source: https://github.com/
|
|
12
|
+
* Source: https://github.com/react/react/blob/c2a196174763e0b4f16ed1c512ed4442b062395e/packages/shared/shallowEqual.js#L18
|
|
13
13
|
*/
|
|
14
14
|
function shallowEqual(objA, objB) {
|
|
15
15
|
if (Object.is(objA, objB)) {
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
* when any key has values which are not strictly equal between the arguments.
|
|
4
4
|
* Returns true when the values of all keys are strictly equal.
|
|
5
5
|
*
|
|
6
|
-
* Source: https://github.com/
|
|
6
|
+
* Source: https://github.com/react/react/blob/c2a196174763e0b4f16ed1c512ed4442b062395e/packages/shared/shallowEqual.js#L18
|
|
7
7
|
*/
|
|
8
8
|
export function shallowEqual(objA, objB) {
|
|
9
9
|
if (Object.is(objA, objB)) {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mui/x-charts",
|
|
3
|
-
"version": "9.
|
|
3
|
+
"version": "9.8.0",
|
|
4
4
|
"author": "MUI Team",
|
|
5
5
|
"description": "The community edition of MUI X Charts components.",
|
|
6
6
|
"license": "MIT",
|
|
@@ -29,14 +29,14 @@
|
|
|
29
29
|
"dependencies": {
|
|
30
30
|
"@babel/runtime": "^7.29.7",
|
|
31
31
|
"@mui/utils": "^9.1.1",
|
|
32
|
-
"bezier-easing": "^3.0.
|
|
32
|
+
"bezier-easing": "^3.0.1",
|
|
33
33
|
"clsx": "^2.1.1",
|
|
34
34
|
"prop-types": "^15.8.1",
|
|
35
35
|
"reselect": "^5.2.0",
|
|
36
36
|
"use-sync-external-store": "^1.6.0",
|
|
37
37
|
"@mui/x-charts-vendor": "^9.4.0",
|
|
38
|
-
"@mui/x-internal-gestures": "^9.
|
|
39
|
-
"@mui/x-internals": "^9.
|
|
38
|
+
"@mui/x-internal-gestures": "^9.8.0",
|
|
39
|
+
"@mui/x-internals": "^9.8.0"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
42
|
"@emotion/react": "^11.9.0",
|