fix all violations

This commit is contained in:
spalger 2022-04-16 01:29:35 -05:00
parent bd8171c13e
commit 3730dd0779
11447 changed files with 21110 additions and 22288 deletions

View file

@ -8,9 +8,9 @@
import React from 'react';
import { EuiText, EuiModalBody, EuiButton } from '@elastic/eui';
import { OverlayStart } from '../../../src/core/public';
import { createAction } from '../../../src/plugins/ui_actions/public';
import { toMountPoint } from '../../../src/plugins/kibana_react/public';
import { OverlayStart } from '@kbn/core/public';
import { createAction } from '@kbn/ui-actions-plugin/public';
import { toMountPoint } from '@kbn/kibana-react-plugin/public';
export const ACTION_HELLO_WORLD = 'ACTION_HELLO_WORLD';

View file

@ -6,7 +6,7 @@
* Side Public License, v 1.
*/
import { Trigger } from '../../../src/plugins/ui_actions/public';
import { Trigger } from '@kbn/ui-actions-plugin/public';
export const HELLO_WORLD_TRIGGER_ID = 'HELLO_WORLD_TRIGGER_ID';

View file

@ -6,8 +6,8 @@
* Side Public License, v 1.
*/
import { Plugin, CoreSetup, CoreStart } from '../../../src/core/public';
import { UiActionsSetup, UiActionsStart } from '../../../src/plugins/ui_actions/public';
import { Plugin, CoreSetup, CoreStart } from '@kbn/core/public';
import { UiActionsSetup, UiActionsStart } from '@kbn/ui-actions-plugin/public';
import { createHelloWorldAction } from './hello_world_action';
import { helloWorldTrigger } from './hello_world_trigger';