@ansible/ansible-ui-framework 2.4.1351 → 2.4.1352

Sign up to get free protection for your applications and to get access to all the features.
@@ -1,3 +1,4 @@
1
+ import { MenuToggleElement } from '@patternfly/react-core';
1
2
  import { ReactNode } from 'react';
2
3
  import { PageSelectOption } from './PageSelectOption';
3
4
  export interface PageSingleSelectProps<ValueT> {
@@ -16,6 +17,7 @@ export interface PageSingleSelectProps<ValueT> {
16
17
  setSearchValue?: (searchValue: string) => void;
17
18
  isLoading?: boolean;
18
19
  queryLabel?: (value: ValueT) => ReactNode;
20
+ toggle?: (toggleRef: React.Ref<MenuToggleElement>) => ReactNode;
19
21
  disableAutoSelect?: boolean;
20
22
  disableSortOptions?: boolean;
21
23
  }