@ansible/ansible-ui-framework 2.4.2572 → 2.4.2573

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 { WindowSize } from '../components/useBreakPoint';
5
4
  import { IPageAction } from './PageAction';
@@ -9,7 +8,7 @@ interface PageActionProps<T extends object> {
9
8
  selectedItems?: T[];
10
9
  wrapper?: ComponentClass | FunctionComponent;
11
10
  collapse?: WindowSize | 'always' | 'never';
12
- position?: DropdownPosition;
11
+ position?: DropdownPopperProps['position'];
13
12
  iconOnly?: boolean;
14
13
  onOpen?: (open: boolean) => void;
15
14
  variant?: ButtonVariant;