Corrected imports

Signed-off-by: Andre Wanlin <awanlin@spotify.com>
This commit is contained in:
Andre Wanlin
2024-02-20 06:34:27 -06:00
parent d88966d7b5
commit 121dc7032b
2 changed files with 14 additions and 16 deletions
+2 -4
View File
@@ -12,7 +12,6 @@ import { ComponentEntity } from '@backstage/catalog-model';
import { ComponentProps } from 'react';
import { CompoundEntityRef } from '@backstage/catalog-model';
import { Entity } from '@backstage/catalog-model';
import { EntityOwnerPickerProps as EntityOwnerPickerProps_2 } from '@backstage/plugin-catalog-react';
import { IconButton } from '@material-ui/core';
import { IconComponent } from '@backstage/core-plugin-api';
import { InfoCardVariants } from '@backstage/core-components';
@@ -29,7 +28,6 @@ import { SystemEntity } from '@backstage/catalog-model';
import { TableColumn } from '@backstage/core-components';
import { TableOptions } from '@backstage/core-components';
import { TextFieldProps } from '@material-ui/core';
import { UserListFilterKind as UserListFilterKind_2 } from '@backstage/plugin-catalog-react';
// @public (undocumented)
export type AllowedEntityFilters<T extends DefaultEntityFilters> = {
@@ -182,8 +180,8 @@ export const DefaultFilters: (
// @public
export type DefaultFiltersProps = {
initialKind?: string;
initiallySelectedFilter?: UserListFilterKind_2;
ownerPickerMode?: EntityOwnerPickerProps_2['mode'];
initiallySelectedFilter?: UserListFilterKind;
ownerPickerMode?: EntityOwnerPickerProps['mode'];
};
// @public (undocumented)
@@ -14,19 +14,19 @@
* limitations under the License.
*/
import {
EntityKindPicker,
EntityTypePicker,
UserListPicker,
EntityOwnerPicker,
EntityLifecyclePicker,
EntityTagPicker,
EntityProcessingStatusPicker,
EntityNamespacePicker,
UserListFilterKind,
EntityOwnerPickerProps,
} from '@backstage/plugin-catalog-react';
import React from 'react';
import { UserListFilterKind } from '../../types';
import { EntityKindPicker } from '../EntityKindPicker';
import { EntityLifecyclePicker } from '../EntityLifecyclePicker';
import { EntityNamespacePicker } from '../EntityNamespacePicker';
import {
EntityOwnerPickerProps,
EntityOwnerPicker,
} from '../EntityOwnerPicker';
import { EntityProcessingStatusPicker } from '../EntityProcessingStatusPicker';
import { EntityTagPicker } from '../EntityTagPicker';
import { EntityTypePicker } from '../EntityTypePicker';
import { UserListPicker } from '../UserListPicker';
/**
* Props for default filters.