@busha/ramp-web-sdk 0.1.10 → 0.1.12
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/dist/helper.d.ts +3 -3
- package/dist/index.es.js +238 -239
- package/dist/index.umd.js +4 -4
- package/package.json +1 -1
package/dist/helper.d.ts
CHANGED
|
@@ -5,8 +5,8 @@ export declare function createContainerEl(): HTMLDivElement;
|
|
|
5
5
|
export declare function createCloseBtnEl(): HTMLButtonElement;
|
|
6
6
|
export declare function createSpinnerEl(): HTMLDivElement;
|
|
7
7
|
export declare function createIframeEl(): HTMLIFrameElement;
|
|
8
|
-
type FormPayload = Omit<QuotePayload, "onClose" | "onSuccess" | "
|
|
9
|
-
export declare function createFormEl({
|
|
10
|
-
|
|
8
|
+
type FormPayload = Omit<QuotePayload, "onClose" | "onSuccess" | "sandboxMode">;
|
|
9
|
+
export declare function createFormEl({ sandboxMode, ...payload }: FormPayload & {
|
|
10
|
+
sandboxMode?: boolean;
|
|
11
11
|
}): HTMLFormElement;
|
|
12
12
|
export {};
|