Skip to content

Commit

Permalink
updating impors/exports
Browse files Browse the repository at this point in the history
  • Loading branch information
ppisljar committed Jul 29, 2021
1 parent 15b67ac commit 9fd0671
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/plugins/vis_type_pie/public/pie_fn.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import { i18n } from '@kbn/i18n';
import { ExpressionFunctionDefinition, Datatable, Render } from '../../expressions/common';
import { PieVisParams, PieVisConfig } from './types';
import { prepareLogTable } from '../../visualizations/common';
import { prepareLogTable } from '../../visualizations/public';

export const vislibPieName = 'pie_vis';

Expand Down
10 changes: 10 additions & 0 deletions src/plugins/visualizations/common/expression_functions/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/*
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
* or more contributor license agreements. Licensed under the Elastic License
* 2.0 and the Server Side Public License, v 1; you may not use this file except
* in compliance with, at your election, the Elastic License 2.0 or the Server
* Side Public License, v 1.
*/

export * from './range';
export * from './vis_dimension';
1 change: 1 addition & 0 deletions src/plugins/visualizations/common/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,4 @@
/** @public types */
export * from './types';
export * from './prepare_log_table';
export * from './expression_functions';
2 changes: 1 addition & 1 deletion src/plugins/visualizations/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,5 +41,5 @@ export {
} from './types';
export { VisualizationListItem, VisualizationStage } from './vis_types/vis_type_alias_registry';
export { VISUALIZE_ENABLE_LABS_SETTING } from '../common/constants';
export { SavedVisState, VisParams } from '../common';
export { SavedVisState, VisParams, prepareLogTable } from '../common';
export { ExpressionValueVisDimension } from '../common/expression_functions/vis_dimension';

0 comments on commit 9fd0671

Please sign in to comment.