@ansible/ansible-ui-framework 0.0.644 → 0.0.646

Sign up to get free protection for your applications and to get access to all the features.
@@ -11,7 +11,7 @@ export declare function PageDropdownAction<T extends object>(props: {
11
11
  selectedItem?: T;
12
12
  position?: DropdownPosition;
13
13
  iconOnly?: boolean;
14
- onOpen?: (open: boolean) => void;
14
+ onOpen?: (label: string, open: boolean) => void;
15
15
  variant?: ButtonVariant;
16
16
  }): JSX.Element;
17
17
  export declare function filterActionSeperators<T extends object>(actions: IPageAction<T>[]): IPageAction<T>[];
@@ -6,6 +6,7 @@ export declare function PagePinnedActions<T extends object>(props: {
6
6
  selectedItems?: T[];
7
7
  wrapper?: ComponentClass | FunctionComponent;
8
8
  iconOnly?: boolean;
9
+ onOpen?: (label: string, open: boolean) => void;
9
10
  }): JSX.Element;
10
11
  export declare function PagePinnedAction<T extends object>(props: {
11
12
  action: IPageAction<T>;
@@ -13,4 +14,5 @@ export declare function PagePinnedAction<T extends object>(props: {
13
14
  selectedItems?: T[];
14
15
  wrapper?: ComponentClass | FunctionComponent;
15
16
  iconOnly?: boolean;
17
+ onOpen?: (label: string, open: boolean) => void;
16
18
  }): JSX.Element;