@ansible/ansible-ui-framework 2.4.2631 → 2.4.2632
Sign up to get free protection for your applications and to get access to all the features.
@@ -26,5 +26,6 @@ export type FormGroupSingleSelectTypeAheadProps = {
|
|
26
26
|
}> | null;
|
27
27
|
onHandleClear: () => void;
|
28
28
|
isRequired?: boolean;
|
29
|
+
toggleButtonId?: string;
|
29
30
|
};
|
30
31
|
export declare function FormGroupSingleSelectTypeAhead(props: FormGroupSingleSelectTypeAheadProps): import("react/jsx-runtime").JSX.Element;
|
@@ -16,5 +16,6 @@ export type PageFormCreatableSelectProps<TFieldValues extends FieldValues = Fiel
|
|
16
16
|
isRequired?: boolean;
|
17
17
|
validate?: Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues> | Record<string, Validate<FieldPathValue<TFieldValues, TFieldName>, TFieldValues>>;
|
18
18
|
isMulti?: boolean;
|
19
|
+
toggleButtonId?: string;
|
19
20
|
};
|
20
21
|
export declare function PageFormCreatableSelect<TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPath<TFieldValues> = FieldPath<TFieldValues>>(props: PageFormCreatableSelectProps<TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
|