@frigade/react 1.32.21 → 1.32.23
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.
- package/lib/index.d.ts +2 -0
- package/lib/index.js +240 -236
- package/lib/index.js.map +1 -1
- package/lib/index.mjs +195 -191
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/index.d.ts
CHANGED
|
@@ -353,6 +353,7 @@ interface FormInputType {
|
|
|
353
353
|
interface FormInputProps {
|
|
354
354
|
formInput: FormInputType;
|
|
355
355
|
customFormTypeProps: CustomFormTypeProps;
|
|
356
|
+
inputData: any;
|
|
356
357
|
onSaveInputData: (data: object) => void;
|
|
357
358
|
setFormValidationErrors: (errors: FormValidationError[]) => void;
|
|
358
359
|
}
|
|
@@ -395,6 +396,7 @@ interface FormProps extends DefaultFrigadeFlowProps {
|
|
|
395
396
|
endFlowOnDismiss?: boolean;
|
|
396
397
|
modalPosition?: ModalPosition;
|
|
397
398
|
showPagination?: boolean;
|
|
399
|
+
allowBackNavigation?: boolean;
|
|
398
400
|
}
|
|
399
401
|
declare const FrigadeForm: FC<FormProps>;
|
|
400
402
|
|