@ansible/ansible-ui-framework 0.0.617 → 0.0.618

Sign up to get free protection for your applications and to get access to all the features.
@@ -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;
@@ -1,5 +1,6 @@
1
1
  import { ReactNode } from 'react';
2
2
  export declare function PageFormSection(props: {
3
- title: string;
3
+ title?: string;
4
4
  children: ReactNode;
5
+ singleColumn?: boolean;
5
6
  }): JSX.Element;
@@ -24,6 +24,7 @@ export interface IFrameworkTranslations {
24
24
  by: string;
25
25
  selectNone: string;
26
26
  pleaseFixValidationErrors: string;
27
+ validating: string;
27
28
  }
28
29
  export declare function FrameworkTranslationsProvider(props: {
29
30
  children: ReactNode;