@ansible/ansible-ui-framework 0.0.643 → 0.0.645
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/framework/PageActions/PageDropdownAction.d.ts +1 -1
- package/framework/PageActions/PagePinnedActions.d.ts +2 -0
- package/index.js +427 -415
- package/index.umd.cjs +3 -3
- package/package.json +1 -1
- package/style.css +1 -1
@@ -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;
|