react-native-bootpay-api 13.8.43 → 13.13.41
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/index.tsx +4 -2
- package/lib/Bootpay.js +25 -7
- package/lib/BootpayTypes.js +1 -1
- package/lib/UserInfo.js +1 -1
- package/lib/bootpayAnalytics.js +1 -1
- package/package.json +9 -8
- package/react-native.config.js +44 -51
- package/src/Bootpay.tsx +326 -470
- package/src/BootpayTypes.ts +98 -114
- package/src/UserInfo.ts +69 -63
- package/src/bootpayAnalytics.ts +151 -47
- package/src/index.tsx +3 -8
- package/src/Loader.tsx +0 -41
package/src/Loader.tsx
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
// import React from 'react'
|
|
2
|
-
// import ClipLoader from "react-spinners/ClipLoader";
|
|
3
|
-
// import { LoadingTypesProps } from './BootpayTypes';
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
// const override: React.CSSProperties = {
|
|
7
|
-
// display: "block",
|
|
8
|
-
// margin: "0 auto",
|
|
9
|
-
// borderColor: "red",
|
|
10
|
-
// };
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
// class Loader extends React.Component<LoadingTypesProps> {
|
|
14
|
-
// constructor(props: LoadingTypesProps) {
|
|
15
|
-
// super(props);
|
|
16
|
-
// }
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
// state = {
|
|
20
|
-
// loading: true,
|
|
21
|
-
// }
|
|
22
|
-
|
|
23
|
-
// render() {
|
|
24
|
-
// return (
|
|
25
|
-
// <div className="sweet-loading">
|
|
26
|
-
// <ClipLoader
|
|
27
|
-
// cssOverride={override}
|
|
28
|
-
// size={150}
|
|
29
|
-
// color={"#123abc"}
|
|
30
|
-
// loading={this.state.loading}
|
|
31
|
-
// speedMultiplier={1.5}
|
|
32
|
-
// />
|
|
33
|
-
// <span>
|
|
34
|
-
// ddd
|
|
35
|
-
// </span>
|
|
36
|
-
// </div>
|
|
37
|
-
// );
|
|
38
|
-
// }
|
|
39
|
-
// }
|
|
40
|
-
|
|
41
|
-
// export default Loader;
|