@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.
- package/PageActions/PageActions.d.ts +2 -3
- package/index.js +21262 -21262
- package/index.umd.cjs +112 -112
- package/package.json +1 -1
- package/publish/index.d.ts +45 -45
- package/style.css +1 -1
@@ -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?:
|
11
|
+
position?: DropdownPopperProps['position'];
|
13
12
|
iconOnly?: boolean;
|
14
13
|
onOpen?: (open: boolean) => void;
|
15
14
|
variant?: ButtonVariant;
|