@ansible/ansible-ui-framework 2.4.2601 → 2.4.2603
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/PageActions/PageActionDropdown.d.ts +1 -0
- package/PageActions/PageActions.d.ts +1 -0
- package/index.js +449 -434
- package/index.umd.cjs +16 -16
- package/package.json +1 -1
- package/publish/index.d.ts +3 -3
@@ -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[];
|