@ansible/ansible-ui-framework 2.4.2601 → 2.4.2603

Sign up to get free protection for your applications and to get access to all the features.
@@ -13,6 +13,7 @@ interface PageActionDropdownProps<T extends object> {
13
13
  selectedItems?: T[];
14
14
  tooltip?: string;
15
15
  variant?: ButtonVariant;
16
+ ariaLabel?: string;
16
17
  }
17
18
  export declare function PageActionDropdown<T extends object>(props: PageActionDropdownProps<T>): import("react/jsx-runtime").JSX.Element;
18
19
  export declare function filterActionSeperators<T extends object>(actions: IPageAction<T>[]): IPageAction<T>[];
@@ -3,6 +3,7 @@ import { ComponentClass, FunctionComponent } from 'react';
3
3
  import { WindowSize } from '../components/useBreakPoint';
4
4
  import { IPageAction } from './PageAction';
5
5
  interface PageActionProps<T extends object> {
6
+ dropDownAriaLabel?: string;
6
7
  actions: IPageAction<T>[];
7
8
  selectedItem?: T;
8
9
  selectedItems?: T[];