@gen-epix/ui 1.8.7 → 1.9.0

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.
Files changed (3) hide show
  1. package/dist/index.d.ts +2 -1
  2. package/dist/index.js +50936 -50920
  3. package/package.json +45 -45
package/dist/index.d.ts CHANGED
@@ -7449,7 +7449,7 @@ export declare type GenericErrorMessageProps = {
7449
7449
  readonly shouldHideActionButtons?: boolean;
7450
7450
  };
7451
7451
 
7452
- export declare const GenericForm: <TFormFields>({ formFieldDefinitions, formId, onSubmit, formMethods, renderField, wrapForm, }: GenericFormProps<TFormFields>) => JSX.Element;
7452
+ export declare const GenericForm: <TFormFields>({ formFieldDefinitions, formId, onSubmit, formMethods, renderField, wrapForm, disableAll, }: GenericFormProps<TFormFields>) => JSX.Element;
7453
7453
 
7454
7454
  export declare type GenericFormProps<TFormFields> = {
7455
7455
  readonly formFieldDefinitions: FormFieldDefinition<TFormFields>[];
@@ -7458,6 +7458,7 @@ export declare type GenericFormProps<TFormFields> = {
7458
7458
  readonly formMethods: UseFormReturn<TFormFields>;
7459
7459
  readonly renderField?: (definition: FormFieldDefinition<TFormFields>, element: ReactElement) => ReactElement;
7460
7460
  readonly wrapForm?: (children: ReactElement) => ReactElement;
7461
+ readonly disableAll?: boolean;
7461
7462
  };
7462
7463
 
7463
7464
  /**