Skip to content

Commit

Permalink
[charts] Fix type overloads (#16581)
Browse files Browse the repository at this point in the history
  • Loading branch information
JCQuintas authored Feb 14, 2025
1 parent 6e19f24 commit bd81814
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 4 deletions.
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
'use client';
import * as React from 'react';
import PropTypes from 'prop-types';
import type {} from '../typeOverloads';
import { ChartsSurface, ChartsSurfaceProps } from '@mui/x-charts/ChartsSurface';
import { ChartAnyPluginSignature, ChartSeriesType } from '@mui/x-charts/internals';
import { useChartContainerProProps } from './useChartContainerProProps';
Expand Down
2 changes: 2 additions & 0 deletions packages/x-charts-pro/src/ChartContainerPro/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
import '../typeOverloads';

export * from './ChartContainerPro';
2 changes: 2 additions & 0 deletions packages/x-charts-pro/src/ChartDataProviderPro/index.ts
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
import '../typeOverloads';

export * from './ChartDataProviderPro';
2 changes: 0 additions & 2 deletions packages/x-charts-pro/src/Heatmap/index.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
import type {} from '../typeOverloads';

export { Heatmap } from './Heatmap';
export { HeatmapPlot } from './HeatmapPlot';
export * from './HeatmapTooltip';
Expand Down
2 changes: 1 addition & 1 deletion packages/x-charts-pro/src/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import {} from './typeOverloads/modules';
import './typeOverloads/modules';

// exports from MIT package
export * from '@mui/x-charts/constants';
Expand Down

0 comments on commit bd81814

Please sign in to comment.