@ansible/ansible-ui-framework 2.4.2615 → 2.4.2616
Sign up to get free protection for your applications and to get access to all the features.
@@ -11,9 +11,8 @@ export type PageFormMultiInputProps<T, TFieldValues extends FieldValues = FieldV
|
|
11
11
|
selectTitle?: string;
|
12
12
|
isDisabled?: boolean;
|
13
13
|
selectOpen?: (callback: (selection: T[]) => void, title: string) => void;
|
14
|
+
getChipLabel: (item: T) => string;
|
14
15
|
} & Omit<PageFormGroupProps, 'onChange' | 'value'> & ChipGroupProps;
|
15
16
|
export declare function PageFormMultiInput<T extends {
|
16
|
-
hostname?: string;
|
17
17
|
id: number | string;
|
18
|
-
name: string;
|
19
18
|
}, TFieldValues extends FieldValues = FieldValues, TFieldName extends FieldPathByValue<TFieldValues, T[]> = FieldPathByValue<TFieldValues, T[]>>(props: PageFormMultiInputProps<T, TFieldValues, TFieldName>): import("react/jsx-runtime").JSX.Element;
|