@ansible/ansible-ui-framework 2.4.2614 → 2.4.2615
Sign up to get free protection for your applications and to get access to all the features.
package/PageForm/Inputs/{FormGroupTypeAheadMultiSelect.d.ts → FormGroupTypeAheadSelect.d.ts}
RENAMED
@@ -1,6 +1,6 @@
|
|
1
1
|
import { SelectOptionObject } from '@patternfly/react-core/deprecated';
|
2
2
|
import { ChangeEvent, MouseEvent, ReactNode } from 'react';
|
3
|
-
export type
|
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
|
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;
|