gotrip-fx-transaction-form 1.0.185-dev → 1.0.186-dev
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/package.json
CHANGED
|
@@ -3,6 +3,7 @@ interface StepThreeBuyerInfoProps {
|
|
|
3
3
|
initialValues?: Partial<BuyerFormValues>;
|
|
4
4
|
onSubmit: (values: BuyerFormValues) => void;
|
|
5
5
|
onBack: () => void;
|
|
6
|
+
onFormRef?: (form: HTMLFormElement | null) => void;
|
|
6
7
|
}
|
|
7
|
-
export declare const StepThreeBuyerInfo: ({ initialValues, onSubmit, onBack: _onBack, }: StepThreeBuyerInfoProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
|
+
export declare const StepThreeBuyerInfo: ({ initialValues, onSubmit, onBack: _onBack, onFormRef, }: StepThreeBuyerInfoProps) => import("react/jsx-runtime").JSX.Element;
|
|
8
9
|
export {};
|
|
@@ -11,6 +11,7 @@ interface StepThreeInsuredPeopleProps {
|
|
|
11
11
|
} | null;
|
|
12
12
|
onSubmit: (people: InsuredPerson[]) => void;
|
|
13
13
|
onBack: () => void;
|
|
14
|
+
onFormRef?: (form: HTMLFormElement | null) => void;
|
|
14
15
|
}
|
|
15
|
-
export declare const StepThreeInsuredPeople: ({ initialPeople, insuranceType, providerCode, buyerInfo, onSubmit, }: StepThreeInsuredPeopleProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
|
+
export declare const StepThreeInsuredPeople: ({ initialPeople, insuranceType, providerCode, buyerInfo, onSubmit, onFormRef, }: StepThreeInsuredPeopleProps) => import("react/jsx-runtime").JSX.Element;
|
|
16
17
|
export {};
|