@ansible/ansible-ui-framework 2.4.2613 → 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} +3 -2
- package/PageForm/Inputs/PageFormCreatableSelect.d.ts +1 -0
- package/PageForm/Inputs/PageFormGroup.d.ts +1 -0
- package/index.js +247 -236
- package/index.umd.cjs +2 -2
- package/package.json +1 -1
- package/publish/index.d.ts +5 -5
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;
|
@@ -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;
|