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
|
@ -22,7 +22,7 @@ import {
|
|||
EuiText,
|
||||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
import type { Datatable } from 'src/plugins/expressions';
|
||||
import type { Datatable } from '@kbn/expressions-plugin';
|
||||
import { ExpressionsContext } from './expressions_context';
|
||||
|
||||
const expression = `getEvents
|
||||
|
|
|
@ -7,6 +7,6 @@
|
|||
*/
|
||||
|
||||
import { createContext } from 'react';
|
||||
import type { ExpressionsServiceStart } from 'src/plugins/expressions';
|
||||
import type { ExpressionsServiceStart } from '@kbn/expressions-plugin';
|
||||
|
||||
export const ExpressionsContext = createContext<ExpressionsServiceStart | undefined>(undefined);
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
import { Observable, fromEvent } from 'rxjs';
|
||||
import { scan, startWith } from 'rxjs/operators';
|
||||
import type { ExpressionFunctionDefinition } from 'src/plugins/expressions';
|
||||
import type { ExpressionFunctionDefinition } from '@kbn/expressions-plugin';
|
||||
|
||||
export interface CountEventArguments {
|
||||
event: string;
|
||||
|
|
|
@ -8,7 +8,7 @@
|
|||
|
||||
import { Observable, fromEvent, merge } from 'rxjs';
|
||||
import { distinct, map, pluck, scan, take } from 'rxjs/operators';
|
||||
import type { Datatable, ExpressionFunctionDefinition } from 'src/plugins/expressions';
|
||||
import type { Datatable, ExpressionFunctionDefinition } from '@kbn/expressions-plugin';
|
||||
|
||||
const EVENTS: Array<keyof WindowEventMap> = [
|
||||
'mousedown',
|
||||
|
|
|
@ -6,7 +6,7 @@
|
|||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import type { Datatable, ExpressionFunctionDefinition } from 'src/plugins/expressions';
|
||||
import type { Datatable, ExpressionFunctionDefinition } from '@kbn/expressions-plugin';
|
||||
|
||||
export interface PluckArguments {
|
||||
key: string;
|
||||
|
|
|
@ -7,10 +7,10 @@
|
|||
*/
|
||||
import React from 'react';
|
||||
import ReactDOM from 'react-dom';
|
||||
import type { ExpressionsServiceSetup } from 'src/plugins/expressions';
|
||||
import { ExpressionsServiceFork } from 'src/plugins/expressions/common/service/expressions_fork';
|
||||
import { AppMountParameters, AppNavLinkStatus, CoreSetup, Plugin } from '../../../src/core/public';
|
||||
import type { DeveloperExamplesSetup } from '../../developer_examples/public';
|
||||
import type { ExpressionsServiceSetup } from '@kbn/expressions-plugin';
|
||||
import { ExpressionsServiceFork } from '@kbn/expressions-plugin/common/service/expressions_fork';
|
||||
import { AppMountParameters, AppNavLinkStatus, CoreSetup, Plugin } from '@kbn/core/public';
|
||||
import type { DeveloperExamplesSetup } from '@kbn/developer-examples-plugin/public';
|
||||
import { App, ExpressionsContext } from './app';
|
||||
import { countEvent, getEvents, pluck } from './functions';
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue