gotrip-fx-transaction-form 1.0.196-dev → 1.0.197-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/assets/index.css +1 -1
- package/index.js +18062 -18016
- package/package.json +1 -1
- package/types/components/Apps/EmbededIndividualApp.d.ts +2 -1
- package/types/components/Insurance/CreateInsuranceTransactionForm.d.ts +2 -4
- package/types/components/StepIndicator/StepIndicatorHorizontal.d.ts +2 -1
- package/types/embeded-main.d.ts +1 -0
- package/types/pages/guest/insurance-create.d.ts +5 -1
package/package.json
CHANGED
|
@@ -6,5 +6,6 @@ export type EmbededIndividualAppProps = {
|
|
|
6
6
|
defaultBank?: string;
|
|
7
7
|
displayDefaultBankLogo?: boolean;
|
|
8
8
|
type?: ESdkFormType;
|
|
9
|
+
scrollable?: boolean;
|
|
9
10
|
};
|
|
10
|
-
export declare const EmbededIndividualApp: ({ apiKey, externalCssUrl, hide, defaultBank, displayDefaultBankLogo, type, }: EmbededIndividualAppProps) => import("react/jsx-runtime").JSX.Element;
|
|
11
|
+
export declare const EmbededIndividualApp: ({ apiKey, externalCssUrl, hide, defaultBank, displayDefaultBankLogo, type, scrollable, }: EmbededIndividualAppProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -1,10 +1,8 @@
|
|
|
1
1
|
export interface CreateInsuranceTransactionFormProps {
|
|
2
2
|
storageKey: string;
|
|
3
3
|
title?: string;
|
|
4
|
-
backButtonText?: string;
|
|
5
4
|
onBack?: () => void;
|
|
6
5
|
onSuccess?: (transactionData: any) => void;
|
|
7
|
-
|
|
8
|
-
showBackButton?: boolean;
|
|
6
|
+
scrollable?: boolean;
|
|
9
7
|
}
|
|
10
|
-
export declare const CreateInsuranceTransactionForm: ({ storageKey, title,
|
|
8
|
+
export declare const CreateInsuranceTransactionForm: ({ storageKey, title, onBack, onSuccess, scrollable, }: CreateInsuranceTransactionFormProps) => import("react/jsx-runtime").JSX.Element;
|
|
@@ -5,6 +5,7 @@ type Step = {
|
|
|
5
5
|
interface StepIndicatorHorizontalProps {
|
|
6
6
|
currentStep: number;
|
|
7
7
|
steps: Step[];
|
|
8
|
+
onStepClick?: (stepNumber: number) => void;
|
|
8
9
|
}
|
|
9
|
-
export declare const StepIndicatorHorizontal: ({ currentStep, steps }: StepIndicatorHorizontalProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
|
+
export declare const StepIndicatorHorizontal: ({ currentStep, steps, onStepClick, }: StepIndicatorHorizontalProps) => import("react/jsx-runtime").JSX.Element;
|
|
10
11
|
export {};
|
package/types/embeded-main.d.ts
CHANGED
|
@@ -1 +1,5 @@
|
|
|
1
|
-
|
|
1
|
+
interface CreateGuestInsuranceTransactionPageProps {
|
|
2
|
+
scrollable?: boolean;
|
|
3
|
+
}
|
|
4
|
+
export declare const CreateGuestInsuranceTransactionPage: ({ scrollable, }: CreateGuestInsuranceTransactionPageProps) => import("react/jsx-runtime").JSX.Element;
|
|
5
|
+
export {};
|