@ansible/ansible-ui-framework 2.4.2613 → 2.4.2615

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.
@@ -1,6 +1,6 @@
1
1
  import { SelectOptionObject } from '@patternfly/react-core/deprecated';
2
2
  import { ChangeEvent, MouseEvent, ReactNode } from 'react';
3
- export type FormGroupTypeAheadMultiSelectProps = {
3
+ export type FormGroupTypeAheadSelectProps = {
4
4
  id?: string;
5
5
  label: string;
6
6
  labelHelp?: string | string[] | ReactNode;
@@ -26,5 +26,6 @@ export type FormGroupTypeAheadMultiSelectProps = {
26
26
  }>[];
27
27
  onHandleClear: (chip?: string) => void;
28
28
  isRequired?: boolean;
29
+ isMulti?: boolean;
29
30
  };
30
- export declare function FormGroupTypeAheadMultiSelect(props: FormGroupTypeAheadMultiSelectProps): import("react/jsx-runtime").JSX.Element;
31
+ export declare function FormGroupTypeAheadSelect(props: FormGroupTypeAheadSelectProps): import("react/jsx-runtime").JSX.Element;
@@ -17,5 +17,6 @@ export type PageFormCreatableSelectProps<TFieldValues extends FieldValues = Fiel
17
17
  isReadOnly?: boolean;
18
18
  isRequired?: boolean;
19
19
  validate?: Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues> | Record<string, Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues>>;
20
+ isMulti?: boolean;
20
21
  };
21
22
  export declare function PageFormCreatableSelect<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormCreatableSelectProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
@@ -10,5 +10,6 @@ export interface PageFormGroupProps {
10
10
  children?: ReactNode;
11
11
  helperText?: string;
12
12
  helperTextInvalid?: string | string[] | false;
13
+ fullWidth?: boolean;
13
14
  }
14
15
  export declare function PageFormGroup(props: PageFormGroupProps): import("react/jsx-runtime").JSX.Element;