@ansible/ansible-ui-framework 2.4.2078 → 2.4.2080
Sign up to get free protection for your applications and to get access to all the features.
- package/PageActions/PageActionDropdown.d.ts +2 -3
- package/index.js +14235 -14227
- package/index.umd.cjs +164 -164
- package/package.json +1 -1
- package/publish/index.d.ts +112 -112
@@ -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?:
|
11
|
+
position?: DropdownPopperProps['position'];
|
13
12
|
selectedItem?: T;
|
14
13
|
selectedItems?: T[];
|
15
14
|
tooltip?: string;
|