@pinerohit11/testwidget 0.1.41 → 0.1.42
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.cjs +2186 -4
- package/dist/index.d.cts +26 -3
- package/dist/index.d.ts +26 -3
- package/dist/index.js +2186 -3
- package/package.json +50 -45
package/dist/index.d.cts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
|
3
|
-
interface Props {
|
3
|
+
interface Props$2 {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
amount?: string;
|
6
6
|
}
|
7
|
-
declare function RequestPayment(props: Props): React.JSX.Element;
|
7
|
+
declare function RequestPayment(props: Props$2): React.JSX.Element;
|
8
8
|
|
9
9
|
interface RequestPaymentAllInputProps {
|
10
10
|
fractalpayClientKey: string;
|
@@ -29,4 +29,27 @@ interface PaymentRequestProps {
|
|
29
29
|
}
|
30
30
|
declare function RequestPaymentonClick(props: PaymentRequestProps): React.JSX.Element;
|
31
31
|
|
32
|
-
|
32
|
+
interface RequestPaymentProps {
|
33
|
+
fractalpayClientKey: string;
|
34
|
+
amount: string;
|
35
|
+
orderID: string;
|
36
|
+
}
|
37
|
+
declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }: RequestPaymentProps): React.JSX.Element;
|
38
|
+
|
39
|
+
declare function Payment(): React.JSX.Element;
|
40
|
+
|
41
|
+
type Props$1 = {
|
42
|
+
fractalpayClientKey: string;
|
43
|
+
};
|
44
|
+
declare function CompletedTransactions(props: Props$1): React.JSX.Element;
|
45
|
+
|
46
|
+
declare function TockenizPay(): React.JSX.Element;
|
47
|
+
|
48
|
+
interface Props {
|
49
|
+
amount: string;
|
50
|
+
fractalpayClientKey: string;
|
51
|
+
orderID: string;
|
52
|
+
}
|
53
|
+
declare function GetPaymentDynamic(props: Props): React.JSX.Element;
|
54
|
+
|
55
|
+
export { CompletedTransactions, GetPaymentDynamic, Payment, RequestPayment, RequestPaymentAllInput, RequestPaymentDynamic, RequestPaymentonClick, RqstPaymntInputField, TockenizPay };
|
package/dist/index.d.ts
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
import React from 'react';
|
2
2
|
|
3
|
-
interface Props {
|
3
|
+
interface Props$2 {
|
4
4
|
fractalpayClientKey: string;
|
5
5
|
amount?: string;
|
6
6
|
}
|
7
|
-
declare function RequestPayment(props: Props): React.JSX.Element;
|
7
|
+
declare function RequestPayment(props: Props$2): React.JSX.Element;
|
8
8
|
|
9
9
|
interface RequestPaymentAllInputProps {
|
10
10
|
fractalpayClientKey: string;
|
@@ -29,4 +29,27 @@ interface PaymentRequestProps {
|
|
29
29
|
}
|
30
30
|
declare function RequestPaymentonClick(props: PaymentRequestProps): React.JSX.Element;
|
31
31
|
|
32
|
-
|
32
|
+
interface RequestPaymentProps {
|
33
|
+
fractalpayClientKey: string;
|
34
|
+
amount: string;
|
35
|
+
orderID: string;
|
36
|
+
}
|
37
|
+
declare function RqstPaymntInputField({ fractalpayClientKey, amount, orderID }: RequestPaymentProps): React.JSX.Element;
|
38
|
+
|
39
|
+
declare function Payment(): React.JSX.Element;
|
40
|
+
|
41
|
+
type Props$1 = {
|
42
|
+
fractalpayClientKey: string;
|
43
|
+
};
|
44
|
+
declare function CompletedTransactions(props: Props$1): React.JSX.Element;
|
45
|
+
|
46
|
+
declare function TockenizPay(): React.JSX.Element;
|
47
|
+
|
48
|
+
interface Props {
|
49
|
+
amount: string;
|
50
|
+
fractalpayClientKey: string;
|
51
|
+
orderID: string;
|
52
|
+
}
|
53
|
+
declare function GetPaymentDynamic(props: Props): React.JSX.Element;
|
54
|
+
|
55
|
+
export { CompletedTransactions, GetPaymentDynamic, Payment, RequestPayment, RequestPaymentAllInput, RequestPaymentDynamic, RequestPaymentonClick, RqstPaymntInputField, TockenizPay };
|