@suportepos/split-checkout 0.2.9 → 0.3.1
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/index.es.js +4720 -4731
- package/dist/index.umd.js +19 -19
- package/dist/standalone/suportepos-checkout.js +19 -19
- package/dist/types/CheckoutFlow.d.ts +1 -1
- package/dist/types/CheckoutFlowContent.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/types/lib/CheckoutFlow.d.ts +1 -1
- package/dist/types/lib/CheckoutFlowContent.d.ts +1 -0
- package/package.json +1 -1
|
@@ -46,4 +46,4 @@ export type CheckoutFlowProps = {
|
|
|
46
46
|
onResponse?: (payload: PaymentResult) => void;
|
|
47
47
|
uuid?: string;
|
|
48
48
|
};
|
|
49
|
-
export default function CheckoutFlow(
|
|
49
|
+
export default function CheckoutFlow(props: CheckoutFlowProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function CheckoutFlowContent({ step, setStep, amount, merchantName, products, splits, customer, merchantId, orderId, uuid, production, onResponse, paymentEnabled, }: any): import("react/jsx-runtime").JSX.Element;
|
package/dist/types/index.d.ts
CHANGED
|
@@ -2,5 +2,6 @@ export { default as CheckoutFlow } from "./lib/CheckoutFlow";
|
|
|
2
2
|
export { default as OrderSummary } from "./lib/OrderSummary";
|
|
3
3
|
export { default as SplitCardForm } from "./lib/SplitCardForm";
|
|
4
4
|
export { default as SplitPixForm } from "./lib/SplitPixForm";
|
|
5
|
+
export { default as CheckoutFlowContent } from "./lib/CheckoutFlowContent";
|
|
5
6
|
export * from "./lib/theme";
|
|
6
7
|
export * from "./lib/validators";
|
|
@@ -46,4 +46,4 @@ export type CheckoutFlowProps = {
|
|
|
46
46
|
onResponse?: (payload: PaymentResult) => void;
|
|
47
47
|
uuid?: string;
|
|
48
48
|
};
|
|
49
|
-
export default function CheckoutFlow(
|
|
49
|
+
export default function CheckoutFlow(props: CheckoutFlowProps): import("react/jsx-runtime").JSX.Element;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export default function CheckoutFlowContent({ step, setStep, amount, merchantName, products, splits, customer, merchantId, orderId, uuid, production, onResponse, paymentEnabled, }: any): import("react/jsx-runtime").JSX.Element;
|