This is an automated email from the ASF dual-hosted git repository.

diegopucci pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git


The following commit(s) were added to refs/heads/master by this push:
     new 2e5f3ed851 fix(Dev-Server): Edit ChartPropsConfig reexport to be a 
type object (#28225)
2e5f3ed851 is described below

commit 2e5f3ed85149951200645e00e79a543de9bec02f
Author: Ross Mabbett <[email protected]>
AuthorDate: Tue Apr 30 09:09:33 2024 -0400

    fix(Dev-Server): Edit ChartPropsConfig reexport to be a type object (#28225)
---
 superset-frontend/packages/superset-ui-core/src/chart/index.ts | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/superset-frontend/packages/superset-ui-core/src/chart/index.ts 
b/superset-frontend/packages/superset-ui-core/src/chart/index.ts
index bc4b5a20bf..f0245febc0 100644
--- a/superset-frontend/packages/superset-ui-core/src/chart/index.ts
+++ b/superset-frontend/packages/superset-ui-core/src/chart/index.ts
@@ -17,10 +17,13 @@
  * under the License.
  */
 
+import ChartProps, { ChartPropsConfig } from './models/ChartProps';
+
 export { default as ChartClient } from './clients/ChartClient';
 export { default as ChartMetadata } from './models/ChartMetadata';
 export { default as ChartPlugin } from './models/ChartPlugin';
-export { default as ChartProps, ChartPropsConfig } from './models/ChartProps';
+export { ChartProps };
+export type { ChartPropsConfig };
 
 export { default as createLoadableRenderer } from 
'./components/createLoadableRenderer';
 export { default as reactify } from './components/reactify';

Reply via email to