Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
angorayc committed Aug 12, 2021
1 parent 7cc8287 commit a0fd4da
Show file tree
Hide file tree
Showing 10 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import React, { useState } from 'react';
import { EuiMarkdownEditorUiPlugin, EuiMarkdownAstNodePosition } from '@elastic/eui';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';
import { Plugin } from 'unified';
/**
* @description - manage the plugins, hooks, and ui components needed to enable timeline functionality within the cases plugin
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

import React, { useCallback, useRef, useState } from 'react';
import { useDispatch } from 'react-redux';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';

import {
getCaseDetailsUrl,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import deepEqual from 'fast-deep-equal';
import styled from 'styled-components';

import { isEmpty } from 'lodash/fp';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';
import { inputsModel, inputsSelectors, State } from '../../store';
import { inputsActions } from '../../store/actions';
import { ControlColumnProps, RowRenderer, TimelineId } from '../../../../common/types/timeline';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
import React, { useState, useCallback, useMemo } from 'react';
import styled from 'styled-components';
import deepEqual from 'fast-deep-equal';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';
import { BrowserFields, DocValueFields } from '../../../../common/containers/source';
import { ExpandableEvent, ExpandableEventTitle } from './expandable_event';
import { EntityType, useTimelineEventsDetails } from '../../../containers/details';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import React, { useCallback, useMemo } from 'react';
import { useDispatch } from 'react-redux';
import { EuiFlyout, EuiFlyoutProps } from '@elastic/eui';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';

import { timelineActions, timelineSelectors } from '../../store/timeline';
import { timelineDefaults } from '../../store/timeline/defaults';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
EuiFlyoutFooter,
EuiBadge,
} from '@elastic/eui';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';
import { isEmpty } from 'lodash/fp';
import React, { useEffect, useCallback } from 'react';
import styled from 'styled-components';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
EuiPanel,
EuiHorizontalRule,
} from '@elastic/eui';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';

import React, { Fragment, useCallback, useMemo, useState } from 'react';
import { useDispatch } from 'react-redux';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*/

import { EuiFlexGroup, EuiFlexItem, EuiFlyoutBody, EuiFlyoutFooter } from '@elastic/eui';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';
import { isEmpty } from 'lodash/fp';
import React, { useMemo, useCallback } from 'react';
import styled from 'styled-components';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ import {
EuiFlyoutFooter,
EuiBadge,
} from '@elastic/eui';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';
import { isEmpty } from 'lodash/fp';
import React, { useState, useMemo, useEffect, useCallback } from 'react';
import styled from 'styled-components';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { isEmpty, noop } from 'lodash/fp';
import { useCallback, useEffect, useRef, useState } from 'react';
import deepEqual from 'fast-deep-equal';
import { Subscription } from 'rxjs';
import type { AlertConsumers } from '@kbn/rule-data-utils/target_node/alerts_as_data_rbac';
import { AlertConsumers } from '@kbn/rule-data-utils';

import { inputsModel } from '../../../common/store';
import { useKibana } from '../../../common/lib/kibana';
Expand Down

0 comments on commit a0fd4da

Please sign in to comment.