@tonder.io/rn-sdk 0.1.0-beta.DEV1355.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.
Files changed (780) hide show
  1. package/LICENSE +20 -0
  2. package/README.md +33 -0
  3. package/lib/commonjs/core/3DSHandler.js +108 -0
  4. package/lib/commonjs/core/3DSHandler.js.map +1 -0
  5. package/lib/commonjs/core/BaseCheckout/index.js +337 -0
  6. package/lib/commonjs/core/BaseCheckout/index.js.map +1 -0
  7. package/lib/commonjs/core/BaseEnrollment/index.js +86 -0
  8. package/lib/commonjs/core/BaseEnrollment/index.js.map +1 -0
  9. package/lib/commonjs/core/BaseSDK/index.js +75 -0
  10. package/lib/commonjs/core/BaseSDK/index.js.map +1 -0
  11. package/lib/commonjs/core/EnrollmentContainer/index.js +87 -0
  12. package/lib/commonjs/core/EnrollmentContainer/index.js.map +1 -0
  13. package/lib/commonjs/core/PaymentInlineContainer/index.js +111 -0
  14. package/lib/commonjs/core/PaymentInlineContainer/index.js.map +1 -0
  15. package/lib/commonjs/core/PaymentLiteContainer/index.js +158 -0
  16. package/lib/commonjs/core/PaymentLiteContainer/index.js.map +1 -0
  17. package/lib/commonjs/core/Tonder/index.js +134 -0
  18. package/lib/commonjs/core/Tonder/index.js.map +1 -0
  19. package/lib/commonjs/hooks/useTonder/index-old.js +37 -0
  20. package/lib/commonjs/hooks/useTonder/index-old.js.map +1 -0
  21. package/lib/commonjs/hooks/useTonder/index.js +16 -0
  22. package/lib/commonjs/hooks/useTonder/index.js.map +1 -0
  23. package/lib/commonjs/index.js +121 -0
  24. package/lib/commonjs/index.js.map +1 -0
  25. package/lib/commonjs/infrastructure/HttpClient.js +108 -0
  26. package/lib/commonjs/infrastructure/HttpClient.js.map +1 -0
  27. package/lib/commonjs/infrastructure/ServiceManager.js +32 -0
  28. package/lib/commonjs/infrastructure/ServiceManager.js.map +1 -0
  29. package/lib/commonjs/infrastructure/index.js +28 -0
  30. package/lib/commonjs/infrastructure/index.js.map +1 -0
  31. package/lib/commonjs/services/BusinessService.js +36 -0
  32. package/lib/commonjs/services/BusinessService.js.map +1 -0
  33. package/lib/commonjs/services/CardService.js +89 -0
  34. package/lib/commonjs/services/CardService.js.map +1 -0
  35. package/lib/commonjs/services/CheckoutService.js +121 -0
  36. package/lib/commonjs/services/CheckoutService.js.map +1 -0
  37. package/lib/commonjs/services/CustomerService.js +62 -0
  38. package/lib/commonjs/services/CustomerService.js.map +1 -0
  39. package/lib/commonjs/services/MercadoPagoService.js +27 -0
  40. package/lib/commonjs/services/MercadoPagoService.js.map +1 -0
  41. package/lib/commonjs/services/OpenPayService.js +25 -0
  42. package/lib/commonjs/services/OpenPayService.js.map +1 -0
  43. package/lib/commonjs/services/PaymentMethodService.js +37 -0
  44. package/lib/commonjs/services/PaymentMethodService.js.map +1 -0
  45. package/lib/commonjs/services/SkyflowService.js +53 -0
  46. package/lib/commonjs/services/SkyflowService.js.map +1 -0
  47. package/lib/commonjs/services/StorageService.js +49 -0
  48. package/lib/commonjs/services/StorageService.js.map +1 -0
  49. package/lib/commonjs/services/TokenService.js +46 -0
  50. package/lib/commonjs/services/TokenService.js.map +1 -0
  51. package/lib/commonjs/services/TransactionService.js +26 -0
  52. package/lib/commonjs/services/TransactionService.js.map +1 -0
  53. package/lib/commonjs/services/index.js +127 -0
  54. package/lib/commonjs/services/index.js.map +1 -0
  55. package/lib/commonjs/shared/catalog/cardBrandCatalog.js +19 -0
  56. package/lib/commonjs/shared/catalog/cardBrandCatalog.js.map +1 -0
  57. package/lib/commonjs/shared/catalog/paymentMethodsCatalog.js +252 -0
  58. package/lib/commonjs/shared/catalog/paymentMethodsCatalog.js.map +1 -0
  59. package/lib/commonjs/shared/constants/environments.js +13 -0
  60. package/lib/commonjs/shared/constants/environments.js.map +1 -0
  61. package/lib/commonjs/shared/constants/index.js +28 -0
  62. package/lib/commonjs/shared/constants/index.js.map +1 -0
  63. package/lib/commonjs/shared/constants/messages.js +101 -0
  64. package/lib/commonjs/shared/constants/messages.js.map +1 -0
  65. package/lib/commonjs/shared/constants/paymentMethods.js +68 -0
  66. package/lib/commonjs/shared/constants/paymentMethods.js.map +1 -0
  67. package/lib/commonjs/shared/constants/skyflow.js +47 -0
  68. package/lib/commonjs/shared/constants/skyflow.js.map +1 -0
  69. package/lib/commonjs/shared/enum/ErrorKeyEnum.js +55 -0
  70. package/lib/commonjs/shared/enum/ErrorKeyEnum.js.map +1 -0
  71. package/lib/commonjs/shared/enum/index.js +17 -0
  72. package/lib/commonjs/shared/enum/index.js.map +1 -0
  73. package/lib/commonjs/shared/index.js +39 -0
  74. package/lib/commonjs/shared/index.js.map +1 -0
  75. package/lib/commonjs/shared/utils/common.js +47 -0
  76. package/lib/commonjs/shared/utils/common.js.map +1 -0
  77. package/lib/commonjs/shared/utils/errors.js +21 -0
  78. package/lib/commonjs/shared/utils/errors.js.map +1 -0
  79. package/lib/commonjs/shared/utils/numberUtils.js +17 -0
  80. package/lib/commonjs/shared/utils/numberUtils.js.map +1 -0
  81. package/lib/commonjs/shared/utils/paymentMethodUtils.js +21 -0
  82. package/lib/commonjs/shared/utils/paymentMethodUtils.js.map +1 -0
  83. package/lib/commonjs/shared/utils/stringUtils.js +11 -0
  84. package/lib/commonjs/shared/utils/stringUtils.js.map +1 -0
  85. package/lib/commonjs/shared/utils/styleUtils.js +21 -0
  86. package/lib/commonjs/shared/utils/styleUtils.js.map +1 -0
  87. package/lib/commonjs/types/base.js +14 -0
  88. package/lib/commonjs/types/base.js.map +1 -0
  89. package/lib/commonjs/types/baseCheckout.js +6 -0
  90. package/lib/commonjs/types/baseCheckout.js.map +1 -0
  91. package/lib/commonjs/types/baseEnrollment.js +6 -0
  92. package/lib/commonjs/types/baseEnrollment.js.map +1 -0
  93. package/lib/commonjs/types/baseSDK.js +6 -0
  94. package/lib/commonjs/types/baseSDK.js.map +1 -0
  95. package/lib/commonjs/types/business.js +2 -0
  96. package/lib/commonjs/types/business.js.map +1 -0
  97. package/lib/commonjs/types/card.js +2 -0
  98. package/lib/commonjs/types/card.js.map +1 -0
  99. package/lib/commonjs/types/checkout.js +6 -0
  100. package/lib/commonjs/types/checkout.js.map +1 -0
  101. package/lib/commonjs/types/common.js +6 -0
  102. package/lib/commonjs/types/common.js.map +1 -0
  103. package/lib/commonjs/types/customer.js +2 -0
  104. package/lib/commonjs/types/customer.js.map +1 -0
  105. package/lib/commonjs/types/enrollment.js +6 -0
  106. package/lib/commonjs/types/enrollment.js.map +1 -0
  107. package/lib/commonjs/types/index.js +204 -0
  108. package/lib/commonjs/types/index.js.map +1 -0
  109. package/lib/commonjs/types/inlineCheckout.js +6 -0
  110. package/lib/commonjs/types/inlineCheckout.js.map +1 -0
  111. package/lib/commonjs/types/input.js +6 -0
  112. package/lib/commonjs/types/input.js.map +1 -0
  113. package/lib/commonjs/types/liteCheckout.js +6 -0
  114. package/lib/commonjs/types/liteCheckout.js.map +1 -0
  115. package/lib/commonjs/types/openpay-react-native.d.js +2 -0
  116. package/lib/commonjs/types/openpay-react-native.d.js.map +1 -0
  117. package/lib/commonjs/types/openpay.js +2 -0
  118. package/lib/commonjs/types/openpay.js.map +1 -0
  119. package/lib/commonjs/types/payment.js +6 -0
  120. package/lib/commonjs/types/payment.js.map +1 -0
  121. package/lib/commonjs/types/secure.js +2 -0
  122. package/lib/commonjs/types/secure.js.map +1 -0
  123. package/lib/commonjs/types/skyflow-react-native.d.js +2 -0
  124. package/lib/commonjs/types/skyflow-react-native.d.js.map +1 -0
  125. package/lib/commonjs/types/threeDSHandler.js +6 -0
  126. package/lib/commonjs/types/threeDSHandler.js.map +1 -0
  127. package/lib/commonjs/types/transaction.js +2 -0
  128. package/lib/commonjs/types/transaction.js.map +1 -0
  129. package/lib/commonjs/ui/components/Button/ProcessButton.js +50 -0
  130. package/lib/commonjs/ui/components/Button/ProcessButton.js.map +1 -0
  131. package/lib/commonjs/ui/components/CardForm/index.js +80 -0
  132. package/lib/commonjs/ui/components/CardForm/index.js.map +1 -0
  133. package/lib/commonjs/ui/components/Checkbox/Checkbox.js +62 -0
  134. package/lib/commonjs/ui/components/Checkbox/Checkbox.js.map +1 -0
  135. package/lib/commonjs/ui/components/Input/CardCVVInput.js +83 -0
  136. package/lib/commonjs/ui/components/Input/CardCVVInput.js.map +1 -0
  137. package/lib/commonjs/ui/components/Input/CardExpirationDateInput.js +91 -0
  138. package/lib/commonjs/ui/components/Input/CardExpirationDateInput.js.map +1 -0
  139. package/lib/commonjs/ui/components/Input/CardExpirationMonthInput.js +84 -0
  140. package/lib/commonjs/ui/components/Input/CardExpirationMonthInput.js.map +1 -0
  141. package/lib/commonjs/ui/components/Input/CardExpirationYearInput.js +84 -0
  142. package/lib/commonjs/ui/components/Input/CardExpirationYearInput.js.map +1 -0
  143. package/lib/commonjs/ui/components/Input/CardHolderInput.js +83 -0
  144. package/lib/commonjs/ui/components/Input/CardHolderInput.js.map +1 -0
  145. package/lib/commonjs/ui/components/Input/CardNumberInput.js +83 -0
  146. package/lib/commonjs/ui/components/Input/CardNumberInput.js.map +1 -0
  147. package/lib/commonjs/ui/components/PaymentMethodsList/index.js +105 -0
  148. package/lib/commonjs/ui/components/PaymentMethodsList/index.js.map +1 -0
  149. package/lib/commonjs/ui/components/RadioButton/index.js +57 -0
  150. package/lib/commonjs/ui/components/RadioButton/index.js.map +1 -0
  151. package/lib/commonjs/ui/components/SavedCardsList/index.js +126 -0
  152. package/lib/commonjs/ui/components/SavedCardsList/index.js.map +1 -0
  153. package/lib/commonjs/ui/components/Skeleton/CardFormSkeleton.js +102 -0
  154. package/lib/commonjs/ui/components/Skeleton/CardFormSkeleton.js.map +1 -0
  155. package/lib/commonjs/ui/components/WebView/ThreeDSWebView.js +105 -0
  156. package/lib/commonjs/ui/components/WebView/ThreeDSWebView.js.map +1 -0
  157. package/lib/commonjs/ui/features/TonderEnrollment/index.js +119 -0
  158. package/lib/commonjs/ui/features/TonderEnrollment/index.js.map +1 -0
  159. package/lib/commonjs/ui/features/TonderPayment/index.js +195 -0
  160. package/lib/commonjs/ui/features/TonderPayment/index.js.map +1 -0
  161. package/lib/commonjs/ui/providers/InnerProvider/index.js +25 -0
  162. package/lib/commonjs/ui/providers/InnerProvider/index.js.map +1 -0
  163. package/lib/commonjs/ui/providers/SkyflowContainerWrapper/index.js +31 -0
  164. package/lib/commonjs/ui/providers/SkyflowContainerWrapper/index.js.map +1 -0
  165. package/lib/commonjs/ui/providers/TonderProvider/context.js +16 -0
  166. package/lib/commonjs/ui/providers/TonderProvider/context.js.map +1 -0
  167. package/lib/commonjs/ui/providers/TonderProvider/hook.js +15 -0
  168. package/lib/commonjs/ui/providers/TonderProvider/hook.js.map +1 -0
  169. package/lib/commonjs/ui/providers/TonderProvider/index.js +96 -0
  170. package/lib/commonjs/ui/providers/TonderProvider/index.js.map +1 -0
  171. package/lib/commonjs/ui/providers/TonderProvider/uiWrapper.js +61 -0
  172. package/lib/commonjs/ui/providers/TonderProvider/uiWrapper.js.map +1 -0
  173. package/lib/commonjs/ui/styles/payment.js +27 -0
  174. package/lib/commonjs/ui/styles/payment.js.map +1 -0
  175. package/lib/commonjs/ui/styles/skyflow.js +54 -0
  176. package/lib/commonjs/ui/styles/skyflow.js.map +1 -0
  177. package/lib/module/core/3DSHandler.js +102 -0
  178. package/lib/module/core/3DSHandler.js.map +1 -0
  179. package/lib/module/core/BaseCheckout/index.js +332 -0
  180. package/lib/module/core/BaseCheckout/index.js.map +1 -0
  181. package/lib/module/core/BaseEnrollment/index.js +81 -0
  182. package/lib/module/core/BaseEnrollment/index.js.map +1 -0
  183. package/lib/module/core/BaseSDK/index.js +70 -0
  184. package/lib/module/core/BaseSDK/index.js.map +1 -0
  185. package/lib/module/core/EnrollmentContainer/index.js +81 -0
  186. package/lib/module/core/EnrollmentContainer/index.js.map +1 -0
  187. package/lib/module/core/PaymentInlineContainer/index.js +106 -0
  188. package/lib/module/core/PaymentInlineContainer/index.js.map +1 -0
  189. package/lib/module/core/PaymentLiteContainer/index.js +153 -0
  190. package/lib/module/core/PaymentLiteContainer/index.js.map +1 -0
  191. package/lib/module/core/Tonder/index.js +129 -0
  192. package/lib/module/core/Tonder/index.js.map +1 -0
  193. package/lib/module/hooks/useTonder/index-old.js +37 -0
  194. package/lib/module/hooks/useTonder/index-old.js.map +1 -0
  195. package/lib/module/hooks/useTonder/index.js +11 -0
  196. package/lib/module/hooks/useTonder/index.js.map +1 -0
  197. package/lib/module/index.js +14 -0
  198. package/lib/module/index.js.map +1 -0
  199. package/lib/module/infrastructure/HttpClient.js +102 -0
  200. package/lib/module/infrastructure/HttpClient.js.map +1 -0
  201. package/lib/module/infrastructure/ServiceManager.js +27 -0
  202. package/lib/module/infrastructure/ServiceManager.js.map +1 -0
  203. package/lib/module/infrastructure/index.js +5 -0
  204. package/lib/module/infrastructure/index.js.map +1 -0
  205. package/lib/module/services/BusinessService.js +30 -0
  206. package/lib/module/services/BusinessService.js.map +1 -0
  207. package/lib/module/services/CardService.js +83 -0
  208. package/lib/module/services/CardService.js.map +1 -0
  209. package/lib/module/services/CheckoutService.js +115 -0
  210. package/lib/module/services/CheckoutService.js.map +1 -0
  211. package/lib/module/services/CustomerService.js +56 -0
  212. package/lib/module/services/CustomerService.js.map +1 -0
  213. package/lib/module/services/MercadoPagoService.js +22 -0
  214. package/lib/module/services/MercadoPagoService.js.map +1 -0
  215. package/lib/module/services/OpenPayService.js +20 -0
  216. package/lib/module/services/OpenPayService.js.map +1 -0
  217. package/lib/module/services/PaymentMethodService.js +31 -0
  218. package/lib/module/services/PaymentMethodService.js.map +1 -0
  219. package/lib/module/services/SkyflowService.js +47 -0
  220. package/lib/module/services/SkyflowService.js.map +1 -0
  221. package/lib/module/services/StorageService.js +43 -0
  222. package/lib/module/services/StorageService.js.map +1 -0
  223. package/lib/module/services/TokenService.js +40 -0
  224. package/lib/module/services/TokenService.js.map +1 -0
  225. package/lib/module/services/TransactionService.js +20 -0
  226. package/lib/module/services/TransactionService.js.map +1 -0
  227. package/lib/module/services/index.js +15 -0
  228. package/lib/module/services/index.js.map +1 -0
  229. package/lib/module/shared/catalog/cardBrandCatalog.js +14 -0
  230. package/lib/module/shared/catalog/cardBrandCatalog.js.map +1 -0
  231. package/lib/module/shared/catalog/paymentMethodsCatalog.js +247 -0
  232. package/lib/module/shared/catalog/paymentMethodsCatalog.js.map +1 -0
  233. package/lib/module/shared/constants/environments.js +10 -0
  234. package/lib/module/shared/constants/environments.js.map +1 -0
  235. package/lib/module/shared/constants/index.js +5 -0
  236. package/lib/module/shared/constants/index.js.map +1 -0
  237. package/lib/module/shared/constants/messages.js +97 -0
  238. package/lib/module/shared/constants/messages.js.map +1 -0
  239. package/lib/module/shared/constants/paymentMethods.js +65 -0
  240. package/lib/module/shared/constants/paymentMethods.js.map +1 -0
  241. package/lib/module/shared/constants/skyflow.js +43 -0
  242. package/lib/module/shared/constants/skyflow.js.map +1 -0
  243. package/lib/module/shared/enum/ErrorKeyEnum.js +51 -0
  244. package/lib/module/shared/enum/ErrorKeyEnum.js.map +1 -0
  245. package/lib/module/shared/enum/index.js +4 -0
  246. package/lib/module/shared/enum/index.js.map +1 -0
  247. package/lib/module/shared/index.js +6 -0
  248. package/lib/module/shared/index.js.map +1 -0
  249. package/lib/module/shared/utils/common.js +41 -0
  250. package/lib/module/shared/utils/common.js.map +1 -0
  251. package/lib/module/shared/utils/errors.js +17 -0
  252. package/lib/module/shared/utils/errors.js.map +1 -0
  253. package/lib/module/shared/utils/numberUtils.js +13 -0
  254. package/lib/module/shared/utils/numberUtils.js.map +1 -0
  255. package/lib/module/shared/utils/paymentMethodUtils.js +16 -0
  256. package/lib/module/shared/utils/paymentMethodUtils.js.map +1 -0
  257. package/lib/module/shared/utils/stringUtils.js +6 -0
  258. package/lib/module/shared/utils/stringUtils.js.map +1 -0
  259. package/lib/module/shared/utils/styleUtils.js +17 -0
  260. package/lib/module/shared/utils/styleUtils.js.map +1 -0
  261. package/lib/module/types/base.js +13 -0
  262. package/lib/module/types/base.js.map +1 -0
  263. package/lib/module/types/baseCheckout.js +4 -0
  264. package/lib/module/types/baseCheckout.js.map +1 -0
  265. package/lib/module/types/baseEnrollment.js +4 -0
  266. package/lib/module/types/baseEnrollment.js.map +1 -0
  267. package/lib/module/types/baseSDK.js +4 -0
  268. package/lib/module/types/baseSDK.js.map +1 -0
  269. package/lib/module/types/business.js +2 -0
  270. package/lib/module/types/business.js.map +1 -0
  271. package/lib/module/types/card.js +2 -0
  272. package/lib/module/types/card.js.map +1 -0
  273. package/lib/module/types/checkout.js +4 -0
  274. package/lib/module/types/checkout.js.map +1 -0
  275. package/lib/module/types/common.js +4 -0
  276. package/lib/module/types/common.js.map +1 -0
  277. package/lib/module/types/customer.js +2 -0
  278. package/lib/module/types/customer.js.map +1 -0
  279. package/lib/module/types/enrollment.js +4 -0
  280. package/lib/module/types/enrollment.js.map +1 -0
  281. package/lib/module/types/index.js +21 -0
  282. package/lib/module/types/index.js.map +1 -0
  283. package/lib/module/types/inlineCheckout.js +4 -0
  284. package/lib/module/types/inlineCheckout.js.map +1 -0
  285. package/lib/module/types/input.js +4 -0
  286. package/lib/module/types/input.js.map +1 -0
  287. package/lib/module/types/liteCheckout.js +4 -0
  288. package/lib/module/types/liteCheckout.js.map +1 -0
  289. package/lib/module/types/openpay-react-native.d.js +2 -0
  290. package/lib/module/types/openpay-react-native.d.js.map +1 -0
  291. package/lib/module/types/openpay.js +2 -0
  292. package/lib/module/types/openpay.js.map +1 -0
  293. package/lib/module/types/payment.js +4 -0
  294. package/lib/module/types/payment.js.map +1 -0
  295. package/lib/module/types/secure.js +2 -0
  296. package/lib/module/types/secure.js.map +1 -0
  297. package/lib/module/types/skyflow-react-native.d.js +2 -0
  298. package/lib/module/types/skyflow-react-native.d.js.map +1 -0
  299. package/lib/module/types/threeDSHandler.js +4 -0
  300. package/lib/module/types/threeDSHandler.js.map +1 -0
  301. package/lib/module/types/transaction.js +2 -0
  302. package/lib/module/types/transaction.js.map +1 -0
  303. package/lib/module/ui/components/Button/ProcessButton.js +44 -0
  304. package/lib/module/ui/components/Button/ProcessButton.js.map +1 -0
  305. package/lib/module/ui/components/CardForm/index.js +74 -0
  306. package/lib/module/ui/components/CardForm/index.js.map +1 -0
  307. package/lib/module/ui/components/Checkbox/Checkbox.js +56 -0
  308. package/lib/module/ui/components/Checkbox/Checkbox.js.map +1 -0
  309. package/lib/module/ui/components/Input/CardCVVInput.js +75 -0
  310. package/lib/module/ui/components/Input/CardCVVInput.js.map +1 -0
  311. package/lib/module/ui/components/Input/CardExpirationDateInput.js +84 -0
  312. package/lib/module/ui/components/Input/CardExpirationDateInput.js.map +1 -0
  313. package/lib/module/ui/components/Input/CardExpirationMonthInput.js +77 -0
  314. package/lib/module/ui/components/Input/CardExpirationMonthInput.js.map +1 -0
  315. package/lib/module/ui/components/Input/CardExpirationYearInput.js +76 -0
  316. package/lib/module/ui/components/Input/CardExpirationYearInput.js.map +1 -0
  317. package/lib/module/ui/components/Input/CardHolderInput.js +75 -0
  318. package/lib/module/ui/components/Input/CardHolderInput.js.map +1 -0
  319. package/lib/module/ui/components/Input/CardNumberInput.js +75 -0
  320. package/lib/module/ui/components/Input/CardNumberInput.js.map +1 -0
  321. package/lib/module/ui/components/PaymentMethodsList/index.js +100 -0
  322. package/lib/module/ui/components/PaymentMethodsList/index.js.map +1 -0
  323. package/lib/module/ui/components/RadioButton/index.js +50 -0
  324. package/lib/module/ui/components/RadioButton/index.js.map +1 -0
  325. package/lib/module/ui/components/SavedCardsList/index.js +121 -0
  326. package/lib/module/ui/components/SavedCardsList/index.js.map +1 -0
  327. package/lib/module/ui/components/Skeleton/CardFormSkeleton.js +97 -0
  328. package/lib/module/ui/components/Skeleton/CardFormSkeleton.js.map +1 -0
  329. package/lib/module/ui/components/WebView/ThreeDSWebView.js +96 -0
  330. package/lib/module/ui/components/WebView/ThreeDSWebView.js.map +1 -0
  331. package/lib/module/ui/features/TonderEnrollment/index.js +114 -0
  332. package/lib/module/ui/features/TonderEnrollment/index.js.map +1 -0
  333. package/lib/module/ui/features/TonderPayment/index.js +188 -0
  334. package/lib/module/ui/features/TonderPayment/index.js.map +1 -0
  335. package/lib/module/ui/providers/InnerProvider/index.js +19 -0
  336. package/lib/module/ui/providers/InnerProvider/index.js.map +1 -0
  337. package/lib/module/ui/providers/SkyflowContainerWrapper/index.js +24 -0
  338. package/lib/module/ui/providers/SkyflowContainerWrapper/index.js.map +1 -0
  339. package/lib/module/ui/providers/TonderProvider/context.js +10 -0
  340. package/lib/module/ui/providers/TonderProvider/context.js.map +1 -0
  341. package/lib/module/ui/providers/TonderProvider/hook.js +10 -0
  342. package/lib/module/ui/providers/TonderProvider/hook.js.map +1 -0
  343. package/lib/module/ui/providers/TonderProvider/index.js +88 -0
  344. package/lib/module/ui/providers/TonderProvider/index.js.map +1 -0
  345. package/lib/module/ui/providers/TonderProvider/uiWrapper.js +57 -0
  346. package/lib/module/ui/providers/TonderProvider/uiWrapper.js.map +1 -0
  347. package/lib/module/ui/styles/payment.js +25 -0
  348. package/lib/module/ui/styles/payment.js.map +1 -0
  349. package/lib/module/ui/styles/skyflow.js +52 -0
  350. package/lib/module/ui/styles/skyflow.js.map +1 -0
  351. package/lib/typescript/commonjs/package.json +1 -0
  352. package/lib/typescript/commonjs/src/core/3DSHandler.d.ts +23 -0
  353. package/lib/typescript/commonjs/src/core/3DSHandler.d.ts.map +1 -0
  354. package/lib/typescript/commonjs/src/core/BaseCheckout/index.d.ts +28 -0
  355. package/lib/typescript/commonjs/src/core/BaseCheckout/index.d.ts.map +1 -0
  356. package/lib/typescript/commonjs/src/core/BaseEnrollment/index.d.ts +16 -0
  357. package/lib/typescript/commonjs/src/core/BaseEnrollment/index.d.ts.map +1 -0
  358. package/lib/typescript/commonjs/src/core/BaseSDK/index.d.ts +19 -0
  359. package/lib/typescript/commonjs/src/core/BaseSDK/index.d.ts.map +1 -0
  360. package/lib/typescript/commonjs/src/core/EnrollmentContainer/index.d.ts +15 -0
  361. package/lib/typescript/commonjs/src/core/EnrollmentContainer/index.d.ts.map +1 -0
  362. package/lib/typescript/commonjs/src/core/PaymentInlineContainer/index.d.ts +17 -0
  363. package/lib/typescript/commonjs/src/core/PaymentInlineContainer/index.d.ts.map +1 -0
  364. package/lib/typescript/commonjs/src/core/PaymentLiteContainer/index.d.ts +21 -0
  365. package/lib/typescript/commonjs/src/core/PaymentLiteContainer/index.d.ts.map +1 -0
  366. package/lib/typescript/commonjs/src/core/Tonder/index.d.ts +33 -0
  367. package/lib/typescript/commonjs/src/core/Tonder/index.d.ts.map +1 -0
  368. package/lib/typescript/commonjs/src/hooks/useTonder/index-old.d.ts +1 -0
  369. package/lib/typescript/commonjs/src/hooks/useTonder/index-old.d.ts.map +1 -0
  370. package/lib/typescript/commonjs/src/hooks/useTonder/index.d.ts +4 -0
  371. package/lib/typescript/commonjs/src/hooks/useTonder/index.d.ts.map +1 -0
  372. package/lib/typescript/commonjs/src/index.d.ts +12 -0
  373. package/lib/typescript/commonjs/src/index.d.ts.map +1 -0
  374. package/lib/typescript/commonjs/src/infrastructure/HttpClient.d.ts +20 -0
  375. package/lib/typescript/commonjs/src/infrastructure/HttpClient.d.ts.map +1 -0
  376. package/lib/typescript/commonjs/src/infrastructure/ServiceManager.d.ts +19 -0
  377. package/lib/typescript/commonjs/src/infrastructure/ServiceManager.d.ts.map +1 -0
  378. package/lib/typescript/commonjs/src/infrastructure/index.d.ts +3 -0
  379. package/lib/typescript/commonjs/src/infrastructure/index.d.ts.map +1 -0
  380. package/lib/typescript/commonjs/src/services/BusinessService.d.ts +15 -0
  381. package/lib/typescript/commonjs/src/services/BusinessService.d.ts.map +1 -0
  382. package/lib/typescript/commonjs/src/services/CardService.d.ts +28 -0
  383. package/lib/typescript/commonjs/src/services/CardService.d.ts.map +1 -0
  384. package/lib/typescript/commonjs/src/services/CheckoutService.d.ts +37 -0
  385. package/lib/typescript/commonjs/src/services/CheckoutService.d.ts.map +1 -0
  386. package/lib/typescript/commonjs/src/services/CustomerService.d.ts +24 -0
  387. package/lib/typescript/commonjs/src/services/CustomerService.d.ts.map +1 -0
  388. package/lib/typescript/commonjs/src/services/MercadoPagoService.d.ts +4 -0
  389. package/lib/typescript/commonjs/src/services/MercadoPagoService.d.ts.map +1 -0
  390. package/lib/typescript/commonjs/src/services/OpenPayService.d.ts +4 -0
  391. package/lib/typescript/commonjs/src/services/OpenPayService.d.ts.map +1 -0
  392. package/lib/typescript/commonjs/src/services/PaymentMethodService.d.ts +15 -0
  393. package/lib/typescript/commonjs/src/services/PaymentMethodService.d.ts.map +1 -0
  394. package/lib/typescript/commonjs/src/services/SkyflowService.d.ts +15 -0
  395. package/lib/typescript/commonjs/src/services/SkyflowService.d.ts.map +1 -0
  396. package/lib/typescript/commonjs/src/services/StorageService.d.ts +7 -0
  397. package/lib/typescript/commonjs/src/services/StorageService.d.ts.map +1 -0
  398. package/lib/typescript/commonjs/src/services/TokenService.d.ts +16 -0
  399. package/lib/typescript/commonjs/src/services/TokenService.d.ts.map +1 -0
  400. package/lib/typescript/commonjs/src/services/TransactionService.d.ts +8 -0
  401. package/lib/typescript/commonjs/src/services/TransactionService.d.ts.map +1 -0
  402. package/lib/typescript/commonjs/src/services/index.d.ts +13 -0
  403. package/lib/typescript/commonjs/src/services/index.d.ts.map +1 -0
  404. package/lib/typescript/commonjs/src/shared/catalog/cardBrandCatalog.d.ts +2 -0
  405. package/lib/typescript/commonjs/src/shared/catalog/cardBrandCatalog.d.ts.map +1 -0
  406. package/lib/typescript/commonjs/src/shared/catalog/paymentMethodsCatalog.d.ts +5 -0
  407. package/lib/typescript/commonjs/src/shared/catalog/paymentMethodsCatalog.d.ts.map +1 -0
  408. package/lib/typescript/commonjs/src/shared/constants/environments.d.ts +8 -0
  409. package/lib/typescript/commonjs/src/shared/constants/environments.d.ts.map +1 -0
  410. package/lib/typescript/commonjs/src/shared/constants/index.d.ts +3 -0
  411. package/lib/typescript/commonjs/src/shared/constants/index.d.ts.map +1 -0
  412. package/lib/typescript/commonjs/src/shared/constants/messages.d.ts +94 -0
  413. package/lib/typescript/commonjs/src/shared/constants/messages.d.ts.map +1 -0
  414. package/lib/typescript/commonjs/src/shared/constants/paymentMethods.d.ts +63 -0
  415. package/lib/typescript/commonjs/src/shared/constants/paymentMethods.d.ts.map +1 -0
  416. package/lib/typescript/commonjs/src/shared/constants/skyflow.d.ts +38 -0
  417. package/lib/typescript/commonjs/src/shared/constants/skyflow.d.ts.map +1 -0
  418. package/lib/typescript/commonjs/src/shared/enum/ErrorKeyEnum.d.ts +48 -0
  419. package/lib/typescript/commonjs/src/shared/enum/ErrorKeyEnum.d.ts.map +1 -0
  420. package/lib/typescript/commonjs/src/shared/enum/index.d.ts +2 -0
  421. package/lib/typescript/commonjs/src/shared/enum/index.d.ts.map +1 -0
  422. package/lib/typescript/commonjs/src/shared/index.d.ts +4 -0
  423. package/lib/typescript/commonjs/src/shared/index.d.ts.map +1 -0
  424. package/lib/typescript/commonjs/src/shared/utils/common.d.ts +9 -0
  425. package/lib/typescript/commonjs/src/shared/utils/common.d.ts.map +1 -0
  426. package/lib/typescript/commonjs/src/shared/utils/errors.d.ts +16 -0
  427. package/lib/typescript/commonjs/src/shared/utils/errors.d.ts.map +1 -0
  428. package/lib/typescript/commonjs/src/shared/utils/numberUtils.d.ts +2 -0
  429. package/lib/typescript/commonjs/src/shared/utils/numberUtils.d.ts.map +1 -0
  430. package/lib/typescript/commonjs/src/shared/utils/paymentMethodUtils.d.ts +2 -0
  431. package/lib/typescript/commonjs/src/shared/utils/paymentMethodUtils.d.ts.map +1 -0
  432. package/lib/typescript/commonjs/src/shared/utils/stringUtils.d.ts +2 -0
  433. package/lib/typescript/commonjs/src/shared/utils/stringUtils.d.ts.map +1 -0
  434. package/lib/typescript/commonjs/src/shared/utils/styleUtils.d.ts +8 -0
  435. package/lib/typescript/commonjs/src/shared/utils/styleUtils.d.ts.map +1 -0
  436. package/lib/typescript/commonjs/src/types/base.d.ts +48 -0
  437. package/lib/typescript/commonjs/src/types/base.d.ts.map +1 -0
  438. package/lib/typescript/commonjs/src/types/baseCheckout.d.ts +29 -0
  439. package/lib/typescript/commonjs/src/types/baseCheckout.d.ts.map +1 -0
  440. package/lib/typescript/commonjs/src/types/baseEnrollment.d.ts +11 -0
  441. package/lib/typescript/commonjs/src/types/baseEnrollment.d.ts.map +1 -0
  442. package/lib/typescript/commonjs/src/types/baseSDK.d.ts +10 -0
  443. package/lib/typescript/commonjs/src/types/baseSDK.d.ts.map +1 -0
  444. package/lib/typescript/commonjs/src/types/business.d.ts +36 -0
  445. package/lib/typescript/commonjs/src/types/business.d.ts.map +1 -0
  446. package/lib/typescript/commonjs/src/types/card.d.ts +33 -0
  447. package/lib/typescript/commonjs/src/types/card.d.ts.map +1 -0
  448. package/lib/typescript/commonjs/src/types/checkout.d.ts +150 -0
  449. package/lib/typescript/commonjs/src/types/checkout.d.ts.map +1 -0
  450. package/lib/typescript/commonjs/src/types/common.d.ts +60 -0
  451. package/lib/typescript/commonjs/src/types/common.d.ts.map +1 -0
  452. package/lib/typescript/commonjs/src/types/customer.d.ts +28 -0
  453. package/lib/typescript/commonjs/src/types/customer.d.ts.map +1 -0
  454. package/lib/typescript/commonjs/src/types/enrollment.d.ts +66 -0
  455. package/lib/typescript/commonjs/src/types/enrollment.d.ts.map +1 -0
  456. package/lib/typescript/commonjs/src/types/index.d.ts +19 -0
  457. package/lib/typescript/commonjs/src/types/index.d.ts.map +1 -0
  458. package/lib/typescript/commonjs/src/types/inlineCheckout.d.ts +78 -0
  459. package/lib/typescript/commonjs/src/types/inlineCheckout.d.ts.map +1 -0
  460. package/lib/typescript/commonjs/src/types/input.d.ts +13 -0
  461. package/lib/typescript/commonjs/src/types/input.d.ts.map +1 -0
  462. package/lib/typescript/commonjs/src/types/liteCheckout.d.ts +90 -0
  463. package/lib/typescript/commonjs/src/types/liteCheckout.d.ts.map +1 -0
  464. package/lib/typescript/commonjs/src/types/openpay.d.ts +11 -0
  465. package/lib/typescript/commonjs/src/types/openpay.d.ts.map +1 -0
  466. package/lib/typescript/commonjs/src/types/payment.d.ts +59 -0
  467. package/lib/typescript/commonjs/src/types/payment.d.ts.map +1 -0
  468. package/lib/typescript/commonjs/src/types/secure.d.ts +4 -0
  469. package/lib/typescript/commonjs/src/types/secure.d.ts.map +1 -0
  470. package/lib/typescript/commonjs/src/types/threeDSHandler.d.ts +7 -0
  471. package/lib/typescript/commonjs/src/types/threeDSHandler.d.ts.map +1 -0
  472. package/lib/typescript/commonjs/src/types/transaction.d.ts +103 -0
  473. package/lib/typescript/commonjs/src/types/transaction.d.ts.map +1 -0
  474. package/lib/typescript/commonjs/src/ui/components/Button/ProcessButton.d.ts +11 -0
  475. package/lib/typescript/commonjs/src/ui/components/Button/ProcessButton.d.ts.map +1 -0
  476. package/lib/typescript/commonjs/src/ui/components/CardForm/index.d.ts +13 -0
  477. package/lib/typescript/commonjs/src/ui/components/CardForm/index.d.ts.map +1 -0
  478. package/lib/typescript/commonjs/src/ui/components/Checkbox/Checkbox.d.ts +9 -0
  479. package/lib/typescript/commonjs/src/ui/components/Checkbox/Checkbox.d.ts.map +1 -0
  480. package/lib/typescript/commonjs/src/ui/components/Input/CardCVVInput.d.ts +4 -0
  481. package/lib/typescript/commonjs/src/ui/components/Input/CardCVVInput.d.ts.map +1 -0
  482. package/lib/typescript/commonjs/src/ui/components/Input/CardExpirationDateInput.d.ts +10 -0
  483. package/lib/typescript/commonjs/src/ui/components/Input/CardExpirationDateInput.d.ts.map +1 -0
  484. package/lib/typescript/commonjs/src/ui/components/Input/CardExpirationMonthInput.d.ts +4 -0
  485. package/lib/typescript/commonjs/src/ui/components/Input/CardExpirationMonthInput.d.ts.map +1 -0
  486. package/lib/typescript/commonjs/src/ui/components/Input/CardExpirationYearInput.d.ts +4 -0
  487. package/lib/typescript/commonjs/src/ui/components/Input/CardExpirationYearInput.d.ts.map +1 -0
  488. package/lib/typescript/commonjs/src/ui/components/Input/CardHolderInput.d.ts +4 -0
  489. package/lib/typescript/commonjs/src/ui/components/Input/CardHolderInput.d.ts.map +1 -0
  490. package/lib/typescript/commonjs/src/ui/components/Input/CardNumberInput.d.ts +4 -0
  491. package/lib/typescript/commonjs/src/ui/components/Input/CardNumberInput.d.ts.map +1 -0
  492. package/lib/typescript/commonjs/src/ui/components/PaymentMethodsList/index.d.ts +11 -0
  493. package/lib/typescript/commonjs/src/ui/components/PaymentMethodsList/index.d.ts.map +1 -0
  494. package/lib/typescript/commonjs/src/ui/components/RadioButton/index.d.ts +14 -0
  495. package/lib/typescript/commonjs/src/ui/components/RadioButton/index.d.ts.map +1 -0
  496. package/lib/typescript/commonjs/src/ui/components/SavedCardsList/index.d.ts +14 -0
  497. package/lib/typescript/commonjs/src/ui/components/SavedCardsList/index.d.ts.map +1 -0
  498. package/lib/typescript/commonjs/src/ui/components/Skeleton/CardFormSkeleton.d.ts +5 -0
  499. package/lib/typescript/commonjs/src/ui/components/Skeleton/CardFormSkeleton.d.ts.map +1 -0
  500. package/lib/typescript/commonjs/src/ui/components/WebView/ThreeDSWebView.d.ts +9 -0
  501. package/lib/typescript/commonjs/src/ui/components/WebView/ThreeDSWebView.d.ts.map +1 -0
  502. package/lib/typescript/commonjs/src/ui/features/TonderEnrollment/index.d.ts +6 -0
  503. package/lib/typescript/commonjs/src/ui/features/TonderEnrollment/index.d.ts.map +1 -0
  504. package/lib/typescript/commonjs/src/ui/features/TonderPayment/index.d.ts +6 -0
  505. package/lib/typescript/commonjs/src/ui/features/TonderPayment/index.d.ts.map +1 -0
  506. package/lib/typescript/commonjs/src/ui/providers/InnerProvider/index.d.ts +10 -0
  507. package/lib/typescript/commonjs/src/ui/providers/InnerProvider/index.d.ts.map +1 -0
  508. package/lib/typescript/commonjs/src/ui/providers/SkyflowContainerWrapper/index.d.ts +10 -0
  509. package/lib/typescript/commonjs/src/ui/providers/SkyflowContainerWrapper/index.d.ts.map +1 -0
  510. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/context.d.ts +5 -0
  511. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/context.d.ts.map +1 -0
  512. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/hook.d.ts +4 -0
  513. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/hook.d.ts.map +1 -0
  514. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/index.d.ts +8 -0
  515. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/index.d.ts.map +1 -0
  516. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/uiWrapper.d.ts +10 -0
  517. package/lib/typescript/commonjs/src/ui/providers/TonderProvider/uiWrapper.d.ts.map +1 -0
  518. package/lib/typescript/commonjs/src/ui/styles/payment.d.ts +20 -0
  519. package/lib/typescript/commonjs/src/ui/styles/payment.d.ts.map +1 -0
  520. package/lib/typescript/commonjs/src/ui/styles/skyflow.d.ts +44 -0
  521. package/lib/typescript/commonjs/src/ui/styles/skyflow.d.ts.map +1 -0
  522. package/lib/typescript/module/package.json +1 -0
  523. package/lib/typescript/module/src/core/3DSHandler.d.ts +23 -0
  524. package/lib/typescript/module/src/core/3DSHandler.d.ts.map +1 -0
  525. package/lib/typescript/module/src/core/BaseCheckout/index.d.ts +28 -0
  526. package/lib/typescript/module/src/core/BaseCheckout/index.d.ts.map +1 -0
  527. package/lib/typescript/module/src/core/BaseEnrollment/index.d.ts +16 -0
  528. package/lib/typescript/module/src/core/BaseEnrollment/index.d.ts.map +1 -0
  529. package/lib/typescript/module/src/core/BaseSDK/index.d.ts +19 -0
  530. package/lib/typescript/module/src/core/BaseSDK/index.d.ts.map +1 -0
  531. package/lib/typescript/module/src/core/EnrollmentContainer/index.d.ts +15 -0
  532. package/lib/typescript/module/src/core/EnrollmentContainer/index.d.ts.map +1 -0
  533. package/lib/typescript/module/src/core/PaymentInlineContainer/index.d.ts +17 -0
  534. package/lib/typescript/module/src/core/PaymentInlineContainer/index.d.ts.map +1 -0
  535. package/lib/typescript/module/src/core/PaymentLiteContainer/index.d.ts +21 -0
  536. package/lib/typescript/module/src/core/PaymentLiteContainer/index.d.ts.map +1 -0
  537. package/lib/typescript/module/src/core/Tonder/index.d.ts +33 -0
  538. package/lib/typescript/module/src/core/Tonder/index.d.ts.map +1 -0
  539. package/lib/typescript/module/src/hooks/useTonder/index-old.d.ts +1 -0
  540. package/lib/typescript/module/src/hooks/useTonder/index-old.d.ts.map +1 -0
  541. package/lib/typescript/module/src/hooks/useTonder/index.d.ts +4 -0
  542. package/lib/typescript/module/src/hooks/useTonder/index.d.ts.map +1 -0
  543. package/lib/typescript/module/src/index.d.ts +12 -0
  544. package/lib/typescript/module/src/index.d.ts.map +1 -0
  545. package/lib/typescript/module/src/infrastructure/HttpClient.d.ts +20 -0
  546. package/lib/typescript/module/src/infrastructure/HttpClient.d.ts.map +1 -0
  547. package/lib/typescript/module/src/infrastructure/ServiceManager.d.ts +19 -0
  548. package/lib/typescript/module/src/infrastructure/ServiceManager.d.ts.map +1 -0
  549. package/lib/typescript/module/src/infrastructure/index.d.ts +3 -0
  550. package/lib/typescript/module/src/infrastructure/index.d.ts.map +1 -0
  551. package/lib/typescript/module/src/services/BusinessService.d.ts +15 -0
  552. package/lib/typescript/module/src/services/BusinessService.d.ts.map +1 -0
  553. package/lib/typescript/module/src/services/CardService.d.ts +28 -0
  554. package/lib/typescript/module/src/services/CardService.d.ts.map +1 -0
  555. package/lib/typescript/module/src/services/CheckoutService.d.ts +37 -0
  556. package/lib/typescript/module/src/services/CheckoutService.d.ts.map +1 -0
  557. package/lib/typescript/module/src/services/CustomerService.d.ts +24 -0
  558. package/lib/typescript/module/src/services/CustomerService.d.ts.map +1 -0
  559. package/lib/typescript/module/src/services/MercadoPagoService.d.ts +4 -0
  560. package/lib/typescript/module/src/services/MercadoPagoService.d.ts.map +1 -0
  561. package/lib/typescript/module/src/services/OpenPayService.d.ts +4 -0
  562. package/lib/typescript/module/src/services/OpenPayService.d.ts.map +1 -0
  563. package/lib/typescript/module/src/services/PaymentMethodService.d.ts +15 -0
  564. package/lib/typescript/module/src/services/PaymentMethodService.d.ts.map +1 -0
  565. package/lib/typescript/module/src/services/SkyflowService.d.ts +15 -0
  566. package/lib/typescript/module/src/services/SkyflowService.d.ts.map +1 -0
  567. package/lib/typescript/module/src/services/StorageService.d.ts +7 -0
  568. package/lib/typescript/module/src/services/StorageService.d.ts.map +1 -0
  569. package/lib/typescript/module/src/services/TokenService.d.ts +16 -0
  570. package/lib/typescript/module/src/services/TokenService.d.ts.map +1 -0
  571. package/lib/typescript/module/src/services/TransactionService.d.ts +8 -0
  572. package/lib/typescript/module/src/services/TransactionService.d.ts.map +1 -0
  573. package/lib/typescript/module/src/services/index.d.ts +13 -0
  574. package/lib/typescript/module/src/services/index.d.ts.map +1 -0
  575. package/lib/typescript/module/src/shared/catalog/cardBrandCatalog.d.ts +2 -0
  576. package/lib/typescript/module/src/shared/catalog/cardBrandCatalog.d.ts.map +1 -0
  577. package/lib/typescript/module/src/shared/catalog/paymentMethodsCatalog.d.ts +5 -0
  578. package/lib/typescript/module/src/shared/catalog/paymentMethodsCatalog.d.ts.map +1 -0
  579. package/lib/typescript/module/src/shared/constants/environments.d.ts +8 -0
  580. package/lib/typescript/module/src/shared/constants/environments.d.ts.map +1 -0
  581. package/lib/typescript/module/src/shared/constants/index.d.ts +3 -0
  582. package/lib/typescript/module/src/shared/constants/index.d.ts.map +1 -0
  583. package/lib/typescript/module/src/shared/constants/messages.d.ts +94 -0
  584. package/lib/typescript/module/src/shared/constants/messages.d.ts.map +1 -0
  585. package/lib/typescript/module/src/shared/constants/paymentMethods.d.ts +63 -0
  586. package/lib/typescript/module/src/shared/constants/paymentMethods.d.ts.map +1 -0
  587. package/lib/typescript/module/src/shared/constants/skyflow.d.ts +38 -0
  588. package/lib/typescript/module/src/shared/constants/skyflow.d.ts.map +1 -0
  589. package/lib/typescript/module/src/shared/enum/ErrorKeyEnum.d.ts +48 -0
  590. package/lib/typescript/module/src/shared/enum/ErrorKeyEnum.d.ts.map +1 -0
  591. package/lib/typescript/module/src/shared/enum/index.d.ts +2 -0
  592. package/lib/typescript/module/src/shared/enum/index.d.ts.map +1 -0
  593. package/lib/typescript/module/src/shared/index.d.ts +4 -0
  594. package/lib/typescript/module/src/shared/index.d.ts.map +1 -0
  595. package/lib/typescript/module/src/shared/utils/common.d.ts +9 -0
  596. package/lib/typescript/module/src/shared/utils/common.d.ts.map +1 -0
  597. package/lib/typescript/module/src/shared/utils/errors.d.ts +16 -0
  598. package/lib/typescript/module/src/shared/utils/errors.d.ts.map +1 -0
  599. package/lib/typescript/module/src/shared/utils/numberUtils.d.ts +2 -0
  600. package/lib/typescript/module/src/shared/utils/numberUtils.d.ts.map +1 -0
  601. package/lib/typescript/module/src/shared/utils/paymentMethodUtils.d.ts +2 -0
  602. package/lib/typescript/module/src/shared/utils/paymentMethodUtils.d.ts.map +1 -0
  603. package/lib/typescript/module/src/shared/utils/stringUtils.d.ts +2 -0
  604. package/lib/typescript/module/src/shared/utils/stringUtils.d.ts.map +1 -0
  605. package/lib/typescript/module/src/shared/utils/styleUtils.d.ts +8 -0
  606. package/lib/typescript/module/src/shared/utils/styleUtils.d.ts.map +1 -0
  607. package/lib/typescript/module/src/types/base.d.ts +48 -0
  608. package/lib/typescript/module/src/types/base.d.ts.map +1 -0
  609. package/lib/typescript/module/src/types/baseCheckout.d.ts +29 -0
  610. package/lib/typescript/module/src/types/baseCheckout.d.ts.map +1 -0
  611. package/lib/typescript/module/src/types/baseEnrollment.d.ts +11 -0
  612. package/lib/typescript/module/src/types/baseEnrollment.d.ts.map +1 -0
  613. package/lib/typescript/module/src/types/baseSDK.d.ts +10 -0
  614. package/lib/typescript/module/src/types/baseSDK.d.ts.map +1 -0
  615. package/lib/typescript/module/src/types/business.d.ts +36 -0
  616. package/lib/typescript/module/src/types/business.d.ts.map +1 -0
  617. package/lib/typescript/module/src/types/card.d.ts +33 -0
  618. package/lib/typescript/module/src/types/card.d.ts.map +1 -0
  619. package/lib/typescript/module/src/types/checkout.d.ts +150 -0
  620. package/lib/typescript/module/src/types/checkout.d.ts.map +1 -0
  621. package/lib/typescript/module/src/types/common.d.ts +60 -0
  622. package/lib/typescript/module/src/types/common.d.ts.map +1 -0
  623. package/lib/typescript/module/src/types/customer.d.ts +28 -0
  624. package/lib/typescript/module/src/types/customer.d.ts.map +1 -0
  625. package/lib/typescript/module/src/types/enrollment.d.ts +66 -0
  626. package/lib/typescript/module/src/types/enrollment.d.ts.map +1 -0
  627. package/lib/typescript/module/src/types/index.d.ts +19 -0
  628. package/lib/typescript/module/src/types/index.d.ts.map +1 -0
  629. package/lib/typescript/module/src/types/inlineCheckout.d.ts +78 -0
  630. package/lib/typescript/module/src/types/inlineCheckout.d.ts.map +1 -0
  631. package/lib/typescript/module/src/types/input.d.ts +13 -0
  632. package/lib/typescript/module/src/types/input.d.ts.map +1 -0
  633. package/lib/typescript/module/src/types/liteCheckout.d.ts +90 -0
  634. package/lib/typescript/module/src/types/liteCheckout.d.ts.map +1 -0
  635. package/lib/typescript/module/src/types/openpay.d.ts +11 -0
  636. package/lib/typescript/module/src/types/openpay.d.ts.map +1 -0
  637. package/lib/typescript/module/src/types/payment.d.ts +59 -0
  638. package/lib/typescript/module/src/types/payment.d.ts.map +1 -0
  639. package/lib/typescript/module/src/types/secure.d.ts +4 -0
  640. package/lib/typescript/module/src/types/secure.d.ts.map +1 -0
  641. package/lib/typescript/module/src/types/threeDSHandler.d.ts +7 -0
  642. package/lib/typescript/module/src/types/threeDSHandler.d.ts.map +1 -0
  643. package/lib/typescript/module/src/types/transaction.d.ts +103 -0
  644. package/lib/typescript/module/src/types/transaction.d.ts.map +1 -0
  645. package/lib/typescript/module/src/ui/components/Button/ProcessButton.d.ts +11 -0
  646. package/lib/typescript/module/src/ui/components/Button/ProcessButton.d.ts.map +1 -0
  647. package/lib/typescript/module/src/ui/components/CardForm/index.d.ts +13 -0
  648. package/lib/typescript/module/src/ui/components/CardForm/index.d.ts.map +1 -0
  649. package/lib/typescript/module/src/ui/components/Checkbox/Checkbox.d.ts +9 -0
  650. package/lib/typescript/module/src/ui/components/Checkbox/Checkbox.d.ts.map +1 -0
  651. package/lib/typescript/module/src/ui/components/Input/CardCVVInput.d.ts +4 -0
  652. package/lib/typescript/module/src/ui/components/Input/CardCVVInput.d.ts.map +1 -0
  653. package/lib/typescript/module/src/ui/components/Input/CardExpirationDateInput.d.ts +10 -0
  654. package/lib/typescript/module/src/ui/components/Input/CardExpirationDateInput.d.ts.map +1 -0
  655. package/lib/typescript/module/src/ui/components/Input/CardExpirationMonthInput.d.ts +4 -0
  656. package/lib/typescript/module/src/ui/components/Input/CardExpirationMonthInput.d.ts.map +1 -0
  657. package/lib/typescript/module/src/ui/components/Input/CardExpirationYearInput.d.ts +4 -0
  658. package/lib/typescript/module/src/ui/components/Input/CardExpirationYearInput.d.ts.map +1 -0
  659. package/lib/typescript/module/src/ui/components/Input/CardHolderInput.d.ts +4 -0
  660. package/lib/typescript/module/src/ui/components/Input/CardHolderInput.d.ts.map +1 -0
  661. package/lib/typescript/module/src/ui/components/Input/CardNumberInput.d.ts +4 -0
  662. package/lib/typescript/module/src/ui/components/Input/CardNumberInput.d.ts.map +1 -0
  663. package/lib/typescript/module/src/ui/components/PaymentMethodsList/index.d.ts +11 -0
  664. package/lib/typescript/module/src/ui/components/PaymentMethodsList/index.d.ts.map +1 -0
  665. package/lib/typescript/module/src/ui/components/RadioButton/index.d.ts +14 -0
  666. package/lib/typescript/module/src/ui/components/RadioButton/index.d.ts.map +1 -0
  667. package/lib/typescript/module/src/ui/components/SavedCardsList/index.d.ts +14 -0
  668. package/lib/typescript/module/src/ui/components/SavedCardsList/index.d.ts.map +1 -0
  669. package/lib/typescript/module/src/ui/components/Skeleton/CardFormSkeleton.d.ts +5 -0
  670. package/lib/typescript/module/src/ui/components/Skeleton/CardFormSkeleton.d.ts.map +1 -0
  671. package/lib/typescript/module/src/ui/components/WebView/ThreeDSWebView.d.ts +9 -0
  672. package/lib/typescript/module/src/ui/components/WebView/ThreeDSWebView.d.ts.map +1 -0
  673. package/lib/typescript/module/src/ui/features/TonderEnrollment/index.d.ts +6 -0
  674. package/lib/typescript/module/src/ui/features/TonderEnrollment/index.d.ts.map +1 -0
  675. package/lib/typescript/module/src/ui/features/TonderPayment/index.d.ts +6 -0
  676. package/lib/typescript/module/src/ui/features/TonderPayment/index.d.ts.map +1 -0
  677. package/lib/typescript/module/src/ui/providers/InnerProvider/index.d.ts +10 -0
  678. package/lib/typescript/module/src/ui/providers/InnerProvider/index.d.ts.map +1 -0
  679. package/lib/typescript/module/src/ui/providers/SkyflowContainerWrapper/index.d.ts +10 -0
  680. package/lib/typescript/module/src/ui/providers/SkyflowContainerWrapper/index.d.ts.map +1 -0
  681. package/lib/typescript/module/src/ui/providers/TonderProvider/context.d.ts +5 -0
  682. package/lib/typescript/module/src/ui/providers/TonderProvider/context.d.ts.map +1 -0
  683. package/lib/typescript/module/src/ui/providers/TonderProvider/hook.d.ts +4 -0
  684. package/lib/typescript/module/src/ui/providers/TonderProvider/hook.d.ts.map +1 -0
  685. package/lib/typescript/module/src/ui/providers/TonderProvider/index.d.ts +8 -0
  686. package/lib/typescript/module/src/ui/providers/TonderProvider/index.d.ts.map +1 -0
  687. package/lib/typescript/module/src/ui/providers/TonderProvider/uiWrapper.d.ts +10 -0
  688. package/lib/typescript/module/src/ui/providers/TonderProvider/uiWrapper.d.ts.map +1 -0
  689. package/lib/typescript/module/src/ui/styles/payment.d.ts +20 -0
  690. package/lib/typescript/module/src/ui/styles/payment.d.ts.map +1 -0
  691. package/lib/typescript/module/src/ui/styles/skyflow.d.ts +44 -0
  692. package/lib/typescript/module/src/ui/styles/skyflow.d.ts.map +1 -0
  693. package/package.json +206 -0
  694. package/src/core/3DSHandler.ts +140 -0
  695. package/src/core/BaseCheckout/index.ts +420 -0
  696. package/src/core/BaseEnrollment/index.ts +99 -0
  697. package/src/core/BaseSDK/index.ts +93 -0
  698. package/src/core/EnrollmentContainer/index.ts +105 -0
  699. package/src/core/PaymentInlineContainer/index.ts +127 -0
  700. package/src/core/PaymentLiteContainer/index.ts +201 -0
  701. package/src/core/Tonder/index.ts +147 -0
  702. package/src/hooks/useTonder/index-old.ts +35 -0
  703. package/src/hooks/useTonder/index.ts +10 -0
  704. package/src/index.tsx +11 -0
  705. package/src/infrastructure/HttpClient.ts +121 -0
  706. package/src/infrastructure/ServiceManager.ts +54 -0
  707. package/src/infrastructure/index.ts +2 -0
  708. package/src/services/BusinessService.ts +33 -0
  709. package/src/services/CardService.ts +118 -0
  710. package/src/services/CheckoutService.ts +135 -0
  711. package/src/services/CustomerService.ts +59 -0
  712. package/src/services/MercadoPagoService.ts +19 -0
  713. package/src/services/OpenPayService.ts +22 -0
  714. package/src/services/PaymentMethodService.ts +38 -0
  715. package/src/services/SkyflowService.ts +50 -0
  716. package/src/services/StorageService.ts +56 -0
  717. package/src/services/TokenService.ts +45 -0
  718. package/src/services/TransactionService.ts +23 -0
  719. package/src/services/index.ts +12 -0
  720. package/src/shared/catalog/cardBrandCatalog.ts +16 -0
  721. package/src/shared/catalog/paymentMethodsCatalog.ts +252 -0
  722. package/src/shared/constants/environments.ts +8 -0
  723. package/src/shared/constants/index.ts +2 -0
  724. package/src/shared/constants/messages.ts +119 -0
  725. package/src/shared/constants/paymentMethods.ts +63 -0
  726. package/src/shared/constants/skyflow.ts +60 -0
  727. package/src/shared/enum/ErrorKeyEnum.ts +47 -0
  728. package/src/shared/enum/index.ts +1 -0
  729. package/src/shared/index.ts +3 -0
  730. package/src/shared/utils/common.ts +46 -0
  731. package/src/shared/utils/errors.ts +25 -0
  732. package/src/shared/utils/numberUtils.ts +10 -0
  733. package/src/shared/utils/paymentMethodUtils.ts +17 -0
  734. package/src/shared/utils/stringUtils.ts +3 -0
  735. package/src/shared/utils/styleUtils.ts +11 -0
  736. package/src/types/base.ts +79 -0
  737. package/src/types/baseCheckout.ts +42 -0
  738. package/src/types/baseEnrollment.ts +17 -0
  739. package/src/types/baseSDK.ts +10 -0
  740. package/src/types/business.ts +34 -0
  741. package/src/types/card.ts +38 -0
  742. package/src/types/checkout.ts +157 -0
  743. package/src/types/common.ts +68 -0
  744. package/src/types/customer.ts +29 -0
  745. package/src/types/enrollment.ts +70 -0
  746. package/src/types/index.ts +18 -0
  747. package/src/types/inlineCheckout.ts +96 -0
  748. package/src/types/input.ts +17 -0
  749. package/src/types/liteCheckout.ts +108 -0
  750. package/src/types/openpay-react-native.d.ts +3 -0
  751. package/src/types/openpay.ts +8 -0
  752. package/src/types/payment.ts +66 -0
  753. package/src/types/secure.ts +3 -0
  754. package/src/types/skyflow-react-native.d.ts +81 -0
  755. package/src/types/threeDSHandler.ts +10 -0
  756. package/src/types/transaction.ts +106 -0
  757. package/src/ui/components/Button/ProcessButton.tsx +57 -0
  758. package/src/ui/components/CardForm/index.tsx +91 -0
  759. package/src/ui/components/Checkbox/Checkbox.tsx +56 -0
  760. package/src/ui/components/Input/CardCVVInput.tsx +91 -0
  761. package/src/ui/components/Input/CardExpirationDateInput.tsx +95 -0
  762. package/src/ui/components/Input/CardExpirationMonthInput.tsx +90 -0
  763. package/src/ui/components/Input/CardExpirationYearInput.tsx +91 -0
  764. package/src/ui/components/Input/CardHolderInput.tsx +91 -0
  765. package/src/ui/components/Input/CardNumberInput.tsx +90 -0
  766. package/src/ui/components/PaymentMethodsList/index.tsx +103 -0
  767. package/src/ui/components/RadioButton/index.tsx +57 -0
  768. package/src/ui/components/SavedCardsList/index.tsx +137 -0
  769. package/src/ui/components/Skeleton/CardFormSkeleton.tsx +109 -0
  770. package/src/ui/components/WebView/ThreeDSWebView.tsx +110 -0
  771. package/src/ui/features/TonderEnrollment/index.tsx +141 -0
  772. package/src/ui/features/TonderPayment/index.tsx +243 -0
  773. package/src/ui/providers/InnerProvider/index.tsx +24 -0
  774. package/src/ui/providers/SkyflowContainerWrapper/index.tsx +35 -0
  775. package/src/ui/providers/TonderProvider/context.tsx +11 -0
  776. package/src/ui/providers/TonderProvider/hook.ts +10 -0
  777. package/src/ui/providers/TonderProvider/index.tsx +110 -0
  778. package/src/ui/providers/TonderProvider/uiWrapper.ts +67 -0
  779. package/src/ui/styles/payment.ts +23 -0
  780. package/src/ui/styles/skyflow.ts +58 -0
@@ -0,0 +1,2 @@
1
+ "use strict";
2
+ //# sourceMappingURL=transaction.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":[],"sourceRoot":"../../../src","sources":["types/transaction.ts"],"mappings":"","ignoreList":[]}
@@ -0,0 +1,50 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.ProcessButton = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _styleUtils = require("@shared/utils/styleUtils");
10
+ var _jsxRuntime = require("react/jsx-runtime");
11
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
12
+ const ProcessButton = ({
13
+ text,
14
+ onPress,
15
+ isLoading,
16
+ style
17
+ }) => /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.TouchableOpacity, {
18
+ style: {
19
+ ...styles.payButton,
20
+ ...(style?.base || {})
21
+ },
22
+ onPress: onPress,
23
+ disabled: isLoading,
24
+ children: isLoading ? /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.ActivityIndicator, {
25
+ color: "#fff",
26
+ size: "small"
27
+ }) : /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
28
+ style: {
29
+ ...styles.payButtonText,
30
+ ...(0, _styleUtils.buildBaseStyleText)(style)
31
+ },
32
+ children: text
33
+ })
34
+ });
35
+ exports.ProcessButton = ProcessButton;
36
+ const styles = _reactNative.StyleSheet.create({
37
+ payButton: {
38
+ backgroundColor: '#000',
39
+ padding: 16,
40
+ borderRadius: 8,
41
+ alignItems: 'center',
42
+ margin: 20
43
+ },
44
+ payButtonText: {
45
+ color: '#fff',
46
+ fontSize: 14,
47
+ fontWeight: 'bold'
48
+ }
49
+ });
50
+ //# sourceMappingURL=ProcessButton.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_styleUtils","_jsxRuntime","e","__esModule","default","ProcessButton","text","onPress","isLoading","style","jsx","TouchableOpacity","styles","payButton","base","disabled","children","ActivityIndicator","color","size","Text","payButtonText","buildBaseStyleText","exports","StyleSheet","create","backgroundColor","padding","borderRadius","alignItems","margin","fontSize","fontWeight"],"sourceRoot":"../../../../../src","sources":["ui/components/Button/ProcessButton.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAOA,IAAAE,WAAA,GAAAF,OAAA;AAA8D,IAAAG,WAAA,GAAAH,OAAA;AAAA,SAAAD,uBAAAK,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AASvD,MAAMG,aAAuC,GAAGA,CAAC;EACtDC,IAAI;EACJC,OAAO;EACPC,SAAS;EACTC;AACF,CAAC,kBACC,IAAAR,WAAA,CAAAS,GAAA,EAACX,YAAA,CAAAY,gBAAgB;EACfF,KAAK,EAAE;IAAE,GAAGG,MAAM,CAACC,SAAS;IAAE,IAAIJ,KAAK,EAAEK,IAAI,IAAI,CAAC,CAAC;EAAE,CAAE;EACvDP,OAAO,EAAEA,OAAQ;EACjBQ,QAAQ,EAAEP,SAAU;EAAAQ,QAAA,EAEnBR,SAAS,gBACR,IAAAP,WAAA,CAAAS,GAAA,EAACX,YAAA,CAAAkB,iBAAiB;IAACC,KAAK,EAAC,MAAM;IAACC,IAAI,EAAC;EAAO,CAAE,CAAC,gBAE/C,IAAAlB,WAAA,CAAAS,GAAA,EAACX,YAAA,CAAAqB,IAAI;IACHX,KAAK,EAAE;MACL,GAAGG,MAAM,CAACS,aAAa;MACvB,GAAG,IAAAC,8BAAkB,EAACb,KAAK;IAC7B,CAAE;IAAAO,QAAA,EAEDV;EAAI,CACD;AACP,CACe,CACnB;AAACiB,OAAA,CAAAlB,aAAA,GAAAA,aAAA;AAEF,MAAMO,MAAM,GAAGY,uBAAU,CAACC,MAAM,CAAC;EAC/BZ,SAAS,EAAE;IACTa,eAAe,EAAE,MAAM;IACvBC,OAAO,EAAE,EAAE;IACXC,YAAY,EAAE,CAAC;IACfC,UAAU,EAAE,QAAQ;IACpBC,MAAM,EAAE;EACV,CAAC;EACDT,aAAa,EAAE;IACbH,KAAK,EAAE,MAAM;IACba,QAAQ,EAAE,EAAE;IACZC,UAAU,EAAE;EACd;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,80 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.NewCardForm = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _CardHolderInput = require("@components/Input/CardHolderInput");
10
+ var _CardNumberInput = require("@components/Input/CardNumberInput");
11
+ var _CardCVVInput = require("@components/Input/CardCVVInput");
12
+ var _Checkbox = require("@components/Checkbox/Checkbox");
13
+ var _CardExpirationDateInput = require("@components/Input/CardExpirationDateInput");
14
+ var _jsxRuntime = require("react/jsx-runtime");
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ const NewCardForm = ({
17
+ showSaveOption,
18
+ saveCard,
19
+ onSaveCardChange,
20
+ style,
21
+ labels,
22
+ placeholders
23
+ }) => {
24
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
25
+ style: {
26
+ ...styles.container,
27
+ ...(style?.base || {})
28
+ },
29
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_CardHolderInput.CardHolderInput, {
30
+ style: style,
31
+ label: labels?.name,
32
+ placeholder: placeholders?.name
33
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_CardNumberInput.CardNumberInput, {
34
+ style: style,
35
+ label: labels?.cardNumber,
36
+ placeholder: placeholders?.cardNumber
37
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
38
+ style: styles.expirationRow,
39
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_CardExpirationDateInput.CardExpirationDateInput, {
40
+ style: style,
41
+ label: labels?.expiryDate,
42
+ yearPlaceholder: placeholders?.expiryYear,
43
+ monthPlaceholder: placeholders?.expiryMonth
44
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_CardCVVInput.CardCVVInput, {
45
+ style: style,
46
+ label: labels?.cvv,
47
+ placeholder: placeholders?.cvv
48
+ })]
49
+ }), showSaveOption && /*#__PURE__*/(0, _jsxRuntime.jsx)(_Checkbox.CheckBox, {
50
+ checked: saveCard,
51
+ onValueChange: onSaveCardChange,
52
+ label: "Guardar tarjeta para futuros pagos"
53
+ })]
54
+ });
55
+ };
56
+ exports.NewCardForm = NewCardForm;
57
+ const styles = _reactNative.StyleSheet.create({
58
+ container: {
59
+ padding: 20,
60
+ paddingVertical: 10
61
+ },
62
+ expirationRow: {
63
+ flexDirection: 'row',
64
+ justifyContent: 'space-between',
65
+ gap: 10
66
+ },
67
+ groupContainer: {
68
+ flex: 2,
69
+ marginVertical: 5
70
+ },
71
+ row: {
72
+ flexDirection: 'row',
73
+ justifyContent: 'space-between',
74
+ gap: 10
75
+ },
76
+ inputContainerCustom: {
77
+ flex: 1
78
+ }
79
+ });
80
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_CardHolderInput","_CardNumberInput","_CardCVVInput","_Checkbox","_CardExpirationDateInput","_jsxRuntime","e","__esModule","default","NewCardForm","showSaveOption","saveCard","onSaveCardChange","style","labels","placeholders","jsxs","View","styles","container","base","children","jsx","CardHolderInput","label","name","placeholder","CardNumberInput","cardNumber","expirationRow","CardExpirationDateInput","expiryDate","yearPlaceholder","expiryYear","monthPlaceholder","expiryMonth","CardCVVInput","cvv","CheckBox","checked","onValueChange","exports","StyleSheet","create","padding","paddingVertical","flexDirection","justifyContent","gap","groupContainer","flex","marginVertical","row","inputContainerCustom"],"sourceRoot":"../../../../../src","sources":["ui/components/CardForm/index.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAOA,IAAAE,gBAAA,GAAAF,OAAA;AACA,IAAAG,gBAAA,GAAAH,OAAA;AACA,IAAAI,aAAA,GAAAJ,OAAA;AACA,IAAAK,SAAA,GAAAL,OAAA;AACA,IAAAM,wBAAA,GAAAN,OAAA;AAAoF,IAAAO,WAAA,GAAAP,OAAA;AAAA,SAAAD,uBAAAS,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAW7E,MAAMG,WAAuC,GAAGA,CAAC;EACtDC,cAAc;EACdC,QAAQ;EACRC,gBAAgB;EAChBC,KAAK;EACLC,MAAM;EACNC;AACF,CAAC,KAAK;EACJ,oBACE,IAAAV,WAAA,CAAAW,IAAA,EAACjB,YAAA,CAAAkB,IAAI;IAACJ,KAAK,EAAE;MAAE,GAAGK,MAAM,CAACC,SAAS;MAAE,IAAIN,KAAK,EAAEO,IAAI,IAAI,CAAC,CAAC;IAAE,CAAE;IAAAC,QAAA,gBAC3D,IAAAhB,WAAA,CAAAiB,GAAA,EAACtB,gBAAA,CAAAuB,eAAe;MACdV,KAAK,EAAEA,KAAM;MACbW,KAAK,EAAEV,MAAM,EAAEW,IAAK;MACpBC,WAAW,EAAEX,YAAY,EAAEU;IAAK,CACjC,CAAC,eACF,IAAApB,WAAA,CAAAiB,GAAA,EAACrB,gBAAA,CAAA0B,eAAe;MACdd,KAAK,EAAEA,KAAM;MACbW,KAAK,EAAEV,MAAM,EAAEc,UAAW;MAC1BF,WAAW,EAAEX,YAAY,EAAEa;IAAW,CACvC,CAAC,eACF,IAAAvB,WAAA,CAAAW,IAAA,EAACjB,YAAA,CAAAkB,IAAI;MAACJ,KAAK,EAAEK,MAAM,CAACW,aAAc;MAAAR,QAAA,gBAChC,IAAAhB,WAAA,CAAAiB,GAAA,EAAClB,wBAAA,CAAA0B,uBAAuB;QACtBjB,KAAK,EAAEA,KAAM;QACbW,KAAK,EAAEV,MAAM,EAAEiB,UAAW;QAC1BC,eAAe,EAAEjB,YAAY,EAAEkB,UAAW;QAC1CC,gBAAgB,EAAEnB,YAAY,EAAEoB;MAAY,CAC7C,CAAC,eACF,IAAA9B,WAAA,CAAAiB,GAAA,EAACpB,aAAA,CAAAkC,YAAY;QACXvB,KAAK,EAAEA,KAAM;QACbW,KAAK,EAAEV,MAAM,EAAEuB,GAAI;QACnBX,WAAW,EAAEX,YAAY,EAAEsB;MAAI,CAChC,CAAC;IAAA,CACE,CAAC,EAEN3B,cAAc,iBACb,IAAAL,WAAA,CAAAiB,GAAA,EAACnB,SAAA,CAAAmC,QAAQ;MACPC,OAAO,EAAE5B,QAAS;MAClB6B,aAAa,EAAE5B,gBAAiB;MAChCY,KAAK,EAAC;IAAoC,CAC3C,CACF;EAAA,CACG,CAAC;AAEX,CAAC;AAACiB,OAAA,CAAAhC,WAAA,GAAAA,WAAA;AAEF,MAAMS,MAAM,GAAGwB,uBAAU,CAACC,MAAM,CAAC;EAC/BxB,SAAS,EAAE;IACTyB,OAAO,EAAE,EAAE;IACXC,eAAe,EAAE;EACnB,CAAC;EACDhB,aAAa,EAAE;IACbiB,aAAa,EAAE,KAAK;IACpBC,cAAc,EAAE,eAAe;IAC/BC,GAAG,EAAE;EACP,CAAC;EACDC,cAAc,EAAE;IACdC,IAAI,EAAE,CAAC;IACPC,cAAc,EAAE;EAClB,CAAC;EACDC,GAAG,EAAE;IACHN,aAAa,EAAE,KAAK;IACpBC,cAAc,EAAE,eAAe;IAC/BC,GAAG,EAAE;EACP,CAAC;EACDK,oBAAoB,EAAE;IACpBH,IAAI,EAAE;EACR;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,62 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CheckBox = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _reactNative = require("react-native");
9
+ var _jsxRuntime = require("react/jsx-runtime");
10
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
11
+ const CheckBox = ({
12
+ checked,
13
+ onValueChange,
14
+ label
15
+ }) => /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.TouchableOpacity, {
16
+ style: styles.checkboxContainer,
17
+ onPress: () => onValueChange(!checked),
18
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.View, {
19
+ style: [styles.checkbox, checked && styles.checkboxChecked],
20
+ children: checked && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
21
+ style: styles.checkmark,
22
+ children: "\u2713"
23
+ })
24
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
25
+ style: styles.checkboxLabel,
26
+ children: label
27
+ })]
28
+ });
29
+ exports.CheckBox = CheckBox;
30
+ const styles = _reactNative.StyleSheet.create({
31
+ checkboxContainer: {
32
+ flexDirection: 'row',
33
+ alignItems: 'center',
34
+ marginTop: 10,
35
+ marginBottom: 20,
36
+ paddingHorizontal: 0
37
+ },
38
+ checkbox: {
39
+ width: 16,
40
+ height: 16,
41
+ borderWidth: 1,
42
+ borderColor: '#bababa',
43
+ borderRadius: 4,
44
+ justifyContent: 'center',
45
+ alignItems: 'center'
46
+ },
47
+ checkboxChecked: {
48
+ backgroundColor: '#3bc635',
49
+ borderColor: '#3bc635'
50
+ },
51
+ checkmark: {
52
+ color: '#fff',
53
+ fontSize: 10
54
+ },
55
+ checkboxLabel: {
56
+ marginLeft: 14,
57
+ fontSize: 12,
58
+ fontWeight: '500',
59
+ color: '#1D1D1D'
60
+ }
61
+ });
62
+ //# sourceMappingURL=Checkbox.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_reactNative","_jsxRuntime","e","__esModule","default","CheckBox","checked","onValueChange","label","jsxs","TouchableOpacity","style","styles","checkboxContainer","onPress","children","jsx","View","checkbox","checkboxChecked","Text","checkmark","checkboxLabel","exports","StyleSheet","create","flexDirection","alignItems","marginTop","marginBottom","paddingHorizontal","width","height","borderWidth","borderColor","borderRadius","justifyContent","backgroundColor","color","fontSize","marginLeft","fontWeight"],"sourceRoot":"../../../../../src","sources":["ui/components/Checkbox/Checkbox.tsx"],"mappings":";;;;;;AAAA,IAAAA,MAAA,GAAAC,sBAAA,CAAAC,OAAA;AACA,IAAAC,YAAA,GAAAD,OAAA;AAAwE,IAAAE,WAAA,GAAAF,OAAA;AAAA,SAAAD,uBAAAI,CAAA,WAAAA,CAAA,IAAAA,CAAA,CAAAC,UAAA,GAAAD,CAAA,KAAAE,OAAA,EAAAF,CAAA;AAQjE,MAAMG,QAAiC,GAAGA,CAAC;EAChDC,OAAO;EACPC,aAAa;EACbC;AACF,CAAC,kBACC,IAAAP,WAAA,CAAAQ,IAAA,EAACT,YAAA,CAAAU,gBAAgB;EACfC,KAAK,EAAEC,MAAM,CAACC,iBAAkB;EAChCC,OAAO,EAAEA,CAAA,KAAMP,aAAa,CAAC,CAACD,OAAO,CAAE;EAAAS,QAAA,gBAEvC,IAAAd,WAAA,CAAAe,GAAA,EAAChB,YAAA,CAAAiB,IAAI;IAACN,KAAK,EAAE,CAACC,MAAM,CAACM,QAAQ,EAAEZ,OAAO,IAAIM,MAAM,CAACO,eAAe,CAAE;IAAAJ,QAAA,EAC/DT,OAAO,iBAAI,IAAAL,WAAA,CAAAe,GAAA,EAAChB,YAAA,CAAAoB,IAAI;MAACT,KAAK,EAAEC,MAAM,CAACS,SAAU;MAAAN,QAAA,EAAC;IAAC,CAAM;EAAC,CAC/C,CAAC,eACP,IAAAd,WAAA,CAAAe,GAAA,EAAChB,YAAA,CAAAoB,IAAI;IAACT,KAAK,EAAEC,MAAM,CAACU,aAAc;IAAAP,QAAA,EAAEP;EAAK,CAAO,CAAC;AAAA,CACjC,CACnB;AAACe,OAAA,CAAAlB,QAAA,GAAAA,QAAA;AACF,MAAMO,MAAM,GAAGY,uBAAU,CAACC,MAAM,CAAC;EAC/BZ,iBAAiB,EAAE;IACjBa,aAAa,EAAE,KAAK;IACpBC,UAAU,EAAE,QAAQ;IACpBC,SAAS,EAAE,EAAE;IACbC,YAAY,EAAE,EAAE;IAChBC,iBAAiB,EAAE;EACrB,CAAC;EACDZ,QAAQ,EAAE;IACRa,KAAK,EAAE,EAAE;IACTC,MAAM,EAAE,EAAE;IACVC,WAAW,EAAE,CAAC;IACdC,WAAW,EAAE,SAAS;IACtBC,YAAY,EAAE,CAAC;IACfC,cAAc,EAAE,QAAQ;IACxBT,UAAU,EAAE;EACd,CAAC;EACDR,eAAe,EAAE;IACfkB,eAAe,EAAE,SAAS;IAC1BH,WAAW,EAAE;EACf,CAAC;EACDb,SAAS,EAAE;IACTiB,KAAK,EAAE,MAAM;IACbC,QAAQ,EAAE;EACZ,CAAC;EACDjB,aAAa,EAAE;IACbkB,UAAU,EAAE,EAAE;IACdD,QAAQ,EAAE,EAAE;IACZE,UAAU,EAAE,KAAK;IACjBH,KAAK,EAAE;EACT;AACF,CAAC,CAAC","ignoreList":[]}
@@ -0,0 +1,83 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CardCVVInput = void 0;
7
+ var _skyflowReactNative = require("skyflow-react-native");
8
+ var _react = _interopRequireWildcard(require("react"));
9
+ var _skyflow = require("@shared/constants/skyflow");
10
+ var _reactNative = require("react-native");
11
+ var _payment = require("@ui/styles/payment");
12
+ var _skyflow2 = require("@ui/styles/skyflow");
13
+ var _hook = _interopRequireDefault(require("@ui/providers/TonderProvider/hook"));
14
+ var _jsxRuntime = require("react/jsx-runtime");
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
17
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
18
+ const CardCVVInput = ({
19
+ placeholder = _skyflow.DEFAULT_SKYFLOW_PLACEHOLDERS.cvvPlaceholder,
20
+ label = _skyflow.DEFAULT_SKYFLOW_lABELS.cvvLabel,
21
+ style
22
+ }) => {
23
+ const [errorText, setErrorText] = (0, _react.useState)('');
24
+ const {
25
+ state
26
+ } = (0, _hook.default)();
27
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
28
+ children: state?.skyflowContainer && state?.isCreated && !state?.isCreating && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
29
+ style: {
30
+ ...(style?.inputStyles?.container ? {
31
+ ...style.inputStyles.container
32
+ } : _payment.DEFAULT_INPUT_CONTAINER_STYLES.base)
33
+ },
34
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_skyflowReactNative.CvvElement, {
35
+ container: state.skyflowContainer,
36
+ table: "cards",
37
+ column: "cvv",
38
+ placeholder: placeholder,
39
+ label: label,
40
+ validations: [_skyflow.regexMatchRule],
41
+ inputStyles: {
42
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES,
43
+ ...(style?.inputStyles ? {
44
+ ...style?.inputStyles,
45
+ base: {
46
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES.base,
47
+ ...style?.inputStyles.base
48
+ }
49
+ } : {})
50
+ },
51
+ errorTextStyles: {
52
+ ..._skyflow2.SKYFLOW_HIDDEN_ERROR_TEXT_STYLES
53
+ },
54
+ labelStyles: {
55
+ ..._skyflow2.DEFAULT_SKYFLOW_lABEL_STYLES,
56
+ ...(style?.labelStyles ? {
57
+ ...style?.labelStyles,
58
+ base: {
59
+ ..._skyflow2.DEFAULT_SKYFLOW_lABEL_STYLES.base,
60
+ ...style?.labelStyles.base
61
+ }
62
+ } : {})
63
+ },
64
+ onChange: () => {
65
+ setErrorText('');
66
+ }
67
+ // onFocus={props.onFocus}
68
+ ,
69
+ onBlur: e => {
70
+ setErrorText((0, _skyflow.getErrorField)(e, label));
71
+ }
72
+ // onReady={props.onReady}
73
+ }), errorText && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
74
+ style: {
75
+ ..._skyflow2.DEFAULT_SKYFLOW_ERROR_TEXT_STYLES.base
76
+ },
77
+ children: errorText
78
+ })]
79
+ })
80
+ });
81
+ };
82
+ exports.CardCVVInput = CardCVVInput;
83
+ //# sourceMappingURL=CardCVVInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_skyflowReactNative","require","_react","_interopRequireWildcard","_skyflow","_reactNative","_payment","_skyflow2","_hook","_interopRequireDefault","_jsxRuntime","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","CardCVVInput","placeholder","DEFAULT_SKYFLOW_PLACEHOLDERS","cvvPlaceholder","label","DEFAULT_SKYFLOW_lABELS","cvvLabel","style","errorText","setErrorText","useState","state","useTonderContext","jsx","Fragment","children","skyflowContainer","isCreated","isCreating","jsxs","View","inputStyles","container","DEFAULT_INPUT_CONTAINER_STYLES","base","CvvElement","table","column","validations","regexMatchRule","DEFAULT_SKYFLOW_INPUT_STYLES","errorTextStyles","SKYFLOW_HIDDEN_ERROR_TEXT_STYLES","labelStyles","DEFAULT_SKYFLOW_lABEL_STYLES","onChange","onBlur","getErrorField","Text","DEFAULT_SKYFLOW_ERROR_TEXT_STYLES","exports"],"sourceRoot":"../../../../../src","sources":["ui/components/Input/CardCVVInput.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,91 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CardExpirationDateInput = void 0;
7
+ var _react = _interopRequireDefault(require("react"));
8
+ var _skyflow = require("@shared/constants/skyflow");
9
+ var _reactNative = require("react-native");
10
+ var _skyflow2 = require("@ui/styles/skyflow");
11
+ var _payment = require("@ui/styles/payment");
12
+ var _CardExpirationMonthInput = require("@ui/components/Input/CardExpirationMonthInput");
13
+ var _CardExpirationYearInput = require("@ui/components/Input/CardExpirationYearInput");
14
+ var _jsxRuntime = require("react/jsx-runtime");
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ // @ts-nocheck
17
+
18
+ const CardExpirationDateInput = ({
19
+ yearPlaceholder = _skyflow.DEFAULT_SKYFLOW_PLACEHOLDERS.expiryYearPlaceholder,
20
+ monthPlaceholder = _skyflow.DEFAULT_SKYFLOW_PLACEHOLDERS.expiryMonthPlaceholder,
21
+ label = _skyflow.DEFAULT_SKYFLOW_lABELS.expiryDateLabel,
22
+ style
23
+ }) => {
24
+ return /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
25
+ style: styles.container,
26
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
27
+ style: {
28
+ ..._skyflow2.DEFAULT_SKYFLOW_lABEL_STYLES.base,
29
+ ...(style?.labelStyles?.base || {})
30
+ },
31
+ children: label
32
+ }), /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
33
+ style: styles.row,
34
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_CardExpirationMonthInput.CardExpirationMonthInput, {
35
+ label: '',
36
+ placeholder: monthPlaceholder,
37
+ style: {
38
+ ...{
39
+ ...style,
40
+ inputStyles: {
41
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES,
42
+ ...(style?.inputStyles || {}),
43
+ container: {
44
+ ..._payment.DEFAULT_INPUT_CONTAINER_STYLES.base,
45
+ ...{
46
+ marginVertical: 0
47
+ },
48
+ ...(style?.inputStyles?.container || {})
49
+ }
50
+ }
51
+ }
52
+ }
53
+ }), /*#__PURE__*/(0, _jsxRuntime.jsx)(_CardExpirationYearInput.CardExpirationYearInput, {
54
+ label: '',
55
+ placeholder: yearPlaceholder,
56
+ style: {
57
+ ...{
58
+ ...style,
59
+ inputStyles: {
60
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES,
61
+ ...(style?.inputStyles || {}),
62
+ container: {
63
+ ..._payment.DEFAULT_INPUT_CONTAINER_STYLES.base,
64
+ ...{
65
+ marginVertical: 0
66
+ },
67
+ ...(style?.inputStyles?.container || {})
68
+ }
69
+ }
70
+ }
71
+ }
72
+ })]
73
+ })]
74
+ });
75
+ };
76
+ exports.CardExpirationDateInput = CardExpirationDateInput;
77
+ const styles = _reactNative.StyleSheet.create({
78
+ container: {
79
+ flex: 2,
80
+ marginVertical: 5
81
+ },
82
+ row: {
83
+ flexDirection: 'row',
84
+ justifyContent: 'space-between',
85
+ gap: 10
86
+ },
87
+ inputContainerCustom: {
88
+ flex: 1
89
+ }
90
+ });
91
+ //# sourceMappingURL=CardExpirationDateInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireDefault","require","_skyflow","_reactNative","_skyflow2","_payment","_CardExpirationMonthInput","_CardExpirationYearInput","_jsxRuntime","e","__esModule","default","CardExpirationDateInput","yearPlaceholder","DEFAULT_SKYFLOW_PLACEHOLDERS","expiryYearPlaceholder","monthPlaceholder","expiryMonthPlaceholder","label","DEFAULT_SKYFLOW_lABELS","expiryDateLabel","style","jsxs","View","styles","container","children","jsx","Text","DEFAULT_SKYFLOW_lABEL_STYLES","base","labelStyles","row","CardExpirationMonthInput","placeholder","inputStyles","DEFAULT_SKYFLOW_INPUT_STYLES","DEFAULT_INPUT_CONTAINER_STYLES","marginVertical","CardExpirationYearInput","exports","StyleSheet","create","flex","flexDirection","justifyContent","gap","inputContainerCustom"],"sourceRoot":"../../../../../src","sources":["ui/components/Input/CardExpirationDateInput.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CardExpirationMonthInput = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _skyflowReactNative = require("skyflow-react-native");
9
+ var _skyflow = require("@shared/constants/skyflow");
10
+ var _reactNative = require("react-native");
11
+ var _payment = require("@ui/styles/payment");
12
+ var _skyflow2 = require("@ui/styles/skyflow");
13
+ var _hook = _interopRequireDefault(require("@ui/providers/TonderProvider/hook"));
14
+ var _jsxRuntime = require("react/jsx-runtime");
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
17
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
18
+ const CardExpirationMonthInput = ({
19
+ placeholder = _skyflow.DEFAULT_SKYFLOW_PLACEHOLDERS.expiryMonthPlaceholder,
20
+ label = _skyflow.DEFAULT_SKYFLOW_lABELS.expiryMonthLabel,
21
+ style
22
+ }) => {
23
+ const {
24
+ state
25
+ } = (0, _hook.default)();
26
+ const [errorText, setErrorText] = (0, _react.useState)('');
27
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
28
+ children: state?.skyflowContainer && state?.isCreated && !state?.isCreating && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
29
+ style: {
30
+ ...(style?.inputStyles?.container ? {
31
+ ...style.inputStyles.container
32
+ } : _payment.DEFAULT_INPUT_CONTAINER_STYLES.base)
33
+ },
34
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_skyflowReactNative.ExpirationMonthElement, {
35
+ container: state.skyflowContainer,
36
+ table: "cards",
37
+ column: "expiration_month",
38
+ options: {},
39
+ placeholder: placeholder,
40
+ label: label,
41
+ validations: [_skyflow.regexMatchRule],
42
+ inputStyles: {
43
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES,
44
+ ...(style?.inputStyles ? {
45
+ ...style?.inputStyles,
46
+ base: {
47
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES.base,
48
+ ...style?.inputStyles.base
49
+ }
50
+ } : {})
51
+ },
52
+ errorTextStyles: {
53
+ ..._skyflow2.SKYFLOW_HIDDEN_ERROR_TEXT_STYLES
54
+ },
55
+ labelStyles: {
56
+ ..._skyflow2.DEFAULT_SKYFLOW_lABEL_STYLES,
57
+ ...(style?.labelStyles ? {
58
+ ...style?.labelStyles,
59
+ base: {
60
+ ..._skyflow2.DEFAULT_SKYFLOW_lABEL_STYLES.base,
61
+ ...style?.labelStyles.base
62
+ }
63
+ } : {})
64
+ },
65
+ onChange: () => {
66
+ setErrorText('');
67
+ }
68
+ // onFocus={props.onFocus}
69
+ ,
70
+ onBlur: e => {
71
+ setErrorText((0, _skyflow.getErrorField)(e, label));
72
+ }
73
+ // onReady={props.onReady}
74
+ }), errorText && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
75
+ style: {
76
+ ..._skyflow2.DEFAULT_SKYFLOW_ERROR_TEXT_STYLES.base
77
+ },
78
+ children: errorText
79
+ })]
80
+ })
81
+ });
82
+ };
83
+ exports.CardExpirationMonthInput = CardExpirationMonthInput;
84
+ //# sourceMappingURL=CardExpirationMonthInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_skyflowReactNative","_skyflow","_reactNative","_payment","_skyflow2","_hook","_interopRequireDefault","_jsxRuntime","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","CardExpirationMonthInput","placeholder","DEFAULT_SKYFLOW_PLACEHOLDERS","expiryMonthPlaceholder","label","DEFAULT_SKYFLOW_lABELS","expiryMonthLabel","style","state","useTonderContext","errorText","setErrorText","useState","jsx","Fragment","children","skyflowContainer","isCreated","isCreating","jsxs","View","inputStyles","container","DEFAULT_INPUT_CONTAINER_STYLES","base","ExpirationMonthElement","table","column","options","validations","regexMatchRule","DEFAULT_SKYFLOW_INPUT_STYLES","errorTextStyles","SKYFLOW_HIDDEN_ERROR_TEXT_STYLES","labelStyles","DEFAULT_SKYFLOW_lABEL_STYLES","onChange","onBlur","getErrorField","Text","DEFAULT_SKYFLOW_ERROR_TEXT_STYLES","exports"],"sourceRoot":"../../../../../src","sources":["ui/components/Input/CardExpirationMonthInput.tsx"],"mappings":"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","ignoreList":[]}
@@ -0,0 +1,84 @@
1
+ "use strict";
2
+
3
+ Object.defineProperty(exports, "__esModule", {
4
+ value: true
5
+ });
6
+ exports.CardExpirationYearInput = void 0;
7
+ var _react = _interopRequireWildcard(require("react"));
8
+ var _skyflowReactNative = require("skyflow-react-native");
9
+ var _skyflow = require("@shared/constants/skyflow");
10
+ var _reactNative = require("react-native");
11
+ var _payment = require("@ui/styles/payment");
12
+ var _skyflow2 = require("@ui/styles/skyflow");
13
+ var _hook = _interopRequireDefault(require("@ui/providers/TonderProvider/hook"));
14
+ var _jsxRuntime = require("react/jsx-runtime");
15
+ function _interopRequireDefault(e) { return e && e.__esModule ? e : { default: e }; }
16
+ function _getRequireWildcardCache(e) { if ("function" != typeof WeakMap) return null; var r = new WeakMap(), t = new WeakMap(); return (_getRequireWildcardCache = function (e) { return e ? t : r; })(e); }
17
+ function _interopRequireWildcard(e, r) { if (!r && e && e.__esModule) return e; if (null === e || "object" != typeof e && "function" != typeof e) return { default: e }; var t = _getRequireWildcardCache(r); if (t && t.has(e)) return t.get(e); var n = { __proto__: null }, a = Object.defineProperty && Object.getOwnPropertyDescriptor; for (var u in e) if ("default" !== u && {}.hasOwnProperty.call(e, u)) { var i = a ? Object.getOwnPropertyDescriptor(e, u) : null; i && (i.get || i.set) ? Object.defineProperty(n, u, i) : n[u] = e[u]; } return n.default = e, t && t.set(e, n), n; }
18
+ const CardExpirationYearInput = ({
19
+ placeholder = _skyflow.DEFAULT_SKYFLOW_PLACEHOLDERS.expiryYearPlaceholder,
20
+ label = _skyflow.DEFAULT_SKYFLOW_lABELS.expiryYearLabel,
21
+ style
22
+ }) => {
23
+ const {
24
+ state
25
+ } = (0, _hook.default)();
26
+ const [errorText, setErrorText] = (0, _react.useState)('');
27
+ return /*#__PURE__*/(0, _jsxRuntime.jsx)(_jsxRuntime.Fragment, {
28
+ children: state?.skyflowContainer && state?.isCreated && !state?.isCreating && /*#__PURE__*/(0, _jsxRuntime.jsxs)(_reactNative.View, {
29
+ style: {
30
+ ...(style?.inputStyles?.container ? {
31
+ ...style.inputStyles.container
32
+ } : _payment.DEFAULT_INPUT_CONTAINER_STYLES.base)
33
+ },
34
+ children: [/*#__PURE__*/(0, _jsxRuntime.jsx)(_skyflowReactNative.ExpirationYearElement, {
35
+ container: state.skyflowContainer,
36
+ table: "cards",
37
+ column: "expiration_year",
38
+ options: {},
39
+ placeholder: placeholder,
40
+ label: label,
41
+ validations: [_skyflow.regexMatchRule],
42
+ inputStyles: {
43
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES,
44
+ ...(style?.inputStyles ? {
45
+ ...style?.inputStyles,
46
+ base: {
47
+ ..._skyflow2.DEFAULT_SKYFLOW_INPUT_STYLES.base,
48
+ ...style?.inputStyles.base
49
+ }
50
+ } : {})
51
+ },
52
+ errorTextStyles: {
53
+ ..._skyflow2.SKYFLOW_HIDDEN_ERROR_TEXT_STYLES
54
+ },
55
+ labelStyles: {
56
+ ..._skyflow2.DEFAULT_SKYFLOW_lABEL_STYLES,
57
+ ...(style?.labelStyles ? {
58
+ ...style?.labelStyles,
59
+ base: {
60
+ ..._skyflow2.DEFAULT_SKYFLOW_lABEL_STYLES.base,
61
+ ...style?.labelStyles.base
62
+ }
63
+ } : {})
64
+ },
65
+ onChange: () => {
66
+ setErrorText('');
67
+ }
68
+ // onFocus={props.onFocus}
69
+ ,
70
+ onBlur: e => {
71
+ setErrorText((0, _skyflow.getErrorField)(e, label));
72
+ }
73
+ // onReady={props.onReady}
74
+ }), errorText && /*#__PURE__*/(0, _jsxRuntime.jsx)(_reactNative.Text, {
75
+ style: {
76
+ ..._skyflow2.DEFAULT_SKYFLOW_ERROR_TEXT_STYLES.base
77
+ },
78
+ children: errorText
79
+ })]
80
+ })
81
+ });
82
+ };
83
+ exports.CardExpirationYearInput = CardExpirationYearInput;
84
+ //# sourceMappingURL=CardExpirationYearInput.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"names":["_react","_interopRequireWildcard","require","_skyflowReactNative","_skyflow","_reactNative","_payment","_skyflow2","_hook","_interopRequireDefault","_jsxRuntime","e","__esModule","default","_getRequireWildcardCache","WeakMap","r","t","has","get","n","__proto__","a","Object","defineProperty","getOwnPropertyDescriptor","u","hasOwnProperty","call","i","set","CardExpirationYearInput","placeholder","DEFAULT_SKYFLOW_PLACEHOLDERS","expiryYearPlaceholder","label","DEFAULT_SKYFLOW_lABELS","expiryYearLabel","style","state","useTonderContext","errorText","setErrorText","useState","jsx","Fragment","children","skyflowContainer","isCreated","isCreating","jsxs","View","inputStyles","container","DEFAULT_INPUT_CONTAINER_STYLES","base","ExpirationYearElement","table","column","options","validations","regexMatchRule","DEFAULT_SKYFLOW_INPUT_STYLES","errorTextStyles","SKYFLOW_HIDDEN_ERROR_TEXT_STYLES","labelStyles","DEFAULT_SKYFLOW_lABEL_STYLES","onChange","onBlur","getErrorField","Text","DEFAULT_SKYFLOW_ERROR_TEXT_STYLES","exports"],"sourceRoot":"../../../../../src","sources":["ui/components/Input/CardExpirationYearInput.tsx"],"mappings":"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","ignoreList":[]}