card-react-native 0.0.7
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/LICENSE +20 -0
- package/README.md +307 -0
- package/android/build.gradle +118 -0
- package/android/gradle.properties +5 -0
- package/android/src/main/AndroidManifest.xml +3 -0
- package/android/src/main/AndroidManifestNew.xml +2 -0
- package/android/src/main/java/com/cardsdkreactnative/CardSdkReactNativePackage.kt +17 -0
- package/android/src/main/java/com/cardsdkreactnative/CardSdkReactNativeViewManager.kt +164 -0
- package/android/src/main/res/layout/cardview.xml +15 -0
- package/card-react-native.podspec +44 -0
- package/ios/CardSdkReactNative-Bridging-Header.h +2 -0
- package/ios/CardSdkReactNative.xcodeproj/project.pbxproj +283 -0
- package/ios/CardSdkReactNative.xcodeproj/project.xcworkspace/contents.xcworkspacedata +4 -0
- package/ios/CardSdkReactNativeViewManager.m +21 -0
- package/ios/CardSdkReactNativeViewManager.swift +137 -0
- package/lib/commonjs/index.js +147 -0
- package/lib/commonjs/index.js.map +1 -0
- package/lib/commonjs/models/config.js +6 -0
- package/lib/commonjs/models/config.js.map +1 -0
- package/lib/commonjs/models/enums/TapCurrencyCode.js +188 -0
- package/lib/commonjs/models/enums/TapCurrencyCode.js.map +1 -0
- package/lib/commonjs/models/enums/index.js +28 -0
- package/lib/commonjs/models/enums/index.js.map +1 -0
- package/lib/commonjs/models/enums/sdkEnums.js +70 -0
- package/lib/commonjs/models/enums/sdkEnums.js.map +1 -0
- package/lib/commonjs/models/index.js +39 -0
- package/lib/commonjs/models/index.js.map +1 -0
- package/lib/commonjs/models/types.js +2 -0
- package/lib/commonjs/models/types.js.map +1 -0
- package/lib/module/index.js +123 -0
- package/lib/module/index.js.map +1 -0
- package/lib/module/models/config.js +2 -0
- package/lib/module/models/config.js.map +1 -0
- package/lib/module/models/enums/TapCurrencyCode.js +181 -0
- package/lib/module/models/enums/TapCurrencyCode.js.map +1 -0
- package/lib/module/models/enums/index.js +3 -0
- package/lib/module/models/enums/index.js.map +1 -0
- package/lib/module/models/enums/sdkEnums.js +56 -0
- package/lib/module/models/enums/sdkEnums.js.map +1 -0
- package/lib/module/models/index.js +4 -0
- package/lib/module/models/index.js.map +1 -0
- package/lib/module/models/types.js +2 -0
- package/lib/module/models/types.js.map +1 -0
- package/lib/typescript/src/index.d.ts +46 -0
- package/lib/typescript/src/index.d.ts.map +1 -0
- package/lib/typescript/src/models/config.d.ts +114 -0
- package/lib/typescript/src/models/config.d.ts.map +1 -0
- package/lib/typescript/src/models/enums/TapCurrencyCode.d.ts +180 -0
- package/lib/typescript/src/models/enums/TapCurrencyCode.d.ts.map +1 -0
- package/lib/typescript/src/models/enums/index.d.ts +3 -0
- package/lib/typescript/src/models/enums/index.d.ts.map +1 -0
- package/lib/typescript/src/models/enums/sdkEnums.d.ts +48 -0
- package/lib/typescript/src/models/enums/sdkEnums.d.ts.map +1 -0
- package/lib/typescript/src/models/index.d.ts +4 -0
- package/lib/typescript/src/models/index.d.ts.map +1 -0
- package/lib/typescript/src/models/types.d.ts +5 -0
- package/lib/typescript/src/models/types.d.ts.map +1 -0
- package/package.json +163 -0
- package/src/index.tsx +194 -0
- package/src/models/config.ts +124 -0
- package/src/models/enums/TapCurrencyCode.ts +356 -0
- package/src/models/enums/index.ts +2 -0
- package/src/models/enums/sdkEnums.ts +54 -0
- package/src/models/index.ts +3 -0
- package/src/models/types.ts +16 -0
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.TapCurrencyCode = void 0;
|
|
7
|
+
let TapCurrencyCode = /*#__PURE__*/function (TapCurrencyCode) {
|
|
8
|
+
TapCurrencyCode["AED"] = "AED";
|
|
9
|
+
TapCurrencyCode["AFN"] = "AFN";
|
|
10
|
+
TapCurrencyCode["ALL"] = "ALL";
|
|
11
|
+
TapCurrencyCode["AMD"] = "AMD";
|
|
12
|
+
TapCurrencyCode["ANG"] = "ANG";
|
|
13
|
+
TapCurrencyCode["AOA"] = "AOA";
|
|
14
|
+
TapCurrencyCode["ARS"] = "ARS";
|
|
15
|
+
TapCurrencyCode["AUD"] = "AUD";
|
|
16
|
+
TapCurrencyCode["AWG"] = "AWG";
|
|
17
|
+
TapCurrencyCode["AZN"] = "AZN";
|
|
18
|
+
TapCurrencyCode["BAM"] = "BAM";
|
|
19
|
+
TapCurrencyCode["BBD"] = "BBD";
|
|
20
|
+
TapCurrencyCode["BDT"] = "BDT";
|
|
21
|
+
TapCurrencyCode["BGN"] = "BGN";
|
|
22
|
+
TapCurrencyCode["BHD"] = "BHD";
|
|
23
|
+
TapCurrencyCode["BIF"] = "BIF";
|
|
24
|
+
TapCurrencyCode["BMD"] = "BMD";
|
|
25
|
+
TapCurrencyCode["BND"] = "BND";
|
|
26
|
+
TapCurrencyCode["BOB"] = "BOB";
|
|
27
|
+
TapCurrencyCode["BOV"] = "BOV";
|
|
28
|
+
TapCurrencyCode["BRL"] = "BRL";
|
|
29
|
+
TapCurrencyCode["BSD"] = "BSD";
|
|
30
|
+
TapCurrencyCode["BTN"] = "BTN";
|
|
31
|
+
TapCurrencyCode["BWP"] = "BWP";
|
|
32
|
+
TapCurrencyCode["BYN"] = "BYN";
|
|
33
|
+
TapCurrencyCode["BZD"] = "BZD";
|
|
34
|
+
TapCurrencyCode["CAD"] = "CAD";
|
|
35
|
+
TapCurrencyCode["CDF"] = "CDF";
|
|
36
|
+
TapCurrencyCode["CHE"] = "CHE";
|
|
37
|
+
TapCurrencyCode["CHF"] = "CHF";
|
|
38
|
+
TapCurrencyCode["CHW"] = "CHW";
|
|
39
|
+
TapCurrencyCode["CLF"] = "CLF";
|
|
40
|
+
TapCurrencyCode["CLP"] = "CLP";
|
|
41
|
+
TapCurrencyCode["CNY"] = "CNY";
|
|
42
|
+
TapCurrencyCode["COP"] = "COP";
|
|
43
|
+
TapCurrencyCode["COU"] = "COU";
|
|
44
|
+
TapCurrencyCode["CRC"] = "CRC";
|
|
45
|
+
TapCurrencyCode["CUC"] = "CUC";
|
|
46
|
+
TapCurrencyCode["CUP"] = "CUP";
|
|
47
|
+
TapCurrencyCode["CVE"] = "CVE";
|
|
48
|
+
TapCurrencyCode["CZK"] = "CZK";
|
|
49
|
+
TapCurrencyCode["DJF"] = "DJF";
|
|
50
|
+
TapCurrencyCode["DKK"] = "DKK";
|
|
51
|
+
TapCurrencyCode["DOP"] = "DOP";
|
|
52
|
+
TapCurrencyCode["DZD"] = "DZD";
|
|
53
|
+
TapCurrencyCode["EGP"] = "EGP";
|
|
54
|
+
TapCurrencyCode["ERN"] = "ERN";
|
|
55
|
+
TapCurrencyCode["ETB"] = "ETB";
|
|
56
|
+
TapCurrencyCode["EUR"] = "EUR";
|
|
57
|
+
TapCurrencyCode["FJD"] = "FJD";
|
|
58
|
+
TapCurrencyCode["FKP"] = "FKP";
|
|
59
|
+
TapCurrencyCode["GBP"] = "GBP";
|
|
60
|
+
TapCurrencyCode["GEL"] = "GEL";
|
|
61
|
+
TapCurrencyCode["GHS"] = "GHS";
|
|
62
|
+
TapCurrencyCode["GIP"] = "GIP";
|
|
63
|
+
TapCurrencyCode["GMD"] = "GMD";
|
|
64
|
+
TapCurrencyCode["GNF"] = "GNF";
|
|
65
|
+
TapCurrencyCode["GTQ"] = "GTQ";
|
|
66
|
+
TapCurrencyCode["GYD"] = "GYD";
|
|
67
|
+
TapCurrencyCode["HKD"] = "HKD";
|
|
68
|
+
TapCurrencyCode["HNL"] = "HNL";
|
|
69
|
+
TapCurrencyCode["HRK"] = "HRK";
|
|
70
|
+
TapCurrencyCode["HTG"] = "HTG";
|
|
71
|
+
TapCurrencyCode["HUF"] = "HUF";
|
|
72
|
+
TapCurrencyCode["IDR"] = "IDR";
|
|
73
|
+
TapCurrencyCode["ILS"] = "ILS";
|
|
74
|
+
TapCurrencyCode["INR"] = "INR";
|
|
75
|
+
TapCurrencyCode["IQD"] = "IQD";
|
|
76
|
+
TapCurrencyCode["IRR"] = "IRR";
|
|
77
|
+
TapCurrencyCode["ISK"] = "ISK";
|
|
78
|
+
TapCurrencyCode["JMD"] = "JMD";
|
|
79
|
+
TapCurrencyCode["JOD"] = "JOD";
|
|
80
|
+
TapCurrencyCode["JPY"] = "JPY";
|
|
81
|
+
TapCurrencyCode["KES"] = "KES";
|
|
82
|
+
TapCurrencyCode["KGS"] = "KGS";
|
|
83
|
+
TapCurrencyCode["KHR"] = "KHR";
|
|
84
|
+
TapCurrencyCode["KMF"] = "KMF";
|
|
85
|
+
TapCurrencyCode["KPW"] = "KPW";
|
|
86
|
+
TapCurrencyCode["KRW"] = "KRW";
|
|
87
|
+
TapCurrencyCode["KWD"] = "KWD";
|
|
88
|
+
TapCurrencyCode["KYD"] = "KYD";
|
|
89
|
+
TapCurrencyCode["KZT"] = "KZT";
|
|
90
|
+
TapCurrencyCode["LAK"] = "LAK";
|
|
91
|
+
TapCurrencyCode["LBP"] = "LBP";
|
|
92
|
+
TapCurrencyCode["LKR"] = "LKR";
|
|
93
|
+
TapCurrencyCode["LRD"] = "LRD";
|
|
94
|
+
TapCurrencyCode["LSL"] = "LSL";
|
|
95
|
+
TapCurrencyCode["LYD"] = "LYD";
|
|
96
|
+
TapCurrencyCode["MAD"] = "MAD";
|
|
97
|
+
TapCurrencyCode["MDL"] = "MDL";
|
|
98
|
+
TapCurrencyCode["MGA"] = "MGA";
|
|
99
|
+
TapCurrencyCode["MKD"] = "MKD";
|
|
100
|
+
TapCurrencyCode["MMK"] = "MMK";
|
|
101
|
+
TapCurrencyCode["MNT"] = "MNT";
|
|
102
|
+
TapCurrencyCode["MOP"] = "MOP";
|
|
103
|
+
TapCurrencyCode["MUR"] = "MUR";
|
|
104
|
+
TapCurrencyCode["MVR"] = "MVR";
|
|
105
|
+
TapCurrencyCode["MWK"] = "MWK";
|
|
106
|
+
TapCurrencyCode["MXN"] = "MXN";
|
|
107
|
+
TapCurrencyCode["MXV"] = "MXV";
|
|
108
|
+
TapCurrencyCode["MYR"] = "MYR";
|
|
109
|
+
TapCurrencyCode["MZN"] = "MZN";
|
|
110
|
+
TapCurrencyCode["NAD"] = "NAD";
|
|
111
|
+
TapCurrencyCode["NGN"] = "NGN";
|
|
112
|
+
TapCurrencyCode["NIO"] = "NIO";
|
|
113
|
+
TapCurrencyCode["NOK"] = "NOK";
|
|
114
|
+
TapCurrencyCode["NPR"] = "NPR";
|
|
115
|
+
TapCurrencyCode["NZD"] = "NZD";
|
|
116
|
+
TapCurrencyCode["OMR"] = "OMR";
|
|
117
|
+
TapCurrencyCode["PAB"] = "PAB";
|
|
118
|
+
TapCurrencyCode["PEN"] = "PEN";
|
|
119
|
+
TapCurrencyCode["PGK"] = "PGK";
|
|
120
|
+
TapCurrencyCode["PHP"] = "PHP";
|
|
121
|
+
TapCurrencyCode["PKR"] = "PKR";
|
|
122
|
+
TapCurrencyCode["PLN"] = "PLN";
|
|
123
|
+
TapCurrencyCode["PYG"] = "PYG";
|
|
124
|
+
TapCurrencyCode["QAR"] = "QAR";
|
|
125
|
+
TapCurrencyCode["RON"] = "RON";
|
|
126
|
+
TapCurrencyCode["RSD"] = "RSD";
|
|
127
|
+
TapCurrencyCode["RUB"] = "RUB";
|
|
128
|
+
TapCurrencyCode["RWF"] = "RWF";
|
|
129
|
+
TapCurrencyCode["SAR"] = "SAR";
|
|
130
|
+
TapCurrencyCode["SBD"] = "SBD";
|
|
131
|
+
TapCurrencyCode["SCR"] = "SCR";
|
|
132
|
+
TapCurrencyCode["SDG"] = "SDG";
|
|
133
|
+
TapCurrencyCode["SEK"] = "SEK";
|
|
134
|
+
TapCurrencyCode["SGD"] = "SGD";
|
|
135
|
+
TapCurrencyCode["SHP"] = "SHP";
|
|
136
|
+
TapCurrencyCode["SLL"] = "SLL";
|
|
137
|
+
TapCurrencyCode["SOS"] = "SOS";
|
|
138
|
+
TapCurrencyCode["SRD"] = "SRD";
|
|
139
|
+
TapCurrencyCode["SSP"] = "SSP";
|
|
140
|
+
TapCurrencyCode["SVC"] = "SVC";
|
|
141
|
+
TapCurrencyCode["SYP"] = "SYP";
|
|
142
|
+
TapCurrencyCode["SZL"] = "SZL";
|
|
143
|
+
TapCurrencyCode["THB"] = "THB";
|
|
144
|
+
TapCurrencyCode["TJS"] = "TJS";
|
|
145
|
+
TapCurrencyCode["TMT"] = "TMT";
|
|
146
|
+
TapCurrencyCode["TND"] = "TND";
|
|
147
|
+
TapCurrencyCode["TOP"] = "TOP";
|
|
148
|
+
TapCurrencyCode["TRY"] = "TRY";
|
|
149
|
+
TapCurrencyCode["TTD"] = "TTD";
|
|
150
|
+
TapCurrencyCode["TWD"] = "TWD";
|
|
151
|
+
TapCurrencyCode["TZS"] = "TZS";
|
|
152
|
+
TapCurrencyCode["UAH"] = "UAH";
|
|
153
|
+
TapCurrencyCode["UGX"] = "UGX";
|
|
154
|
+
TapCurrencyCode["USD"] = "USD";
|
|
155
|
+
TapCurrencyCode["USN"] = "USN";
|
|
156
|
+
TapCurrencyCode["UYI"] = "UYI";
|
|
157
|
+
TapCurrencyCode["UYU"] = "UYU";
|
|
158
|
+
TapCurrencyCode["UYW"] = "UYW";
|
|
159
|
+
TapCurrencyCode["UZS"] = "UZS";
|
|
160
|
+
TapCurrencyCode["VES"] = "VES";
|
|
161
|
+
TapCurrencyCode["VND"] = "VND";
|
|
162
|
+
TapCurrencyCode["VUV"] = "VUV";
|
|
163
|
+
TapCurrencyCode["WST"] = "WST";
|
|
164
|
+
TapCurrencyCode["XAF"] = "XAF";
|
|
165
|
+
TapCurrencyCode["XAG"] = "XAG";
|
|
166
|
+
TapCurrencyCode["XAU"] = "XAU";
|
|
167
|
+
TapCurrencyCode["XBA"] = "XBA";
|
|
168
|
+
TapCurrencyCode["XBB"] = "XBB";
|
|
169
|
+
TapCurrencyCode["XBC"] = "XBC";
|
|
170
|
+
TapCurrencyCode["XBD"] = "XBD";
|
|
171
|
+
TapCurrencyCode["XCD"] = "XCD";
|
|
172
|
+
TapCurrencyCode["XDR"] = "XDR";
|
|
173
|
+
TapCurrencyCode["XOF"] = "XOF";
|
|
174
|
+
TapCurrencyCode["XPD"] = "XPD";
|
|
175
|
+
TapCurrencyCode["XPF"] = "XPF";
|
|
176
|
+
TapCurrencyCode["XPT"] = "XPT";
|
|
177
|
+
TapCurrencyCode["XSU"] = "XSU";
|
|
178
|
+
TapCurrencyCode["XTS"] = "XTS";
|
|
179
|
+
TapCurrencyCode["XUA"] = "XUA";
|
|
180
|
+
TapCurrencyCode["XXX"] = "XXX";
|
|
181
|
+
TapCurrencyCode["YER"] = "YER";
|
|
182
|
+
TapCurrencyCode["ZAR"] = "ZAR";
|
|
183
|
+
TapCurrencyCode["ZMW"] = "ZMW";
|
|
184
|
+
TapCurrencyCode["ZWL"] = "ZWL";
|
|
185
|
+
return TapCurrencyCode;
|
|
186
|
+
}({});
|
|
187
|
+
exports.TapCurrencyCode = TapCurrencyCode;
|
|
188
|
+
//# sourceMappingURL=TapCurrencyCode.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["TapCurrencyCode","exports"],"sourceRoot":"../../../../src","sources":["models/enums/TapCurrencyCode.ts"],"mappings":";;;;;;IAAYA,eAAe,0BAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAA,OAAfA,eAAe;AAAA;AAAAC,OAAA,CAAAD,eAAA,GAAAA,eAAA"}
|
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _TapCurrencyCode = require("./TapCurrencyCode");
|
|
7
|
+
Object.keys(_TapCurrencyCode).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _TapCurrencyCode[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _TapCurrencyCode[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _sdkEnums = require("./sdkEnums");
|
|
18
|
+
Object.keys(_sdkEnums).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _sdkEnums[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _sdkEnums[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_TapCurrencyCode","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_sdkEnums"],"sourceRoot":"../../../../src","sources":["models/enums/index.ts"],"mappings":";;;;;AAAA,IAAAA,gBAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,gBAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,gBAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,gBAAA,CAAAK,GAAA;IAAA;EAAA;AAAA;AACA,IAAAK,SAAA,GAAAT,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAO,SAAA,EAAAN,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAK,SAAA,CAAAL,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAC,SAAA,CAAAL,GAAA;IAAA;EAAA;AAAA"}
|
|
@@ -0,0 +1,70 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.Theme = exports.SupportedCards = exports.SupportedBrands = exports.SdkMode = exports.Scope = exports.Locale = exports.Edges = exports.Direction = void 0;
|
|
7
|
+
let SupportedBrands = /*#__PURE__*/function (SupportedBrands) {
|
|
8
|
+
SupportedBrands["AMEX"] = "AMEX";
|
|
9
|
+
SupportedBrands["CARTESBANCAIRES"] = "CARTESBANCAIRES";
|
|
10
|
+
SupportedBrands["DISCOVER"] = "DISCOVER";
|
|
11
|
+
SupportedBrands["EFTPOS"] = "EFTPOS";
|
|
12
|
+
SupportedBrands["ELECTRON"] = "ELECTRON";
|
|
13
|
+
SupportedBrands["IDCREDIT"] = "IDCREDIT";
|
|
14
|
+
SupportedBrands["INTERAC"] = "INTERAC";
|
|
15
|
+
SupportedBrands["JCB"] = "JCB";
|
|
16
|
+
SupportedBrands["MAESTRO"] = "MAESTRO";
|
|
17
|
+
SupportedBrands["MASTERCARD"] = "MASTERCARD";
|
|
18
|
+
SupportedBrands["PRIVATELABEL"] = "PRIVATELABEL";
|
|
19
|
+
SupportedBrands["QUICPAY"] = "QUICPAY";
|
|
20
|
+
SupportedBrands["SUICA"] = "SUICA";
|
|
21
|
+
SupportedBrands["VISA"] = "VISA";
|
|
22
|
+
SupportedBrands["VPAY"] = "VPAY";
|
|
23
|
+
SupportedBrands["MADA"] = "MADA";
|
|
24
|
+
return SupportedBrands;
|
|
25
|
+
}({});
|
|
26
|
+
exports.SupportedBrands = SupportedBrands;
|
|
27
|
+
let Scope = /*#__PURE__*/function (Scope) {
|
|
28
|
+
Scope["Token"] = "Token";
|
|
29
|
+
Scope["Authenticate"] = "Authenticate";
|
|
30
|
+
return Scope;
|
|
31
|
+
}({});
|
|
32
|
+
exports.Scope = Scope;
|
|
33
|
+
let SdkMode = /*#__PURE__*/function (SdkMode) {
|
|
34
|
+
SdkMode[SdkMode["production"] = 0] = "production";
|
|
35
|
+
SdkMode[SdkMode["sandbox"] = 1] = "sandbox";
|
|
36
|
+
return SdkMode;
|
|
37
|
+
}({});
|
|
38
|
+
exports.SdkMode = SdkMode;
|
|
39
|
+
let Locale = /*#__PURE__*/function (Locale) {
|
|
40
|
+
Locale["en"] = "en";
|
|
41
|
+
Locale["ar"] = "ar";
|
|
42
|
+
return Locale;
|
|
43
|
+
}({});
|
|
44
|
+
exports.Locale = Locale;
|
|
45
|
+
let SupportedCards = /*#__PURE__*/function (SupportedCards) {
|
|
46
|
+
SupportedCards["All"] = "All";
|
|
47
|
+
SupportedCards["Debit"] = "DEBIT";
|
|
48
|
+
SupportedCards["Credit"] = "CREDIT";
|
|
49
|
+
return SupportedCards;
|
|
50
|
+
}({});
|
|
51
|
+
exports.SupportedCards = SupportedCards;
|
|
52
|
+
let Theme = /*#__PURE__*/function (Theme) {
|
|
53
|
+
Theme["light"] = "light";
|
|
54
|
+
Theme["dark"] = "dark";
|
|
55
|
+
return Theme;
|
|
56
|
+
}({});
|
|
57
|
+
exports.Theme = Theme;
|
|
58
|
+
let Edges = /*#__PURE__*/function (Edges) {
|
|
59
|
+
Edges["curved"] = "curved";
|
|
60
|
+
Edges["flat"] = "flat";
|
|
61
|
+
return Edges;
|
|
62
|
+
}({});
|
|
63
|
+
exports.Edges = Edges;
|
|
64
|
+
let Direction = /*#__PURE__*/function (Direction) {
|
|
65
|
+
Direction["ltr"] = "ltr";
|
|
66
|
+
Direction["rtl"] = "rtl";
|
|
67
|
+
return Direction;
|
|
68
|
+
}({});
|
|
69
|
+
exports.Direction = Direction;
|
|
70
|
+
//# sourceMappingURL=sdkEnums.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["SupportedBrands","exports","Scope","SdkMode","Locale","SupportedCards","Theme","Edges","Direction"],"sourceRoot":"../../../../src","sources":["models/enums/sdkEnums.ts"],"mappings":";;;;;;IAAYA,eAAe,0BAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAfA,eAAe;EAAA,OAAfA,eAAe;AAAA;AAAAC,OAAA,CAAAD,eAAA,GAAAA,eAAA;AAAA,IAmBfE,KAAK,0BAALA,KAAK;EAALA,KAAK;EAALA,KAAK;EAAA,OAALA,KAAK;AAAA;AAAAD,OAAA,CAAAC,KAAA,GAAAA,KAAA;AAAA,IAKLC,OAAO,0BAAPA,OAAO;EAAPA,OAAO,CAAPA,OAAO;EAAPA,OAAO,CAAPA,OAAO;EAAA,OAAPA,OAAO;AAAA;AAAAF,OAAA,CAAAE,OAAA,GAAAA,OAAA;AAAA,IAKPC,MAAM,0BAANA,MAAM;EAANA,MAAM;EAANA,MAAM;EAAA,OAANA,MAAM;AAAA;AAAAH,OAAA,CAAAG,MAAA,GAAAA,MAAA;AAAA,IAKNC,cAAc,0BAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAdA,cAAc;EAAA,OAAdA,cAAc;AAAA;AAAAJ,OAAA,CAAAI,cAAA,GAAAA,cAAA;AAAA,IAMdC,KAAK,0BAALA,KAAK;EAALA,KAAK;EAALA,KAAK;EAAA,OAALA,KAAK;AAAA;AAAAL,OAAA,CAAAK,KAAA,GAAAA,KAAA;AAAA,IAKLC,KAAK,0BAALA,KAAK;EAALA,KAAK;EAALA,KAAK;EAAA,OAALA,KAAK;AAAA;AAAAN,OAAA,CAAAM,KAAA,GAAAA,KAAA;AAAA,IAKLC,SAAS,0BAATA,SAAS;EAATA,SAAS;EAATA,SAAS;EAAA,OAATA,SAAS;AAAA;AAAAP,OAAA,CAAAO,SAAA,GAAAA,SAAA"}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
var _config = require("./config");
|
|
7
|
+
Object.keys(_config).forEach(function (key) {
|
|
8
|
+
if (key === "default" || key === "__esModule") return;
|
|
9
|
+
if (key in exports && exports[key] === _config[key]) return;
|
|
10
|
+
Object.defineProperty(exports, key, {
|
|
11
|
+
enumerable: true,
|
|
12
|
+
get: function () {
|
|
13
|
+
return _config[key];
|
|
14
|
+
}
|
|
15
|
+
});
|
|
16
|
+
});
|
|
17
|
+
var _enums = require("./enums");
|
|
18
|
+
Object.keys(_enums).forEach(function (key) {
|
|
19
|
+
if (key === "default" || key === "__esModule") return;
|
|
20
|
+
if (key in exports && exports[key] === _enums[key]) return;
|
|
21
|
+
Object.defineProperty(exports, key, {
|
|
22
|
+
enumerable: true,
|
|
23
|
+
get: function () {
|
|
24
|
+
return _enums[key];
|
|
25
|
+
}
|
|
26
|
+
});
|
|
27
|
+
});
|
|
28
|
+
var _types = require("./types");
|
|
29
|
+
Object.keys(_types).forEach(function (key) {
|
|
30
|
+
if (key === "default" || key === "__esModule") return;
|
|
31
|
+
if (key in exports && exports[key] === _types[key]) return;
|
|
32
|
+
Object.defineProperty(exports, key, {
|
|
33
|
+
enumerable: true,
|
|
34
|
+
get: function () {
|
|
35
|
+
return _types[key];
|
|
36
|
+
}
|
|
37
|
+
});
|
|
38
|
+
});
|
|
39
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_config","require","Object","keys","forEach","key","exports","defineProperty","enumerable","get","_enums","_types"],"sourceRoot":"../../../src","sources":["models/index.ts"],"mappings":";;;;;AAAA,IAAAA,OAAA,GAAAC,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAH,OAAA,EAAAI,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAL,OAAA,CAAAK,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAT,OAAA,CAAAK,GAAA;IAAA;EAAA;AAAA;AACA,IAAAK,MAAA,GAAAT,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAO,MAAA,EAAAN,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAK,MAAA,CAAAL,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAC,MAAA,CAAAL,GAAA;IAAA;EAAA;AAAA;AACA,IAAAM,MAAA,GAAAV,OAAA;AAAAC,MAAA,CAAAC,IAAA,CAAAQ,MAAA,EAAAP,OAAA,WAAAC,GAAA;EAAA,IAAAA,GAAA,kBAAAA,GAAA;EAAA,IAAAA,GAAA,IAAAC,OAAA,IAAAA,OAAA,CAAAD,GAAA,MAAAM,MAAA,CAAAN,GAAA;EAAAH,MAAA,CAAAK,cAAA,CAAAD,OAAA,EAAAD,GAAA;IAAAG,UAAA;IAAAC,GAAA,WAAAA,CAAA;MAAA,OAAAE,MAAA,CAAAN,GAAA;IAAA;EAAA;AAAA"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["models/types.ts"],"mappings":""}
|
|
@@ -0,0 +1,123 @@
|
|
|
1
|
+
import { requireNativeComponent, UIManager, Platform, findNodeHandle, LayoutAnimation, View } from 'react-native';
|
|
2
|
+
import React, { useImperativeHandle, forwardRef, useRef, useCallback, useState } from 'react';
|
|
3
|
+
export * from './models';
|
|
4
|
+
const LINKING_ERROR = `The package 'card-react-native' doesn't seem to be linked. Make sure: \n\n` + Platform.select({
|
|
5
|
+
ios: "- You have run 'pod install'\n",
|
|
6
|
+
default: ''
|
|
7
|
+
}) + '- You rebuilt the app after installing the package\n' + '- You are not using Expo Go\n';
|
|
8
|
+
const ComponentName = 'CardSdkReactNativeView';
|
|
9
|
+
export const CardSdkReactNativeView = UIManager.getViewManagerConfig(ComponentName) != null ? requireNativeComponent(ComponentName) : () => {
|
|
10
|
+
throw new Error(LINKING_ERROR);
|
|
11
|
+
};
|
|
12
|
+
// UIManager.setLayoutAnimationEnabledExperimental &&
|
|
13
|
+
// UIManager.setLayoutAnimationEnabledExperimental(true);
|
|
14
|
+
function TapCardView(_ref, ref) {
|
|
15
|
+
let {
|
|
16
|
+
style,
|
|
17
|
+
config,
|
|
18
|
+
onSuccess,
|
|
19
|
+
onReady,
|
|
20
|
+
onFocus,
|
|
21
|
+
onHeightChange,
|
|
22
|
+
onBinIdentification,
|
|
23
|
+
onInvalidInput,
|
|
24
|
+
onError
|
|
25
|
+
} = _ref;
|
|
26
|
+
const viewRef = useRef();
|
|
27
|
+
const [height, setHeight] = useState(style.height ?? 95);
|
|
28
|
+
const [addFlex, setAddFlex] = useState(false);
|
|
29
|
+
const generateToken = useCallback(() => {
|
|
30
|
+
return UIManager.dispatchViewManagerCommand(
|
|
31
|
+
// @ts-ignore
|
|
32
|
+
findNodeHandle(viewRef.current),
|
|
33
|
+
// @ts-ignore
|
|
34
|
+
UIManager.CardSdkReactNativeView.Commands.generateToken, []);
|
|
35
|
+
}, []);
|
|
36
|
+
useImperativeHandle(ref, () => ({
|
|
37
|
+
generateToken: () => {
|
|
38
|
+
generateToken();
|
|
39
|
+
}
|
|
40
|
+
}), [generateToken]);
|
|
41
|
+
const handleOnSuccess = _ref2 => {
|
|
42
|
+
let {
|
|
43
|
+
nativeEvent: {
|
|
44
|
+
data
|
|
45
|
+
}
|
|
46
|
+
} = _ref2;
|
|
47
|
+
onSuccess(data);
|
|
48
|
+
};
|
|
49
|
+
const handleOnHeightChange = _ref3 => {
|
|
50
|
+
let {
|
|
51
|
+
nativeEvent: {
|
|
52
|
+
data
|
|
53
|
+
}
|
|
54
|
+
} = _ref3;
|
|
55
|
+
LayoutAnimation.spring();
|
|
56
|
+
setHeight(data);
|
|
57
|
+
onHeightChange(data);
|
|
58
|
+
};
|
|
59
|
+
const handleOnReady = () => {
|
|
60
|
+
onReady();
|
|
61
|
+
setAddFlex(true);
|
|
62
|
+
setTimeout(() => {
|
|
63
|
+
setAddFlex(false);
|
|
64
|
+
}, 1);
|
|
65
|
+
};
|
|
66
|
+
const handleOnFocus = () => {
|
|
67
|
+
onFocus();
|
|
68
|
+
};
|
|
69
|
+
const handleOnBinIdentification = _ref4 => {
|
|
70
|
+
let {
|
|
71
|
+
nativeEvent: {
|
|
72
|
+
data
|
|
73
|
+
}
|
|
74
|
+
} = _ref4;
|
|
75
|
+
onBinIdentification(data);
|
|
76
|
+
};
|
|
77
|
+
const handleOnInvalidInput = _ref5 => {
|
|
78
|
+
let {
|
|
79
|
+
nativeEvent: {
|
|
80
|
+
data
|
|
81
|
+
}
|
|
82
|
+
} = _ref5;
|
|
83
|
+
onInvalidInput(data);
|
|
84
|
+
};
|
|
85
|
+
const handleOnError = _ref6 => {
|
|
86
|
+
let {
|
|
87
|
+
nativeEvent: {
|
|
88
|
+
data
|
|
89
|
+
}
|
|
90
|
+
} = _ref6;
|
|
91
|
+
onError(data);
|
|
92
|
+
};
|
|
93
|
+
return /*#__PURE__*/React.createElement(View, {
|
|
94
|
+
style: {
|
|
95
|
+
...style,
|
|
96
|
+
height: height,
|
|
97
|
+
flex: addFlex ? 0.1 : 0
|
|
98
|
+
}
|
|
99
|
+
}, /*#__PURE__*/React.createElement(CardSdkReactNativeView, {
|
|
100
|
+
style: {
|
|
101
|
+
...style,
|
|
102
|
+
flex: 1,
|
|
103
|
+
height: height
|
|
104
|
+
},
|
|
105
|
+
config: {
|
|
106
|
+
...config,
|
|
107
|
+
features: {
|
|
108
|
+
...config.features,
|
|
109
|
+
nfc: Platform.OS === 'ios' ? false : config.features.nfc
|
|
110
|
+
}
|
|
111
|
+
},
|
|
112
|
+
ref: viewRef,
|
|
113
|
+
onSuccess: handleOnSuccess,
|
|
114
|
+
onReadyCallback: handleOnReady,
|
|
115
|
+
onFocusCallback: handleOnFocus,
|
|
116
|
+
onHeightChange: handleOnHeightChange,
|
|
117
|
+
onBinIdentification: handleOnBinIdentification,
|
|
118
|
+
onInvalidInput: handleOnInvalidInput,
|
|
119
|
+
onError: handleOnError
|
|
120
|
+
}));
|
|
121
|
+
}
|
|
122
|
+
export default /*#__PURE__*/forwardRef(TapCardView);
|
|
123
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["requireNativeComponent","UIManager","Platform","findNodeHandle","LayoutAnimation","View","React","useImperativeHandle","forwardRef","useRef","useCallback","useState","LINKING_ERROR","select","ios","default","ComponentName","CardSdkReactNativeView","getViewManagerConfig","Error","TapCardView","_ref","ref","style","config","onSuccess","onReady","onFocus","onHeightChange","onBinIdentification","onInvalidInput","onError","viewRef","height","setHeight","addFlex","setAddFlex","generateToken","dispatchViewManagerCommand","current","Commands","handleOnSuccess","_ref2","nativeEvent","data","handleOnHeightChange","_ref3","spring","handleOnReady","setTimeout","handleOnFocus","handleOnBinIdentification","_ref4","handleOnInvalidInput","_ref5","handleOnError","_ref6","createElement","flex","features","nfc","OS","onReadyCallback","onFocusCallback"],"sourceRoot":"../../src","sources":["index.tsx"],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":[],"sourceRoot":"../../../src","sources":["models/config.ts"],"mappings":""}
|