@ansible/ansible-ui-framework 0.0.617 → 0.0.618
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.
@@ -15,6 +15,11 @@ export declare function PageForm<T extends object>(props: {
|
|
15
15
|
disableBody?: boolean;
|
16
16
|
disablePadding?: boolean;
|
17
17
|
}): JSX.Element;
|
18
|
+
export declare function PageFormGrid(props: {
|
19
|
+
children?: ReactNode;
|
20
|
+
isVertical?: boolean;
|
21
|
+
singleColumn?: boolean;
|
22
|
+
}): JSX.Element;
|
18
23
|
export type PageFormSubmitHandler<T extends FieldValues> = (data: T, setError: (error: string) => void, setFieldError: (fieldName: FieldPath<T>, error: ErrorOption) => void) => Promise<unknown>;
|
19
24
|
export declare function PageFormSubmitButton(props: {
|
20
25
|
children: ReactNode;
|