mirror of
https://github.com/elastic/kibana.git
synced 2025-06-27 18:51:07 -04:00
fix all violations
This commit is contained in:
parent
bd8171c13e
commit
3730dd0779
11447 changed files with 21110 additions and 22288 deletions
|
@ -12,21 +12,21 @@ import { BrowserRouter as Router, Route, withRouter, RouteComponentProps } from
|
|||
|
||||
import { EuiPage, EuiPageSideBar, EuiSideNav } from '@elastic/eui';
|
||||
|
||||
import { EmbeddableStart } from '../../../src/plugins/embeddable/public';
|
||||
import { UiActionsStart } from '../../../src/plugins/ui_actions/public';
|
||||
import { Start as InspectorStartContract } from '../../../src/plugins/inspector/public';
|
||||
import { EmbeddableStart } from '@kbn/embeddable-plugin/public';
|
||||
import { UiActionsStart } from '@kbn/ui-actions-plugin/public';
|
||||
import { Start as InspectorStartContract } from '@kbn/inspector-plugin/public';
|
||||
import {
|
||||
AppMountParameters,
|
||||
CoreStart,
|
||||
SavedObjectsStart,
|
||||
IUiSettingsClient,
|
||||
OverlayStart,
|
||||
} from '../../../src/core/public';
|
||||
} from '@kbn/core/public';
|
||||
import { EmbeddableExamplesStart } from '@kbn/embeddable-examples-plugin/public/plugin';
|
||||
import { HelloWorldEmbeddableExample } from './hello_world_embeddable_example';
|
||||
import { TodoEmbeddableExample } from './todo_embeddable_example';
|
||||
import { ListContainerExample } from './list_container_example';
|
||||
import { EmbeddablePanelExample } from './embeddable_panel_example';
|
||||
import { EmbeddableExamplesStart } from '../../embeddable_examples/public/plugin';
|
||||
|
||||
interface PageDef {
|
||||
title: string;
|
||||
|
|
|
@ -18,14 +18,14 @@ import {
|
|||
EuiText,
|
||||
} from '@elastic/eui';
|
||||
import { EuiSpacer } from '@elastic/eui';
|
||||
import { EmbeddableStart, IEmbeddable } from '../../../src/plugins/embeddable/public';
|
||||
import { EmbeddableStart, IEmbeddable } from '@kbn/embeddable-plugin/public';
|
||||
import {
|
||||
HELLO_WORLD_EMBEDDABLE,
|
||||
TODO_EMBEDDABLE,
|
||||
BOOK_EMBEDDABLE,
|
||||
MULTI_TASK_TODO_EMBEDDABLE,
|
||||
SearchableListContainerFactory,
|
||||
} from '../../embeddable_examples/public';
|
||||
} from '@kbn/embeddable-examples-plugin/public';
|
||||
|
||||
interface Props {
|
||||
embeddableServices: EmbeddableStart;
|
||||
|
|
|
@ -17,11 +17,11 @@ import {
|
|||
EuiText,
|
||||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
import { EmbeddableRenderer } from '../../../src/plugins/embeddable/public';
|
||||
import { EmbeddableRenderer } from '@kbn/embeddable-plugin/public';
|
||||
import {
|
||||
HelloWorldEmbeddable,
|
||||
HelloWorldEmbeddableFactory,
|
||||
} from '../../embeddable_examples/public';
|
||||
} from '@kbn/embeddable-examples-plugin/public';
|
||||
|
||||
interface Props {
|
||||
helloWorldEmbeddableFactory: HelloWorldEmbeddableFactory;
|
||||
|
|
|
@ -18,17 +18,17 @@ import {
|
|||
EuiText,
|
||||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
import { EmbeddableRenderer, ViewMode } from '../../../src/plugins/embeddable/public';
|
||||
import { EmbeddableRenderer, ViewMode } from '@kbn/embeddable-plugin/public';
|
||||
import {
|
||||
HELLO_WORLD_EMBEDDABLE,
|
||||
MULTI_TASK_TODO_EMBEDDABLE,
|
||||
TODO_EMBEDDABLE,
|
||||
ListContainerFactory,
|
||||
SearchableListContainerFactory,
|
||||
} from '../../embeddable_examples/public';
|
||||
import { SearchableContainerInput } from '../../embeddable_examples/public/searchable_list_container/searchable_list_container';
|
||||
import { TodoInput } from '../../embeddable_examples/public/todo';
|
||||
import { MultiTaskTodoInput } from '../../embeddable_examples/public/multi_task_todo';
|
||||
} from '@kbn/embeddable-examples-plugin/public';
|
||||
import { SearchableContainerInput } from '@kbn/embeddable-examples-plugin/public/searchable_list_container/searchable_list_container';
|
||||
import { TodoInput } from '@kbn/embeddable-examples-plugin/public/todo';
|
||||
import { MultiTaskTodoInput } from '@kbn/embeddable-examples-plugin/public/multi_task_todo';
|
||||
|
||||
interface Props {
|
||||
listContainerEmbeddableFactory: ListContainerFactory;
|
||||
|
|
|
@ -6,12 +6,12 @@
|
|||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import { EmbeddableExamplesStart } from 'examples/embeddable_examples/public/plugin';
|
||||
import { Plugin, CoreSetup, AppMountParameters, AppNavLinkStatus } from '../../../src/core/public';
|
||||
import { UiActionsService } from '../../../src/plugins/ui_actions/public';
|
||||
import { EmbeddableStart } from '../../../src/plugins/embeddable/public';
|
||||
import { Start as InspectorStart } from '../../../src/plugins/inspector/public';
|
||||
import { DeveloperExamplesSetup } from '../../developer_examples/public';
|
||||
import { EmbeddableExamplesStart } from '@kbn/embeddable-examples-plugin/public/plugin';
|
||||
import { Plugin, CoreSetup, AppMountParameters, AppNavLinkStatus } from '@kbn/core/public';
|
||||
import { UiActionsService } from '@kbn/ui-actions-plugin/public';
|
||||
import { EmbeddableStart } from '@kbn/embeddable-plugin/public';
|
||||
import { Start as InspectorStart } from '@kbn/inspector-plugin/public';
|
||||
import { DeveloperExamplesSetup } from '@kbn/developer-examples-plugin/public';
|
||||
import img from './embeddables.png';
|
||||
|
||||
interface StartDeps {
|
||||
|
|
|
@ -23,9 +23,9 @@ import {
|
|||
EuiTextArea,
|
||||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
import { TodoInput } from '../../../examples/embeddable_examples/public/todo';
|
||||
import { TodoEmbeddableFactory } from '../../../examples/embeddable_examples/public';
|
||||
import { EmbeddableRenderer } from '../../../src/plugins/embeddable/public';
|
||||
import { TodoInput } from '@kbn/embeddable-examples-plugin/public/todo';
|
||||
import { TodoEmbeddableFactory } from '@kbn/embeddable-examples-plugin/public';
|
||||
import { EmbeddableRenderer } from '@kbn/embeddable-plugin/public';
|
||||
|
||||
interface Props {
|
||||
todoEmbeddableFactory: TodoEmbeddableFactory;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue