Skip to content

Commit

Permalink
Moved ResizeChecker to kibana_utils.
Browse files Browse the repository at this point in the history
  • Loading branch information
sainthkh committed Nov 15, 2019
1 parent 3131dd4 commit 72b9511
Show file tree
Hide file tree
Showing 9 changed files with 206 additions and 226 deletions.
3 changes: 2 additions & 1 deletion src/legacy/core_plugins/console/np_ready/public/legacy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,10 @@ import 'brace/mode/text';
/* eslint-disable @kbn/eslint/no-restricted-paths */
import { npSetup, npStart } from 'ui/new_platform';
import { I18nContext } from 'ui/i18n';
import { ResizeChecker } from 'ui/resize_checker';
/* eslint-enable @kbn/eslint/no-restricted-paths */

import { ResizeChecker } from '../../../../../plugins/kibana_utils/public';

export interface XPluginSet {
devTools: DevToolsSetup;
feature_catalogue: FeatureCatalogueSetup;
Expand Down
208 changes: 0 additions & 208 deletions src/legacy/ui/public/resize_checker/__tests__/resize_checker.js

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ import * as Rx from 'rxjs';
import { debounceTime, filter, share, switchMap } from 'rxjs/operators';

import { PersistedState } from '../../persisted_state';
import { ResizeChecker } from '../../resize_checker';
import { ResizeChecker } from '../../../../../plugins/kibana_utils/public';
import { Vis, VisualizationController } from '../../vis';
import { getUpdateStatus } from '../../vis/update_status';

Expand Down
1 change: 1 addition & 0 deletions src/plugins/kibana_utils/public/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ export * from './core';
export * from './errors';
export * from './store';
export * from './parse';
export * from './resize_checker';
export * from './render_complete';
export * from './store';
export * from './errors';
Expand Down
Loading

0 comments on commit 72b9511

Please sign in to comment.