chore: export module that use in main repo (#1425)
This commit is contained in:
parent
f552abaa42
commit
4a8d78304d
|
|
@ -12,6 +12,7 @@ export { default as getChartComponentRegistry } from './registries/ChartComponen
|
|||
export { default as getChartControlPanelRegistry } from './registries/ChartControlPanelRegistrySingleton';
|
||||
export { default as getChartMetadataRegistry } from './registries/ChartMetadataRegistrySingleton';
|
||||
export { default as getChartTransformPropsRegistry } from './registries/ChartTransformPropsRegistrySingleton';
|
||||
export { BuildQuery } from './registries/ChartBuildQueryRegistrySingleton';
|
||||
|
||||
export { default as ChartDataProvider } from './components/ChartDataProvider';
|
||||
|
||||
|
|
|
|||
|
|
@ -6,6 +6,7 @@ export { default as CategoricalScheme } from './CategoricalScheme';
|
|||
export { default as getCategoricalSchemeRegistry } from './CategoricalSchemeRegistrySingleton';
|
||||
export { default as getSequentialSchemeRegistry } from './SequentialSchemeRegistrySingleton';
|
||||
export { default as SequentialScheme } from './SequentialScheme';
|
||||
export { default as ColorSchemeRegistry } from './ColorSchemeRegistry';
|
||||
export * from './colorSchemes';
|
||||
|
||||
export const BRAND_COLOR = '#00A699';
|
||||
|
|
|
|||
|
|
@ -63,13 +63,10 @@ module.exports = {
|
|||
|
||||
// todo: remove hard code after move storybook to superset repo.
|
||||
config.resolve.alias['@emotion/styled'] = path.resolve(
|
||||
rootPath,
|
||||
rootPath,
|
||||
'./node_modules/@emotion/styled',
|
||||
);
|
||||
config.resolve.alias['@emotion/core'] = path.resolve(
|
||||
rootPath,
|
||||
'./node_modules/@emotion/core',
|
||||
);
|
||||
config.resolve.alias['@emotion/core'] = path.resolve(rootPath, './node_modules/@emotion/core');
|
||||
|
||||
config.devtool = 'eval-cheap-module-source-map';
|
||||
config.devServer = {
|
||||
|
|
|
|||
Loading…
Reference in New Issue