File tree Expand file tree Collapse file tree 4 files changed +8
-7
lines changed
x-data-grid/src/hooks/utils Expand file tree Collapse file tree 4 files changed +8
-7
lines changed Original file line number Diff line number Diff line change @@ -443,13 +443,6 @@ export default defineConfig(
443443 'react-hooks/static-components' : 'off' ,
444444 } ,
445445 } ) ) ,
446- ...[ 'x-charts-pro' , 'x-charts-premium' , 'x-data-grid' ] . map ( ( pkgName ) => ( {
447- files : [ `packages/${ pkgName } /src/**/*${ EXTENSION_TS } ` ] ,
448- ignores : [ '**/*.d.ts' ] ,
449- rules : {
450- 'import/export' : 'off' ,
451- } ,
452- } ) ) ,
453446 {
454447 files : [
455448 `test/utils/**/*${ EXTENSION_TS } ` ,
Original file line number Diff line number Diff line change @@ -40,10 +40,15 @@ export * from '@mui/x-charts-pro/ChartZoomSlider';
4040export * from '@mui/x-charts-pro/ChartsToolbarPro' ;
4141
4242// Premium utilities
43+ // eslint-disable-next-line import/export
4344export * from './colorPalettes' ;
45+ // eslint-disable-next-line import/export
4446export * from './constants' ;
47+ // eslint-disable-next-line import/export
4548export * from './hooks' ;
49+ // eslint-disable-next-line import/export
4650export * from './context' ;
51+ // eslint-disable-next-line import/export
4752export * from './models' ;
4853// Locales should be imported from `@mui/x-charts-premium/locales`
4954// export * from './locales';
Original file line number Diff line number Diff line change @@ -26,13 +26,15 @@ export * from '@mui/x-charts/ChartsOverlay';
2626export * from '@mui/x-charts/ChartsWrapper' ;
2727
2828// Pro utilities
29+ // eslint-disable-next-line import/export
2930export * from './constants' ;
3031export * from './hooks' ;
3132export * from './context' ;
3233export * from './models' ;
3334export * from './plugins' ;
3435// Locales should be imported from `@mui/x-charts-pro/locales`
3536// export * from './locales';
37+ // eslint-disable-next-line import/export
3638export * from './colorPalettes' ;
3739
3840// Pro components
Original file line number Diff line number Diff line change @@ -4,6 +4,7 @@ export * from './useGridApiMethod';
44export * from './useGridLogger' ;
55export { useGridSelector } from './useGridSelector' ;
66export * from './useGridNativeEventListener' ;
7+ // eslint-disable-next-line import/export
78export * from './useFirstRender' ;
89export * from './useOnMount' ;
910export * from './useRunOncePerLoop' ;
You can’t perform that action at this time.
0 commit comments