mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[kibana_utils] remove root index.ts file (#137003)
* [kibana_utils] remove root-level index.ts file * autofix all imports
This commit is contained in:
parent
d3ef7419e8
commit
676be86d9d
5 changed files with 8 additions and 13 deletions
|
@ -108,6 +108,11 @@ module.exports = {
|
|||
to: '@kbn/utility-types-jest',
|
||||
disallowedMessage: `import from @kbn/utility-types-jest instead`
|
||||
},
|
||||
{
|
||||
from: '@kbn/kibana-utils-plugin',
|
||||
to: '@kbn/kibana-utils-plugin/common',
|
||||
exact: true,
|
||||
},
|
||||
],
|
||||
],
|
||||
|
||||
|
|
|
@ -1,10 +0,0 @@
|
|||
/*
|
||||
* 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 type { StateContainer } from './common';
|
||||
export { createStateContainer, of } from './common';
|
|
@ -6,7 +6,7 @@
|
|||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import { of } from '@kbn/kibana-utils-plugin';
|
||||
import { of } from '@kbn/kibana-utils-plugin/common';
|
||||
import {
|
||||
KibanaLocation,
|
||||
Locator,
|
||||
|
|
|
@ -10,7 +10,7 @@ import { DynamicActionManager } from './dynamic_action_manager';
|
|||
import { ActionStorage, MemoryActionStorage } from './dynamic_action_storage';
|
||||
import { UiActionsService } from '@kbn/ui-actions-plugin/public';
|
||||
import { ActionRegistry } from '@kbn/ui-actions-plugin/public/types';
|
||||
import { of } from '@kbn/kibana-utils-plugin';
|
||||
import { of } from '@kbn/kibana-utils-plugin/common';
|
||||
import { UiActionsServiceEnhancements } from '../services';
|
||||
import { ActionFactoryDefinition } from './action_factory_definition';
|
||||
import { SerializedAction, SerializedEvent } from './types';
|
||||
|
|
|
@ -15,7 +15,7 @@ import {
|
|||
CONTEXT_MENU_TRIGGER,
|
||||
} from '@kbn/embeddable-plugin/public';
|
||||
import { DatatableColumnType } from '@kbn/expressions-plugin/common';
|
||||
import { of } from '@kbn/kibana-utils-plugin';
|
||||
import { of } from '@kbn/kibana-utils-plugin/common';
|
||||
import { createPoint, rowClickData, TestEmbeddable } from './test/data';
|
||||
import { ROW_CLICK_TRIGGER } from '@kbn/ui-actions-plugin/public';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue