@jimrising/easymerchantsdk-react-native 1.9.7 → 1.9.9

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 (27) hide show
  1. package/.idea/misc.xml +1 -0
  2. package/README.md +9 -2
  3. package/android/build.gradle +8 -1
  4. package/ios/Pods/ViewControllers/BillingInfoVC/BillingInfoVC.swift +338 -161
  5. package/ios/easymerchantsdk.podspec +1 -1
  6. package/ios/easymerchantsdk.storyboard +103 -75
  7. package/package.json +1 -1
  8. package/android/.gradle/8.10/checksums/checksums.lock +0 -0
  9. package/android/.gradle/8.10/checksums/md5-checksums.bin +0 -0
  10. package/android/.gradle/8.10/checksums/sha1-checksums.bin +0 -0
  11. package/android/.gradle/8.10/dependencies-accessors/gc.properties +0 -0
  12. package/android/.gradle/8.10/fileChanges/last-build.bin +0 -0
  13. package/android/.gradle/8.10/fileHashes/fileHashes.bin +0 -0
  14. package/android/.gradle/8.10/fileHashes/fileHashes.lock +0 -0
  15. package/android/.gradle/8.10/gc.properties +0 -0
  16. package/android/.gradle/8.9/checksums/checksums.lock +0 -0
  17. package/android/.gradle/8.9/checksums/md5-checksums.bin +0 -0
  18. package/android/.gradle/8.9/checksums/sha1-checksums.bin +0 -0
  19. package/android/.gradle/8.9/dependencies-accessors/gc.properties +0 -0
  20. package/android/.gradle/8.9/fileChanges/last-build.bin +0 -0
  21. package/android/.gradle/8.9/fileHashes/fileHashes.lock +0 -0
  22. package/android/.gradle/8.9/gc.properties +0 -0
  23. package/android/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  24. package/android/.gradle/buildOutputCleanup/cache.properties +0 -2
  25. package/android/.gradle/nb-cache/trust/0B5D6BE682AD6AEE9815EC13516BF075752CAE5AD5BECDCC00315C37622C2FD3 +0 -1
  26. package/android/.gradle/vcs-1/gc.properties +0 -0
  27. package/libs/easyMerchant-1.4.6.aar +0 -0
package/.idea/misc.xml CHANGED
@@ -1,3 +1,4 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
1
2
  <project version="4">
2
3
  <component name="ProjectRootManager">
3
4
  <output url="file://$PROJECT_DIR$/out" />
package/README.md CHANGED
@@ -7,7 +7,7 @@ To add the path of sdk in your project. Open your `package.json` file and inside
7
7
 
8
8
  ```json
9
9
  "dependencies": {
10
- "@jimrising/easymerchantsdk-react-native": "^1.9.7"
10
+ "@jimrising/easymerchantsdk-react-native": "^1.9.9"
11
11
  },
12
12
  ```
13
13
 
@@ -23,7 +23,14 @@ allprojects {
23
23
  repositories {
24
24
  google()
25
25
  mavenCentral()
26
-
26
+ maven { url 'https://jitpack.io' }
27
+ maven {
28
+ url = uri(properties.getProperty('GITHUB_URL'))
29
+ credentials {
30
+ username = properties.getProperty('GITHUB_USERNAME')
31
+ password = properties.getProperty('GITHUB_PASSWORD')
32
+ }
33
+ }
27
34
  }
28
35
  }
29
36
  ```
@@ -29,10 +29,17 @@ android {
29
29
  repositories {
30
30
  mavenCentral()
31
31
  maven { url 'https://jitpack.io' }
32
+ maven {
33
+ url = uri("https://maven.pkg.github.com/EasyMerchant/em-MobileCheckoutSDK-Android")
34
+ credentials {
35
+ username = "EasyMerchant"
36
+ password = "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"
37
+ }
38
+ }
32
39
  }
33
40
 
34
41
  dependencies {
35
- implementation fileTree(dir: '../libs', include: ['*.aar', '*.jar'], exclude: [])
42
+ implementation 'com.app:paysdk:1.4.7'
36
43
  implementation 'com.hbb20:ccp:2.7.3'
37
44
  implementation 'com.github.bumptech.glide:glide:4.16.0'
38
45
  implementation "org.jetbrains.kotlinx:kotlinx-coroutines-core:1.7.1"
@@ -15,13 +15,15 @@ protocol BillingInfoVCDelegate: AnyObject {
15
15
 
16
16
  class BillingInfoVC: BaseVC {
17
17
 
18
- // @IBOutlet weak var viewBillingInfo: UIView!
18
+ // @IBOutlet weak var viewBillingInfo: UIView!
19
19
  @IBOutlet weak var btnPrevious: UIButton!
20
20
  @IBOutlet weak var viewCountryList: UIView!
21
+ @IBOutlet weak var searchBarCountryList: UISearchBar!
21
22
  @IBOutlet weak var tblViewCountryList: UITableView!
22
23
  @IBOutlet weak var txtFieldAddress: UITextField!
23
24
  @IBOutlet weak var txtFieldCountry: UITextField!
24
25
  @IBOutlet weak var viewStateList: UIView!
26
+ @IBOutlet weak var searchBarStateList: UISearchBar!
25
27
  @IBOutlet weak var tblViewStateList: UITableView!
26
28
  @IBOutlet weak var txtFieldState: UITextField!
27
29
  @IBOutlet weak var viewCityList: UIView!
@@ -75,7 +77,7 @@ class BillingInfoVC: BaseVC {
75
77
 
76
78
  var request: Request!
77
79
  var selectedCard: CardModel?
78
- // var amount: Int?
80
+ // var amount: Int?
79
81
  var amount: Double?
80
82
  var cvvText: String?
81
83
 
@@ -105,6 +107,12 @@ class BillingInfoVC: BaseVC {
105
107
 
106
108
  var easyPayDelegate: EasyPayViewControllerDelegate?
107
109
 
110
+ var filteredCountryList: [[String: Any]] = []
111
+ var isSearching = false
112
+
113
+ var filteredStateList: [[String: Any]] = [] // For search results
114
+ var isSearchingState = false // Track if user is searching
115
+
108
116
  override func viewDidLoad() {
109
117
  super.viewDidLoad()
110
118
  updateNextButtonTitle()
@@ -112,7 +120,7 @@ class BillingInfoVC: BaseVC {
112
120
  btnSelectCity.isHidden = true
113
121
 
114
122
  uiFinishingTouchElements()
115
- // configureFieldVisibility()
123
+ // configureFieldVisibility()
116
124
  setupShadowForListViews()
117
125
 
118
126
  tblViewCountryList.delegate = self
@@ -133,6 +141,17 @@ class BillingInfoVC: BaseVC {
133
141
  txtFieldCountry.delegate = self
134
142
  txtFieldPostalCode.delegate = self
135
143
 
144
+ searchBarCountryList.delegate = self
145
+ searchBarStateList.delegate = self
146
+
147
+ if let textField = searchBarCountryList.value(forKey: "searchField") as? UITextField {
148
+ textField.clearButtonMode = .never
149
+ }
150
+
151
+ if let textField = searchBarStateList.value(forKey: "searchField") as? UITextField {
152
+ textField.clearButtonMode = .never
153
+ }
154
+
136
155
  getCountryListApi()
137
156
 
138
157
  // Add tap gesture to hide the views and dismiss the keyboard
@@ -238,6 +257,10 @@ class BillingInfoVC: BaseVC {
238
257
  tblViewCountryList.backgroundColor = uiColor
239
258
  tblViewStateList.backgroundColor = uiColor
240
259
  tblViewCityList.backgroundColor = uiColor
260
+
261
+ self.searchBarCountryList.backgroundColor = uiColor
262
+ self.searchBarCountryList.barTintColor = uiColor
263
+ self.searchBarStateList.backgroundColor = uiColor
241
264
  }
242
265
 
243
266
  if let primaryBtnBackGroundColor = UserStoreSingleton.shared.primary_btn_bg_col,
@@ -245,6 +268,9 @@ class BillingInfoVC: BaseVC {
245
268
  btnNext.backgroundColor = uiColor
246
269
  btnPrevious.setTitleColor(uiColor, for: .normal)
247
270
  btnPrevious.layer.borderColor = uiColor.cgColor
271
+
272
+ searchBarCountryList.tintColor = uiColor
273
+ searchBarStateList.tintColor = uiColor
248
274
  }
249
275
 
250
276
  if let primaryBtnFontColor = UserStoreSingleton.shared.primary_btn_font_col,
@@ -255,10 +281,24 @@ class BillingInfoVC: BaseVC {
255
281
  if let secondaryFontColor = UserStoreSingleton.shared.secondary_font_col,
256
282
  let placeholderColor = UIColor(hex: secondaryFontColor) {
257
283
  lblEasyMerchant.textColor = placeholderColor
258
- // viewBillingInfo.layer.borderColor = placeholderColor.cgColor
259
- }
260
- else {
261
- // viewBillingInfo.layer.borderColor = UIColor.systemGray.cgColor
284
+
285
+ // Set placeholder text color
286
+ let placeholderAttributes: [NSAttributedString.Key: Any] = [
287
+ .foregroundColor: placeholderColor
288
+ ]
289
+ searchBarCountryList.searchTextField.attributedPlaceholder = NSAttributedString(
290
+ string: searchBarCountryList.searchTextField.placeholder ?? "Search here",
291
+ attributes: placeholderAttributes
292
+ )
293
+
294
+ searchBarStateList.searchTextField.attributedPlaceholder = NSAttributedString(
295
+ string: searchBarStateList.searchTextField.placeholder ?? "Search here",
296
+ attributes: placeholderAttributes
297
+ )
298
+
299
+ // Set search icon color
300
+ searchBarCountryList.searchTextField.leftView?.tintColor = placeholderColor
301
+ searchBarStateList.searchTextField.leftView?.tintColor = placeholderColor
262
302
  }
263
303
 
264
304
  if let borderRadiusString = UserStoreSingleton.shared.border_radious,
@@ -266,21 +306,19 @@ class BillingInfoVC: BaseVC {
266
306
  btnNext.layer.cornerRadius = CGFloat(borderRadius) // Set corner radius
267
307
  btnPrevious.layer.cornerRadius = CGFloat(borderRadius)
268
308
  btnPrevious.layer.borderWidth = 1
269
- // viewBillingInfo.layer.cornerRadius = CGFloat(borderRadius)
270
- // viewBillingInfo.layer.borderWidth = 1
271
309
  } else {
272
310
  btnNext.layer.cornerRadius = 8 // Default value
273
311
  btnPrevious.layer.cornerRadius = 8
274
- // viewBillingInfo.layer.borderWidth = 1
275
- // viewBillingInfo.layer.cornerRadius = 8
276
312
  }
277
313
  btnNext.layer.masksToBounds = true // Ensure the corners are clipped properly
278
314
  btnPrevious.layer.masksToBounds = true
279
- // viewBillingInfo.layer.masksToBounds = true
280
315
 
281
316
  if let primaryFontColor = UserStoreSingleton.shared.primary_font_col,
282
317
  let uiColor = UIColor(hex: primaryFontColor) {
283
318
  lblBillingInfo.textColor = uiColor
319
+
320
+ searchBarCountryList.searchTextField.textColor = uiColor
321
+ searchBarStateList.searchTextField.textColor = uiColor
284
322
  }
285
323
 
286
324
  if let fontSizeString = UserStoreSingleton.shared.fontSize,
@@ -289,6 +327,21 @@ class BillingInfoVC: BaseVC {
289
327
  lblEasyMerchant.font = UIFont.systemFont(ofSize: fontSize)
290
328
  btnNext.titleLabel?.font = UIFont.systemFont(ofSize: fontSize)
291
329
  btnPrevious.titleLabel?.font = UIFont.systemFont(ofSize: fontSize)
330
+
331
+ searchBarCountryList.searchTextField.font = UIFont.systemFont(ofSize: fontSize)
332
+ searchBarStateList.searchTextField.font = UIFont.systemFont(ofSize: fontSize)
333
+ }
334
+
335
+ if let searchBar = self.searchBarCountryList {
336
+ searchBar.backgroundImage = UIImage() // Removes background line
337
+ searchBar.layer.borderWidth = 0
338
+ searchBar.layer.borderColor = UIColor.clear.cgColor
339
+ }
340
+
341
+ if let searchBar = self.searchBarStateList {
342
+ searchBar.backgroundImage = UIImage() // Removes background line
343
+ searchBar.layer.borderWidth = 0
344
+ searchBar.layer.borderColor = UIColor.clear.cgColor
292
345
  }
293
346
  }
294
347
 
@@ -589,6 +642,10 @@ class BillingInfoVC: BaseVC {
589
642
  }
590
643
 
591
644
  @IBAction func actionBtnSelectState(_ sender: UIButton) {
645
+ isSearchingState = false
646
+ filteredStateList = stateList // Reset list to full states
647
+ tblViewStateList.reloadData() // Reload table with all states
648
+
592
649
  UIView.animate(withDuration: 0.3) {
593
650
  self.viewStateList.isHidden.toggle()
594
651
  }
@@ -756,7 +813,7 @@ class BillingInfoVC: BaseVC {
756
813
  navigationController?.pushViewController(vc, animated: true)
757
814
  }
758
815
  else if !isAdditionalVisible && isSavedForFuture {
759
- // let vc = easymerchantsdk.instantiateViewController(withIdentifier: "EmailVerificationVC") as! EmailVerificationVC
816
+ // let vc = easymerchantsdk.instantiateViewController(withIdentifier: "EmailVerificationVC") as! EmailVerificationVC
760
817
  let vc = easymerchantsdk.instantiateViewController(withIdentifier: "OTPVerificationVC") as! OTPVerificationVC
761
818
  vc.accountName = accountName
762
819
  vc.routingNumber = routingNumber
@@ -1004,19 +1061,19 @@ class BillingInfoVC: BaseVC {
1004
1061
  paymentDoneVC.visibility = self.visibility
1005
1062
  paymentDoneVC.request = self.request
1006
1063
 
1007
- // if self.visibility?.billing == true {
1008
- paymentDoneVC.billingInfoData = self.billingInfo
1009
- var billingDict: [String: Any] = [:]
1010
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1011
- paymentDoneVC.billingInfo = billingDict
1012
- // }
1064
+ // if self.visibility?.billing == true {
1065
+ paymentDoneVC.billingInfoData = self.billingInfo
1066
+ var billingDict: [String: Any] = [:]
1067
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1068
+ paymentDoneVC.billingInfo = billingDict
1069
+ // }
1013
1070
 
1014
- // if self.visibility?.additional == true {
1015
- paymentDoneVC.additionalInfoData = self.additionalInfo
1016
- var additionalDict: [String: Any] = [:]
1017
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1018
- paymentDoneVC.additionalInfo = additionalDict
1019
- // }
1071
+ // if self.visibility?.additional == true {
1072
+ paymentDoneVC.additionalInfoData = self.additionalInfo
1073
+ var additionalDict: [String: Any] = [:]
1074
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1075
+ paymentDoneVC.additionalInfo = additionalDict
1076
+ // }
1020
1077
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
1021
1078
  }
1022
1079
  }
@@ -1193,19 +1250,19 @@ class BillingInfoVC: BaseVC {
1193
1250
  paymentDoneVC.cardApiParams = params
1194
1251
  paymentDoneVC.request = self.request
1195
1252
 
1196
- // if self.visibility?.billing == true {
1197
- paymentDoneVC.billingInfoData = self.billingInfo
1198
- var billingDict: [String: Any] = [:]
1199
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1200
- paymentDoneVC.billingInfo = billingDict
1201
- // }
1253
+ // if self.visibility?.billing == true {
1254
+ paymentDoneVC.billingInfoData = self.billingInfo
1255
+ var billingDict: [String: Any] = [:]
1256
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1257
+ paymentDoneVC.billingInfo = billingDict
1258
+ // }
1202
1259
 
1203
- // if self.visibility?.additional == true {
1204
- paymentDoneVC.additionalInfoData = self.additionalInfo
1205
- var additionalDict: [String: Any] = [:]
1206
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1207
- paymentDoneVC.additionalInfo = additionalDict
1208
- // }
1260
+ // if self.visibility?.additional == true {
1261
+ paymentDoneVC.additionalInfoData = self.additionalInfo
1262
+ var additionalDict: [String: Any] = [:]
1263
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1264
+ paymentDoneVC.additionalInfo = additionalDict
1265
+ // }
1209
1266
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
1210
1267
  }
1211
1268
  }
@@ -1372,19 +1429,19 @@ class BillingInfoVC: BaseVC {
1372
1429
  paymentDoneVC.cardApiParams = params
1373
1430
  paymentDoneVC.request = self.request
1374
1431
 
1375
- // if self.visibility?.billing == true {
1376
- paymentDoneVC.billingInfoData = self.billingInfo
1377
- var billingDict: [String: Any] = [:]
1378
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1379
- paymentDoneVC.billingInfo = billingDict
1380
- // }
1432
+ // if self.visibility?.billing == true {
1433
+ paymentDoneVC.billingInfoData = self.billingInfo
1434
+ var billingDict: [String: Any] = [:]
1435
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1436
+ paymentDoneVC.billingInfo = billingDict
1437
+ // }
1381
1438
 
1382
- // if self.visibility?.additional == true {
1383
- paymentDoneVC.additionalInfoData = self.additionalInfo
1384
- var additionalDict: [String: Any] = [:]
1385
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1386
- paymentDoneVC.additionalInfo = additionalDict
1387
- // }
1439
+ // if self.visibility?.additional == true {
1440
+ paymentDoneVC.additionalInfoData = self.additionalInfo
1441
+ var additionalDict: [String: Any] = [:]
1442
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1443
+ paymentDoneVC.additionalInfo = additionalDict
1444
+ // }
1388
1445
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
1389
1446
  }
1390
1447
  }
@@ -1555,19 +1612,19 @@ class BillingInfoVC: BaseVC {
1555
1612
  paymentDoneVC.visibility = self.visibility
1556
1613
  paymentDoneVC.request = self.request
1557
1614
 
1558
- // if self.visibility?.billing == true {
1559
- paymentDoneVC.billingInfoData = self.billingInfo
1560
- var billingDict: [String: Any] = [:]
1561
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1562
- paymentDoneVC.billingInfo = billingDict
1563
- // }
1615
+ // if self.visibility?.billing == true {
1616
+ paymentDoneVC.billingInfoData = self.billingInfo
1617
+ var billingDict: [String: Any] = [:]
1618
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1619
+ paymentDoneVC.billingInfo = billingDict
1620
+ // }
1564
1621
 
1565
- // if self.visibility?.additional == true {
1566
- paymentDoneVC.additionalInfoData = self.additionalInfo
1567
- var additionalDict: [String: Any] = [:]
1568
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1569
- paymentDoneVC.additionalInfo = additionalDict
1570
- // }
1622
+ // if self.visibility?.additional == true {
1623
+ paymentDoneVC.additionalInfoData = self.additionalInfo
1624
+ var additionalDict: [String: Any] = [:]
1625
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1626
+ paymentDoneVC.additionalInfo = additionalDict
1627
+ // }
1571
1628
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
1572
1629
  }
1573
1630
  }
@@ -1738,19 +1795,19 @@ class BillingInfoVC: BaseVC {
1738
1795
  paymentDoneVC.visibility = self.visibility
1739
1796
  paymentDoneVC.request = self.request
1740
1797
 
1741
- // if self.visibility?.billing == true {
1742
- paymentDoneVC.billingInfoData = self.billingInfo
1743
- var billingDict: [String: Any] = [:]
1744
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1745
- paymentDoneVC.billingInfo = billingDict
1746
- // }
1798
+ // if self.visibility?.billing == true {
1799
+ paymentDoneVC.billingInfoData = self.billingInfo
1800
+ var billingDict: [String: Any] = [:]
1801
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1802
+ paymentDoneVC.billingInfo = billingDict
1803
+ // }
1747
1804
 
1748
- // if self.visibility?.additional == true {
1749
- paymentDoneVC.additionalInfoData = self.additionalInfo
1750
- var additionalDict: [String: Any] = [:]
1751
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1752
- paymentDoneVC.additionalInfo = additionalDict
1753
- // }
1805
+ // if self.visibility?.additional == true {
1806
+ paymentDoneVC.additionalInfoData = self.additionalInfo
1807
+ var additionalDict: [String: Any] = [:]
1808
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1809
+ paymentDoneVC.additionalInfo = additionalDict
1810
+ // }
1754
1811
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
1755
1812
  }
1756
1813
  }
@@ -1905,17 +1962,17 @@ class BillingInfoVC: BaseVC {
1905
1962
  paymentDoneVC.request = self.request
1906
1963
 
1907
1964
  // if self.visibility?.billing == true {
1908
- paymentDoneVC.billingInfoData = self.billingInfo
1909
- var billingDict: [String: Any] = [:]
1910
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1911
- paymentDoneVC.billingInfo = billingDict
1965
+ paymentDoneVC.billingInfoData = self.billingInfo
1966
+ var billingDict: [String: Any] = [:]
1967
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
1968
+ paymentDoneVC.billingInfo = billingDict
1912
1969
  // }
1913
-
1970
+
1914
1971
  // if self.visibility?.additional == true {
1915
- paymentDoneVC.additionalInfoData = self.additionalInfo
1916
- var additionalDict: [String: Any] = [:]
1917
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1918
- paymentDoneVC.additionalInfo = additionalDict
1972
+ paymentDoneVC.additionalInfoData = self.additionalInfo
1973
+ var additionalDict: [String: Any] = [:]
1974
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
1975
+ paymentDoneVC.additionalInfo = additionalDict
1919
1976
  // }
1920
1977
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
1921
1978
  }
@@ -2074,17 +2131,17 @@ class BillingInfoVC: BaseVC {
2074
2131
  paymentDoneVC.request = self.request
2075
2132
 
2076
2133
  // if self.visibility?.billing == true {
2077
- paymentDoneVC.billingInfoData = self.billingInfo
2078
- var billingDict: [String: Any] = [:]
2079
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2080
- paymentDoneVC.billingInfo = billingDict
2134
+ paymentDoneVC.billingInfoData = self.billingInfo
2135
+ var billingDict: [String: Any] = [:]
2136
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2137
+ paymentDoneVC.billingInfo = billingDict
2081
2138
  // }
2082
-
2139
+
2083
2140
  // if self.visibility?.additional == true {
2084
- paymentDoneVC.additionalInfoData = self.additionalInfo
2085
- var additionalDict: [String: Any] = [:]
2086
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2087
- paymentDoneVC.additionalInfo = additionalDict
2141
+ paymentDoneVC.additionalInfoData = self.additionalInfo
2142
+ var additionalDict: [String: Any] = [:]
2143
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2144
+ paymentDoneVC.additionalInfo = additionalDict
2088
2145
  // }
2089
2146
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
2090
2147
  }
@@ -2252,17 +2309,17 @@ class BillingInfoVC: BaseVC {
2252
2309
  paymentDoneVC.request = self.request
2253
2310
 
2254
2311
  // if self.visibility?.billing == true {
2255
- paymentDoneVC.billingInfoData = self.billingInfo
2256
- var billingDict: [String: Any] = [:]
2257
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2258
- paymentDoneVC.billingInfo = billingDict
2312
+ paymentDoneVC.billingInfoData = self.billingInfo
2313
+ var billingDict: [String: Any] = [:]
2314
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2315
+ paymentDoneVC.billingInfo = billingDict
2259
2316
  // }
2260
-
2317
+
2261
2318
  // if self.visibility?.additional == true {
2262
- paymentDoneVC.additionalInfoData = self.additionalInfo
2263
- var additionalDict: [String: Any] = [:]
2264
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2265
- paymentDoneVC.additionalInfo = additionalDict
2319
+ paymentDoneVC.additionalInfoData = self.additionalInfo
2320
+ var additionalDict: [String: Any] = [:]
2321
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2322
+ paymentDoneVC.additionalInfo = additionalDict
2266
2323
  // }
2267
2324
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
2268
2325
  }
@@ -2423,17 +2480,17 @@ class BillingInfoVC: BaseVC {
2423
2480
  paymentDoneVC.request = self.request
2424
2481
 
2425
2482
  // if self.visibility?.billing == true {
2426
- paymentDoneVC.billingInfoData = self.billingInfo
2427
- var billingDict: [String: Any] = [:]
2428
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2429
- paymentDoneVC.billingInfo = billingDict
2483
+ paymentDoneVC.billingInfoData = self.billingInfo
2484
+ var billingDict: [String: Any] = [:]
2485
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2486
+ paymentDoneVC.billingInfo = billingDict
2430
2487
  // }
2431
-
2488
+
2432
2489
  // if self.visibility?.additional == true {
2433
- paymentDoneVC.additionalInfoData = self.additionalInfo
2434
- var additionalDict: [String: Any] = [:]
2435
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2436
- paymentDoneVC.additionalInfo = additionalDict
2490
+ paymentDoneVC.additionalInfoData = self.additionalInfo
2491
+ var additionalDict: [String: Any] = [:]
2492
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2493
+ paymentDoneVC.additionalInfo = additionalDict
2437
2494
  // }
2438
2495
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
2439
2496
  }
@@ -2507,24 +2564,24 @@ class BillingInfoVC: BaseVC {
2507
2564
  params["username"] = emailPrefix
2508
2565
  }
2509
2566
 
2510
- // // Billing Info
2511
- // if let visibility = visibility, visibility.billing == true,
2512
- // let billing = billingInfo, !billing.isEmpty {
2513
- // var billingDict: [String: Any] = [:]
2514
- // billing.forEach { billingDict[$0.name] = $0.value }
2515
- //
2516
- // params["address"] = billingDict["address"] as? String ?? ""
2517
- // params["country"] = billingDict["country"] as? String ?? ""
2518
- // params["state"] = billingDict["state"] as? String ?? ""
2519
- // params["city"] = billingDict["city"] as? String ?? ""
2520
- // params["zip"] = billingDict["postal_code"] as? String ?? ""
2521
- // }
2567
+ // // Billing Info
2568
+ // if let visibility = visibility, visibility.billing == true,
2569
+ // let billing = billingInfo, !billing.isEmpty {
2570
+ // var billingDict: [String: Any] = [:]
2571
+ // billing.forEach { billingDict[$0.name] = $0.value }
2572
+ //
2573
+ // params["address"] = billingDict["address"] as? String ?? ""
2574
+ // params["country"] = billingDict["country"] as? String ?? ""
2575
+ // params["state"] = billingDict["state"] as? String ?? ""
2576
+ // params["city"] = billingDict["city"] as? String ?? ""
2577
+ // params["zip"] = billingDict["postal_code"] as? String ?? ""
2578
+ // }
2522
2579
 
2523
2580
  // Always include Billing Info if available
2524
2581
  if let billing = billingInfo, !billing.isEmpty {
2525
2582
  var billingDict: [String: Any] = [:]
2526
2583
  billing.forEach { billingDict[$0.name] = $0.value }
2527
-
2584
+
2528
2585
  params["address"] = billingDict["address"] as? String ?? ""
2529
2586
  params["country"] = billingDict["country"] as? String ?? ""
2530
2587
  params["state"] = billingDict["state"] as? String ?? ""
@@ -2532,34 +2589,34 @@ class BillingInfoVC: BaseVC {
2532
2589
  params["zip"] = billingDict["postal_code"] as? String ?? ""
2533
2590
  }
2534
2591
 
2535
- // // Additional Info or default description
2536
- // var descriptionValue: String = "Hosted payment checkout" // default
2537
- // if let visibility = visibility, visibility.additional == true,
2538
- // let additional = additionalInfo, !additional.isEmpty {
2539
- //
2540
- // var additionalDict: [String: Any] = [:]
2541
- // additional.forEach { additionalDict[$0.name] = $0.value }
2542
- //
2543
- // if let desc = additionalDict["description"] as? String, !desc.isEmpty {
2544
- // descriptionValue = desc
2545
- // }
2546
- //
2547
- // if let phone = additionalDict["phone_number"] as? String, !phone.isEmpty {
2548
- // params["phone_number"] = phone
2549
- // }
2550
- // }
2551
- // params["description"] = descriptionValue
2592
+ // // Additional Info or default description
2593
+ // var descriptionValue: String = "Hosted payment checkout" // default
2594
+ // if let visibility = visibility, visibility.additional == true,
2595
+ // let additional = additionalInfo, !additional.isEmpty {
2596
+ //
2597
+ // var additionalDict: [String: Any] = [:]
2598
+ // additional.forEach { additionalDict[$0.name] = $0.value }
2599
+ //
2600
+ // if let desc = additionalDict["description"] as? String, !desc.isEmpty {
2601
+ // descriptionValue = desc
2602
+ // }
2603
+ //
2604
+ // if let phone = additionalDict["phone_number"] as? String, !phone.isEmpty {
2605
+ // params["phone_number"] = phone
2606
+ // }
2607
+ // }
2608
+ // params["description"] = descriptionValue
2552
2609
 
2553
2610
  // Always include Additional Info if available
2554
2611
  var descriptionValue: String = "Hosted payment checkout"
2555
2612
  if let additional = additionalInfo, !additional.isEmpty {
2556
2613
  var additionalDict: [String: Any] = [:]
2557
2614
  additional.forEach { additionalDict[$0.name] = $0.value }
2558
-
2615
+
2559
2616
  if let desc = additionalDict["description"] as? String, !desc.isEmpty {
2560
2617
  descriptionValue = desc
2561
2618
  }
2562
-
2619
+
2563
2620
  if let phone = additionalDict["phone_number"] as? String, !phone.isEmpty {
2564
2621
  params["phone_number"] = phone
2565
2622
  }
@@ -2642,19 +2699,19 @@ class BillingInfoVC: BaseVC {
2642
2699
  paymentDoneVC.visibility = self.visibility
2643
2700
  paymentDoneVC.request = self.request
2644
2701
 
2645
- // if self.visibility?.billing == true {
2646
- paymentDoneVC.billingInfoData = self.billingInfo
2647
- var billingDict: [String: Any] = [:]
2648
- self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2649
- paymentDoneVC.billingInfo = billingDict
2650
- // }
2702
+ // if self.visibility?.billing == true {
2703
+ paymentDoneVC.billingInfoData = self.billingInfo
2704
+ var billingDict: [String: Any] = [:]
2705
+ self.billingInfo?.forEach { billingDict[$0.name] = $0.value }
2706
+ paymentDoneVC.billingInfo = billingDict
2707
+ // }
2651
2708
 
2652
- // if self.visibility?.additional == true {
2653
- paymentDoneVC.additionalInfoData = self.additionalInfo
2654
- var additionalDict: [String: Any] = [:]
2655
- self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2656
- paymentDoneVC.additionalInfo = additionalDict
2657
- // }
2709
+ // if self.visibility?.additional == true {
2710
+ paymentDoneVC.additionalInfoData = self.additionalInfo
2711
+ var additionalDict: [String: Any] = [:]
2712
+ self.additionalInfo?.forEach { additionalDict[$0.name] = $0.value }
2713
+ paymentDoneVC.additionalInfo = additionalDict
2714
+ // }
2658
2715
  self.navigationController?.pushViewController(paymentDoneVC, animated: true)
2659
2716
  }
2660
2717
  }
@@ -2688,10 +2745,13 @@ class BillingInfoVC: BaseVC {
2688
2745
  extension BillingInfoVC: UITableViewDelegate, UITableViewDataSource {
2689
2746
  func tableView(_ tableView: UITableView, numberOfRowsInSection section: Int) -> Int {
2690
2747
  if tableView == tblViewCountryList {
2691
- return countryList.count
2748
+ // return countryList.count
2749
+ let count = isSearching ? filteredCountryList.count : countryList.count
2750
+ return count
2692
2751
  }
2693
2752
  else if tableView == tblViewStateList {
2694
- return stateList.count
2753
+ // return stateList.count
2754
+ return isSearchingState ? filteredStateList.count : stateList.count
2695
2755
  }
2696
2756
  else if tableView == tblViewCityList {
2697
2757
  return cityList.count
@@ -2703,13 +2763,27 @@ extension BillingInfoVC: UITableViewDelegate, UITableViewDataSource {
2703
2763
 
2704
2764
  func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
2705
2765
  if tableView == tblViewCountryList {
2766
+ let currentList = isSearching ? filteredCountryList : countryList
2767
+ guard indexPath.row < currentList.count else {
2768
+ return UITableViewCell()
2769
+ }
2770
+
2706
2771
  let cell = tableView.dequeueReusableCell(withIdentifier: "CountryListTVC") as! CountryListTVC
2707
- let country = countryList[indexPath.row]
2772
+ let country = currentList[indexPath.row]
2708
2773
  cell.lblCountryName.text = country["name"] as? String
2709
2774
  return cell
2775
+
2710
2776
  } else if tableView == tblViewStateList {
2777
+ // let cell = tableView.dequeueReusableCell(withIdentifier: "StateListTVC") as! StateListTVC
2778
+ // let state = stateList[indexPath.row]
2779
+ // cell.lblStateName.text = state["name"] as? String
2780
+ // return cell
2781
+
2782
+ let currentList = isSearchingState ? filteredStateList : stateList
2783
+ guard indexPath.row < currentList.count else { return UITableViewCell() }
2784
+
2711
2785
  let cell = tableView.dequeueReusableCell(withIdentifier: "StateListTVC") as! StateListTVC
2712
- let state = stateList[indexPath.row]
2786
+ let state = currentList[indexPath.row]
2713
2787
  cell.lblStateName.text = state["name"] as? String
2714
2788
  return cell
2715
2789
  } else if tableView == tblViewCityList {
@@ -2724,23 +2798,72 @@ extension BillingInfoVC: UITableViewDelegate, UITableViewDataSource {
2724
2798
 
2725
2799
  func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
2726
2800
  if tableView == tblViewCountryList {
2727
- let selectedCountry = countryList[indexPath.row]["name"] as? String
2801
+
2802
+ let currentList = isSearching ? filteredCountryList : countryList
2803
+
2804
+ // Safety check to avoid index out of range
2805
+ guard indexPath.row < currentList.count else { return }
2806
+
2807
+ let selectedCountry = currentList[indexPath.row]["name"] as? String
2808
+ // txtFieldCountry.text = selectedCountry
2809
+ // viewCountryList.isHidden = true
2810
+ //
2811
+ // // Fetch states for the selected country
2812
+ // if let country = selectedCountry {
2813
+ // getStateListApi(for: country)
2814
+ // }
2815
+
2728
2816
  txtFieldCountry.text = selectedCountry
2729
2817
  viewCountryList.isHidden = true
2730
2818
 
2731
- // Fetch states for the selected country
2819
+ // Show/hide state dropdown and update placeholder
2732
2820
  if let country = selectedCountry {
2821
+ if country.lowercased() == "united states" || country.lowercased() == "usa" || country.lowercased() == "canada" {
2822
+ btnSelectState.isHidden = false
2823
+ txtFieldState.placeholder = "Select State"
2824
+ } else {
2825
+ btnSelectState.isHidden = true
2826
+ txtFieldState.placeholder = "State"
2827
+ }
2828
+
2733
2829
  getStateListApi(for: country)
2734
2830
  }
2831
+
2832
+
2833
+ // Reset search state after selection
2834
+ isSearching = false
2835
+ filteredCountryList.removeAll()
2836
+ searchBarCountryList.text = ""
2837
+ searchBarCountryList.resignFirstResponder()
2838
+
2839
+ tblViewCountryList.reloadData()
2840
+
2735
2841
  } else if tableView == tblViewStateList {
2736
- let selectedState = stateList[indexPath.row]["name"] as? String
2842
+ // let selectedState = stateList[indexPath.row]["name"] as? String
2843
+ // txtFieldState.text = selectedState
2844
+ // viewStateList.isHidden = true
2845
+ //
2846
+ // // Fetch cities for the selected state and country
2847
+ // if let state = selectedState, let country = txtFieldCountry.text {
2848
+ // getCityListListApi(for: country, state: state)
2849
+ // }
2850
+
2851
+ let currentList = isSearchingState ? filteredStateList : stateList
2852
+ guard indexPath.row < currentList.count else { return }
2853
+
2854
+ let selectedState = currentList[indexPath.row]["name"] as? String
2737
2855
  txtFieldState.text = selectedState
2738
2856
  viewStateList.isHidden = true
2739
2857
 
2740
- // Fetch cities for the selected state and country
2858
+ isSearchingState = false
2859
+ filteredStateList.removeAll()
2860
+ searchBarStateList.text = ""
2861
+ searchBarStateList.resignFirstResponder()
2862
+
2741
2863
  if let state = selectedState, let country = txtFieldCountry.text {
2742
2864
  getCityListListApi(for: country, state: state)
2743
2865
  }
2866
+
2744
2867
  } else if tableView == tblViewCityList {
2745
2868
  let selectedCity = cityList[indexPath.row]["city_name"] as? String
2746
2869
  txtFieldCity.text = selectedCity
@@ -2761,6 +2884,60 @@ extension BillingInfoVC: UITableViewDelegate, UITableViewDataSource {
2761
2884
 
2762
2885
  }
2763
2886
 
2887
+ extension BillingInfoVC: UISearchBarDelegate {
2888
+
2889
+ func searchBar(_ searchBar: UISearchBar, textDidChange searchText: String) {
2890
+ if searchBar == searchBarCountryList {
2891
+ if searchText.isEmpty {
2892
+ isSearching = false
2893
+ filteredCountryList.removeAll()
2894
+ view.endEditing(true)
2895
+ } else {
2896
+ isSearching = true
2897
+ filteredCountryList = countryList.filter {
2898
+ ($0["name"] as? String)?.lowercased().contains(searchText.lowercased()) ?? false
2899
+ }
2900
+ }
2901
+ tblViewCountryList.reloadData()
2902
+ } else if searchBar == searchBarStateList {
2903
+ if searchText.isEmpty {
2904
+ isSearchingState = false
2905
+ filteredStateList.removeAll()
2906
+ view.endEditing(true)
2907
+ } else {
2908
+ isSearchingState = true
2909
+ filteredStateList = stateList.filter {
2910
+ ($0["name"] as? String)?.lowercased().contains(searchText.lowercased()) ?? false
2911
+ }
2912
+ }
2913
+ tblViewStateList.reloadData()
2914
+ }
2915
+ }
2916
+
2917
+ func searchBarTextDidBeginEditing(_ searchBar: UISearchBar) {
2918
+ if searchBar == searchBarCountryList {
2919
+ isSearching = true
2920
+ } else if searchBar == searchBarStateList {
2921
+ isSearchingState = true
2922
+ }
2923
+ }
2924
+
2925
+ func searchBarCancelButtonClicked(_ searchBar: UISearchBar) {
2926
+ if searchBar == searchBarCountryList {
2927
+ isSearching = false
2928
+ searchBar.text = ""
2929
+ searchBar.resignFirstResponder()
2930
+ tblViewCountryList.reloadData()
2931
+ } else if searchBar == searchBarStateList {
2932
+ isSearchingState = false
2933
+ searchBar.text = ""
2934
+ searchBar.resignFirstResponder()
2935
+ tblViewStateList.reloadData()
2936
+ }
2937
+ }
2938
+
2939
+ }
2940
+
2764
2941
  @available(iOS 16.0, *)
2765
2942
  extension BillingInfoVC: UITextFieldDelegate {
2766
2943
  func textFieldShouldReturn(_ textField: UITextField) -> Bool {
@@ -1,6 +1,6 @@
1
1
  Pod::Spec.new do |s|
2
2
  s.name = 'easymerchantsdk'
3
- s.version = '1.9.7'
3
+ s.version = '1.9.9'
4
4
  s.summary = 'A React Native SDK for Easy Merchant.'
5
5
  s.description = <<-DESC
6
6
  A React Native SDK to enable Easy Merchant functionality in mobile applications.
@@ -594,7 +594,7 @@
594
594
  <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="TFQ-IW-CNw">
595
595
  <rect key="frame" x="0.0" y="24.333333333333314" width="361" height="50"/>
596
596
  <subviews>
597
- <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Select State" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="7oj-4e-2WQ">
597
+ <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="State" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="7oj-4e-2WQ">
598
598
  <rect key="frame" x="12" y="0.0" width="337" height="50"/>
599
599
  <color key="tintColor" name="G_000000"/>
600
600
  <fontDescription key="fontDescription" name="Inter-Regular" family="Inter" pointSize="16"/>
@@ -683,7 +683,7 @@
683
683
  <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="pR3-PV-jFR">
684
684
  <rect key="frame" x="0.0" y="24.333333333333314" width="361" height="50"/>
685
685
  <subviews>
686
- <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="Select City" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="RI9-bN-HBt">
686
+ <textField opaque="NO" contentMode="scaleToFill" horizontalHuggingPriority="248" contentHorizontalAlignment="left" contentVerticalAlignment="center" placeholder="City" textAlignment="natural" minimumFontSize="17" translatesAutoresizingMaskIntoConstraints="NO" id="RI9-bN-HBt">
687
687
  <rect key="frame" x="12" y="0.0" width="337" height="50"/>
688
688
  <color key="tintColor" name="G_000000"/>
689
689
  <fontDescription key="fontDescription" name="Inter-Regular" family="Inter" pointSize="16"/>
@@ -850,25 +850,80 @@
850
850
  <color key="textColor" name="00000060"/>
851
851
  <nil key="highlightedColor"/>
852
852
  </label>
853
+ <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wEf-q2-hGB">
854
+ <rect key="frame" x="30" y="162.33333333333337" width="333" height="513"/>
855
+ <subviews>
856
+ <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="D3s-qI-U1i">
857
+ <rect key="frame" x="0.0" y="0.0" width="333" height="513"/>
858
+ <color key="backgroundColor" systemColor="systemBackgroundColor"/>
859
+ <prototypes>
860
+ <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CityListTVC" rowHeight="66" id="gGP-JP-p4U" customClass="CityListTVC" customModule="EasyPay" customModuleProvider="target">
861
+ <rect key="frame" x="0.0" y="50" width="333" height="66"/>
862
+ <autoresizingMask key="autoresizingMask"/>
863
+ <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="gGP-JP-p4U" id="xyy-cO-M1m">
864
+ <rect key="frame" x="0.0" y="0.0" width="333" height="66"/>
865
+ <autoresizingMask key="autoresizingMask"/>
866
+ <subviews>
867
+ <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gGr-7f-FPM">
868
+ <rect key="frame" x="0.0" y="0.0" width="333" height="66"/>
869
+ <subviews>
870
+ <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SgJ-ai-ta7">
871
+ <rect key="frame" x="16" y="24" width="301" height="18"/>
872
+ <fontDescription key="fontDescription" type="system" weight="medium" pointSize="15"/>
873
+ <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
874
+ <nil key="highlightedColor"/>
875
+ </label>
876
+ </subviews>
877
+ <color key="backgroundColor" systemColor="systemBackgroundColor"/>
878
+ <constraints>
879
+ <constraint firstAttribute="trailing" secondItem="SgJ-ai-ta7" secondAttribute="trailing" constant="16" id="HZD-5g-iMO"/>
880
+ <constraint firstItem="SgJ-ai-ta7" firstAttribute="centerY" secondItem="gGr-7f-FPM" secondAttribute="centerY" id="Y4V-38-0kG"/>
881
+ <constraint firstItem="SgJ-ai-ta7" firstAttribute="leading" secondItem="gGr-7f-FPM" secondAttribute="leading" constant="16" id="hDH-Ca-1PJ"/>
882
+ </constraints>
883
+ </view>
884
+ </subviews>
885
+ <constraints>
886
+ <constraint firstItem="gGr-7f-FPM" firstAttribute="top" secondItem="xyy-cO-M1m" secondAttribute="top" id="6be-ek-F0K"/>
887
+ <constraint firstAttribute="bottom" secondItem="gGr-7f-FPM" secondAttribute="bottom" id="Y9o-c8-O4B"/>
888
+ <constraint firstItem="gGr-7f-FPM" firstAttribute="leading" secondItem="xyy-cO-M1m" secondAttribute="leading" id="Z10-SB-ak3"/>
889
+ <constraint firstAttribute="trailing" secondItem="gGr-7f-FPM" secondAttribute="trailing" id="Z1B-at-gNF"/>
890
+ </constraints>
891
+ </tableViewCellContentView>
892
+ <connections>
893
+ <outlet property="lblCityName" destination="SgJ-ai-ta7" id="IGC-gh-5bM"/>
894
+ <outlet property="viewCell" destination="gGr-7f-FPM" id="vRZ-NZ-8ee"/>
895
+ </connections>
896
+ </tableViewCell>
897
+ </prototypes>
898
+ </tableView>
899
+ </subviews>
900
+ <color key="backgroundColor" systemColor="systemBackgroundColor"/>
901
+ <constraints>
902
+ <constraint firstAttribute="bottom" secondItem="D3s-qI-U1i" secondAttribute="bottom" id="5PS-XW-5L8"/>
903
+ <constraint firstItem="D3s-qI-U1i" firstAttribute="leading" secondItem="wEf-q2-hGB" secondAttribute="leading" id="Fjh-KM-4Q8"/>
904
+ <constraint firstItem="D3s-qI-U1i" firstAttribute="top" secondItem="wEf-q2-hGB" secondAttribute="top" id="WZp-aH-qDQ"/>
905
+ <constraint firstAttribute="trailing" secondItem="D3s-qI-U1i" secondAttribute="trailing" id="sWb-x7-9AT"/>
906
+ </constraints>
907
+ </view>
853
908
  <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="3kQ-uP-ZdO">
854
- <rect key="frame" x="40" y="162.33333333333337" width="313" height="513"/>
909
+ <rect key="frame" x="30" y="162.33333333333337" width="333" height="513"/>
855
910
  <subviews>
856
911
  <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="chx-xo-pBI">
857
- <rect key="frame" x="0.0" y="0.0" width="313" height="513"/>
912
+ <rect key="frame" x="0.0" y="55" width="333" height="458"/>
858
913
  <color key="backgroundColor" systemColor="systemBackgroundColor"/>
859
914
  <prototypes>
860
915
  <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CountryListTVC" rowHeight="66" id="K0e-XK-vjE" customClass="CountryListTVC" customModule="EasyPay" customModuleProvider="target">
861
- <rect key="frame" x="0.0" y="50" width="313" height="66"/>
916
+ <rect key="frame" x="0.0" y="50" width="333" height="66"/>
862
917
  <autoresizingMask key="autoresizingMask"/>
863
918
  <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="K0e-XK-vjE" id="lrJ-jU-orc">
864
- <rect key="frame" x="0.0" y="0.0" width="313" height="66"/>
919
+ <rect key="frame" x="0.0" y="0.0" width="333" height="66"/>
865
920
  <autoresizingMask key="autoresizingMask"/>
866
921
  <subviews>
867
922
  <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="UBi-DG-6eK">
868
- <rect key="frame" x="0.0" y="0.0" width="313" height="66"/>
923
+ <rect key="frame" x="0.0" y="0.0" width="333" height="66"/>
869
924
  <subviews>
870
925
  <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qtE-zy-Qan">
871
- <rect key="frame" x="16" y="24" width="281" height="18"/>
926
+ <rect key="frame" x="16" y="24" width="301" height="18"/>
872
927
  <fontDescription key="fontDescription" type="system" weight="medium" pointSize="15"/>
873
928
  <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
874
929
  <nil key="highlightedColor"/>
@@ -896,34 +951,47 @@
896
951
  </tableViewCell>
897
952
  </prototypes>
898
953
  </tableView>
954
+ <searchBar contentMode="redraw" translatesAutoresizingMaskIntoConstraints="NO" id="Eeh-72-nEN">
955
+ <rect key="frame" x="2" y="5" width="329" height="50"/>
956
+ <constraints>
957
+ <constraint firstAttribute="height" constant="50" id="Mki-yQ-0qi"/>
958
+ </constraints>
959
+ <textInputTraits key="textInputTraits"/>
960
+ <connections>
961
+ <outlet property="delegate" destination="Yfu-8B-cHL" id="F7n-Bd-hGU"/>
962
+ </connections>
963
+ </searchBar>
899
964
  </subviews>
900
965
  <color key="backgroundColor" systemColor="systemBackgroundColor"/>
901
966
  <constraints>
967
+ <constraint firstItem="chx-xo-pBI" firstAttribute="top" secondItem="Eeh-72-nEN" secondAttribute="bottom" id="6w7-6M-8gG"/>
902
968
  <constraint firstAttribute="bottom" secondItem="chx-xo-pBI" secondAttribute="bottom" id="7Qa-ri-RlN"/>
969
+ <constraint firstAttribute="trailing" secondItem="Eeh-72-nEN" secondAttribute="trailing" constant="2" id="MAP-Pc-guP"/>
903
970
  <constraint firstItem="chx-xo-pBI" firstAttribute="leading" secondItem="3kQ-uP-ZdO" secondAttribute="leading" id="X7Z-1Z-Ai3"/>
904
- <constraint firstItem="chx-xo-pBI" firstAttribute="top" secondItem="3kQ-uP-ZdO" secondAttribute="top" id="ks3-sU-gqM"/>
971
+ <constraint firstItem="Eeh-72-nEN" firstAttribute="leading" secondItem="3kQ-uP-ZdO" secondAttribute="leading" constant="2" id="XTt-bT-7Pn"/>
972
+ <constraint firstItem="Eeh-72-nEN" firstAttribute="top" secondItem="3kQ-uP-ZdO" secondAttribute="top" constant="5" id="jUw-n0-NMI"/>
905
973
  <constraint firstAttribute="trailing" secondItem="chx-xo-pBI" secondAttribute="trailing" id="yUb-1j-bt5"/>
906
974
  </constraints>
907
975
  </view>
908
976
  <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="Rzy-1f-5jH">
909
- <rect key="frame" x="40" y="162.33333333333337" width="313" height="513"/>
977
+ <rect key="frame" x="30" y="162.33333333333337" width="333" height="513"/>
910
978
  <subviews>
911
979
  <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="hNJ-zs-gEf">
912
- <rect key="frame" x="0.0" y="0.0" width="313" height="513"/>
980
+ <rect key="frame" x="0.0" y="55" width="333" height="458"/>
913
981
  <color key="backgroundColor" systemColor="systemBackgroundColor"/>
914
982
  <prototypes>
915
983
  <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="StateListTVC" rowHeight="66" id="wiw-SJ-eeT" customClass="StateListTVC" customModule="EasyPay" customModuleProvider="target">
916
- <rect key="frame" x="0.0" y="50" width="313" height="66"/>
984
+ <rect key="frame" x="0.0" y="50" width="333" height="66"/>
917
985
  <autoresizingMask key="autoresizingMask"/>
918
986
  <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="wiw-SJ-eeT" id="NZb-lz-rKn">
919
- <rect key="frame" x="0.0" y="0.0" width="313" height="66"/>
987
+ <rect key="frame" x="0.0" y="0.0" width="333" height="66"/>
920
988
  <autoresizingMask key="autoresizingMask"/>
921
989
  <subviews>
922
990
  <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="VSx-2d-HTn">
923
- <rect key="frame" x="0.0" y="0.0" width="313" height="66"/>
991
+ <rect key="frame" x="0.0" y="0.0" width="333" height="66"/>
924
992
  <subviews>
925
993
  <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="qfM-Hx-U2U">
926
- <rect key="frame" x="16" y="24" width="281" height="18"/>
994
+ <rect key="frame" x="16" y="24" width="301" height="18"/>
927
995
  <fontDescription key="fontDescription" type="system" weight="medium" pointSize="15"/>
928
996
  <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
929
997
  <nil key="highlightedColor"/>
@@ -951,75 +1019,33 @@
951
1019
  </tableViewCell>
952
1020
  </prototypes>
953
1021
  </tableView>
1022
+ <searchBar contentMode="redraw" translatesAutoresizingMaskIntoConstraints="NO" id="FeK-ZV-Ixa">
1023
+ <rect key="frame" x="2" y="5" width="329" height="50"/>
1024
+ <constraints>
1025
+ <constraint firstAttribute="height" constant="50" id="ipo-4z-EPF"/>
1026
+ </constraints>
1027
+ <textInputTraits key="textInputTraits"/>
1028
+ <connections>
1029
+ <outlet property="delegate" destination="Yfu-8B-cHL" id="3CD-iC-tHG"/>
1030
+ </connections>
1031
+ </searchBar>
954
1032
  </subviews>
955
1033
  <color key="backgroundColor" systemColor="systemBackgroundColor"/>
956
1034
  <constraints>
957
- <constraint firstItem="hNJ-zs-gEf" firstAttribute="top" secondItem="Rzy-1f-5jH" secondAttribute="top" id="52s-2L-3Hd"/>
1035
+ <constraint firstItem="hNJ-zs-gEf" firstAttribute="top" secondItem="FeK-ZV-Ixa" secondAttribute="bottom" id="4O6-zt-P8z"/>
1036
+ <constraint firstItem="FeK-ZV-Ixa" firstAttribute="top" secondItem="Rzy-1f-5jH" secondAttribute="top" constant="5" id="4go-we-4in"/>
1037
+ <constraint firstAttribute="trailing" secondItem="FeK-ZV-Ixa" secondAttribute="trailing" constant="2" id="RG8-si-rkn"/>
958
1038
  <constraint firstAttribute="bottom" secondItem="hNJ-zs-gEf" secondAttribute="bottom" id="fZW-Wn-SlG"/>
1039
+ <constraint firstItem="FeK-ZV-Ixa" firstAttribute="leading" secondItem="Rzy-1f-5jH" secondAttribute="leading" constant="2" id="iHM-FE-tdt"/>
959
1040
  <constraint firstAttribute="trailing" secondItem="hNJ-zs-gEf" secondAttribute="trailing" id="n1b-be-ZJg"/>
960
1041
  <constraint firstItem="hNJ-zs-gEf" firstAttribute="leading" secondItem="Rzy-1f-5jH" secondAttribute="leading" id="tqR-Sr-7wy"/>
961
1042
  </constraints>
962
1043
  </view>
963
- <view hidden="YES" contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="wEf-q2-hGB">
964
- <rect key="frame" x="40" y="162.33333333333337" width="313" height="513"/>
965
- <subviews>
966
- <tableView clipsSubviews="YES" contentMode="scaleToFill" alwaysBounceVertical="YES" showsHorizontalScrollIndicator="NO" showsVerticalScrollIndicator="NO" dataMode="prototypes" style="plain" separatorStyle="none" rowHeight="-1" estimatedRowHeight="-1" sectionHeaderHeight="-1" estimatedSectionHeaderHeight="-1" sectionFooterHeight="-1" estimatedSectionFooterHeight="-1" translatesAutoresizingMaskIntoConstraints="NO" id="D3s-qI-U1i">
967
- <rect key="frame" x="0.0" y="0.0" width="313" height="513"/>
968
- <color key="backgroundColor" systemColor="systemBackgroundColor"/>
969
- <prototypes>
970
- <tableViewCell clipsSubviews="YES" contentMode="scaleToFill" insetsLayoutMarginsFromSafeArea="NO" selectionStyle="none" hidesAccessoryWhenEditing="NO" indentationLevel="1" indentationWidth="0.0" reuseIdentifier="CityListTVC" rowHeight="66" id="gGP-JP-p4U" customClass="CityListTVC" customModule="EasyPay" customModuleProvider="target">
971
- <rect key="frame" x="0.0" y="50" width="313" height="66"/>
972
- <autoresizingMask key="autoresizingMask"/>
973
- <tableViewCellContentView key="contentView" opaque="NO" clipsSubviews="YES" multipleTouchEnabled="YES" contentMode="center" insetsLayoutMarginsFromSafeArea="NO" tableViewCell="gGP-JP-p4U" id="xyy-cO-M1m">
974
- <rect key="frame" x="0.0" y="0.0" width="313" height="66"/>
975
- <autoresizingMask key="autoresizingMask"/>
976
- <subviews>
977
- <view contentMode="scaleToFill" translatesAutoresizingMaskIntoConstraints="NO" id="gGr-7f-FPM">
978
- <rect key="frame" x="0.0" y="0.0" width="313" height="66"/>
979
- <subviews>
980
- <label opaque="NO" userInteractionEnabled="NO" contentMode="left" horizontalHuggingPriority="251" verticalHuggingPriority="251" text="Label" lineBreakMode="tailTruncation" baselineAdjustment="alignBaselines" adjustsFontSizeToFit="NO" translatesAutoresizingMaskIntoConstraints="NO" id="SgJ-ai-ta7">
981
- <rect key="frame" x="16" y="24" width="281" height="18"/>
982
- <fontDescription key="fontDescription" type="system" weight="medium" pointSize="15"/>
983
- <color key="textColor" white="0.0" alpha="1" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
984
- <nil key="highlightedColor"/>
985
- </label>
986
- </subviews>
987
- <color key="backgroundColor" systemColor="systemBackgroundColor"/>
988
- <constraints>
989
- <constraint firstAttribute="trailing" secondItem="SgJ-ai-ta7" secondAttribute="trailing" constant="16" id="HZD-5g-iMO"/>
990
- <constraint firstItem="SgJ-ai-ta7" firstAttribute="centerY" secondItem="gGr-7f-FPM" secondAttribute="centerY" id="Y4V-38-0kG"/>
991
- <constraint firstItem="SgJ-ai-ta7" firstAttribute="leading" secondItem="gGr-7f-FPM" secondAttribute="leading" constant="16" id="hDH-Ca-1PJ"/>
992
- </constraints>
993
- </view>
994
- </subviews>
995
- <constraints>
996
- <constraint firstItem="gGr-7f-FPM" firstAttribute="top" secondItem="xyy-cO-M1m" secondAttribute="top" id="6be-ek-F0K"/>
997
- <constraint firstAttribute="bottom" secondItem="gGr-7f-FPM" secondAttribute="bottom" id="Y9o-c8-O4B"/>
998
- <constraint firstItem="gGr-7f-FPM" firstAttribute="leading" secondItem="xyy-cO-M1m" secondAttribute="leading" id="Z10-SB-ak3"/>
999
- <constraint firstAttribute="trailing" secondItem="gGr-7f-FPM" secondAttribute="trailing" id="Z1B-at-gNF"/>
1000
- </constraints>
1001
- </tableViewCellContentView>
1002
- <connections>
1003
- <outlet property="lblCityName" destination="SgJ-ai-ta7" id="IGC-gh-5bM"/>
1004
- <outlet property="viewCell" destination="gGr-7f-FPM" id="vRZ-NZ-8ee"/>
1005
- </connections>
1006
- </tableViewCell>
1007
- </prototypes>
1008
- </tableView>
1009
- </subviews>
1010
- <color key="backgroundColor" systemColor="systemBackgroundColor"/>
1011
- <constraints>
1012
- <constraint firstAttribute="bottom" secondItem="D3s-qI-U1i" secondAttribute="bottom" id="5PS-XW-5L8"/>
1013
- <constraint firstItem="D3s-qI-U1i" firstAttribute="leading" secondItem="wEf-q2-hGB" secondAttribute="leading" id="Fjh-KM-4Q8"/>
1014
- <constraint firstItem="D3s-qI-U1i" firstAttribute="top" secondItem="wEf-q2-hGB" secondAttribute="top" id="WZp-aH-qDQ"/>
1015
- <constraint firstAttribute="trailing" secondItem="D3s-qI-U1i" secondAttribute="trailing" id="sWb-x7-9AT"/>
1016
- </constraints>
1017
- </view>
1018
1044
  </subviews>
1019
1045
  <color key="backgroundColor" white="0.0" alpha="0.0" colorSpace="custom" customColorSpace="genericGamma22GrayColorSpace"/>
1020
1046
  <constraints>
1021
1047
  <constraint firstItem="wEf-q2-hGB" firstAttribute="top" secondItem="Rzy-1f-5jH" secondAttribute="top" id="0SL-sE-Nj3"/>
1022
- <constraint firstAttribute="trailing" secondItem="3kQ-uP-ZdO" secondAttribute="trailing" constant="40" id="2bu-X4-gI7"/>
1048
+ <constraint firstAttribute="trailing" secondItem="3kQ-uP-ZdO" secondAttribute="trailing" constant="30" id="2bu-X4-gI7"/>
1023
1049
  <constraint firstItem="9r1-PT-89g" firstAttribute="top" secondItem="ANy-Uw-IO9" secondAttribute="top" constant="24" id="2rH-gI-AuP"/>
1024
1050
  <constraint firstItem="ogA-OT-bsj" firstAttribute="leading" secondItem="ANy-Uw-IO9" secondAttribute="leading" constant="16" id="3Jf-df-K4B"/>
1025
1051
  <constraint firstAttribute="trailing" secondItem="Vvj-GL-O4Q" secondAttribute="trailing" constant="16" id="3OV-5g-FDe"/>
@@ -1043,7 +1069,7 @@
1043
1069
  <constraint firstItem="Rzy-1f-5jH" firstAttribute="trailing" secondItem="3kQ-uP-ZdO" secondAttribute="trailing" id="mID-8s-HAE"/>
1044
1070
  <constraint firstAttribute="trailing" secondItem="Dyl-Qd-uAN" secondAttribute="trailing" constant="16" id="mhg-yh-hab"/>
1045
1071
  <constraint firstAttribute="bottom" secondItem="3kQ-uP-ZdO" secondAttribute="bottom" constant="40" id="oGx-q1-fsR"/>
1046
- <constraint firstItem="3kQ-uP-ZdO" firstAttribute="leading" secondItem="ANy-Uw-IO9" secondAttribute="leading" constant="40" id="quG-O4-0TD"/>
1072
+ <constraint firstItem="3kQ-uP-ZdO" firstAttribute="leading" secondItem="ANy-Uw-IO9" secondAttribute="leading" constant="30" id="quG-O4-0TD"/>
1047
1073
  <constraint firstItem="3kQ-uP-ZdO" firstAttribute="top" secondItem="2bH-JK-VL8" secondAttribute="top" id="s9J-fg-RgG"/>
1048
1074
  <constraint firstItem="ogA-OT-bsj" firstAttribute="top" secondItem="2da-8b-svn" secondAttribute="bottom" constant="20" id="zTU-DY-xo7"/>
1049
1075
  </constraints>
@@ -1080,6 +1106,8 @@
1080
1106
  <outlet property="lblStarCountryField" destination="dPc-CY-boU" id="e9C-4e-OLc"/>
1081
1107
  <outlet property="lblStarPostalCodeField" destination="beg-ZY-G9Y" id="0s4-ff-czc"/>
1082
1108
  <outlet property="lblStarStateField" destination="bVz-Rr-dQf" id="0jG-jd-BKk"/>
1109
+ <outlet property="searchBarCountryList" destination="Eeh-72-nEN" id="kJ2-ej-GwO"/>
1110
+ <outlet property="searchBarStateList" destination="FeK-ZV-Ixa" id="sOH-OW-YCW"/>
1083
1111
  <outlet property="tblViewCityList" destination="D3s-qI-U1i" id="jdQ-6n-yJB"/>
1084
1112
  <outlet property="tblViewCountryList" destination="chx-xo-pBI" id="eBU-w4-aoH"/>
1085
1113
  <outlet property="tblViewStateList" destination="hNJ-zs-gEf" id="FuU-vz-2Q2"/>
@@ -1095,7 +1123,7 @@
1095
1123
  </viewController>
1096
1124
  <placeholder placeholderIdentifier="IBFirstResponder" id="jb8-67-v36" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
1097
1125
  </objects>
1098
- <point key="canvasLocation" x="2694" y="-26"/>
1126
+ <point key="canvasLocation" x="2693.8931297709923" y="-26.056338028169016"/>
1099
1127
  </scene>
1100
1128
  <!--Additional InfoVC-->
1101
1129
  <scene sceneID="Vdw-5V-VNW">
@@ -8646,7 +8674,7 @@
8646
8674
  </viewController>
8647
8675
  <placeholder placeholderIdentifier="IBFirstResponder" id="cSS-E1-1Ih" userLabel="First Responder" customClass="UIResponder" sceneMemberID="firstResponder"/>
8648
8676
  </objects>
8649
- <point key="canvasLocation" x="3555" y="-727"/>
8677
+ <point key="canvasLocation" x="5213" y="765"/>
8650
8678
  </scene>
8651
8679
  <!--ThreeD Secure Payment DoneVC-->
8652
8680
  <scene sceneID="rqn-YV-GrD">
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@jimrising/easymerchantsdk-react-native",
3
- "version": "1.9.7",
3
+ "version": "1.9.9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
File without changes
File without changes
@@ -1,2 +0,0 @@
1
- #Tue Jun 03 14:11:22 IST 2025
2
- gradle.version=8.9
@@ -1 +0,0 @@
1
- F653042EE5D1BE45CCE4636F595E95F756634CDFCB88B853AA104087A76A9AF6
File without changes
Binary file