@ansible/ansible-ui-framework 2.4.2079 → 2.4.2080

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,5 +1,4 @@
1
- import { ButtonVariant } from '@patternfly/react-core';
2
- import { DropdownPosition } from '@patternfly/react-core/deprecated';
1
+ import { ButtonVariant, DropdownPopperProps } from '@patternfly/react-core';
3
2
  import { ComponentClass, FunctionComponent } from 'react';
4
3
  import { IPageAction } from './PageAction';
5
4
  interface PageActionDropdownProps<T extends object> {
@@ -9,7 +8,7 @@ interface PageActionDropdownProps<T extends object> {
9
8
  isDisabled?: string | undefined;
10
9
  label?: string;
11
10
  onOpen?: (label: string, open: boolean) => void;
12
- position?: DropdownPosition;
11
+ position?: DropdownPopperProps['position'];
13
12
  selectedItem?: T;
14
13
  selectedItems?: T[];
15
14
  tooltip?: string;