@regulaforensics/react-native-document-reader-api 7.5.772-nightly → 7.5.777-nightly

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.
@@ -12,8 +12,8 @@ Pod::Spec.new do |s|
12
12
  s.homepage = 'https://regulaforensics.com'
13
13
 
14
14
  s.source = { :http => 'file:' + __dir__ }
15
- s.ios.deployment_target = '11.0'
15
+ s.ios.deployment_target = '12.0'
16
16
  s.source_files = "ios/*.{h,m}"
17
- s.dependency 'DocumentReaderNightly', '7.5.4184'
17
+ s.dependency 'DocumentReaderNightly', '7.5.4212'
18
18
  s.dependency 'React'
19
19
  end
@@ -41,7 +41,7 @@ dependencies {
41
41
  //noinspection GradleDynamicVersion
42
42
  implementation 'com.facebook.react:react-native:+'
43
43
  //noinspection GradleDependency
44
- implementation('com.regula.documentreader:api:7.5.10376') {
44
+ implementation('com.regula.documentreader:api:7.5.10402') {
45
45
  transitive = true
46
46
  }
47
47
  }
@@ -274,8 +274,6 @@ fun setCustomization(customization: ParamsCustomization, opts: JSONObject, conte
274
274
  "cameraFrameLineLength" -> editor.setCameraFrameLineLength(v.toInt())
275
275
  "cameraFrameShapeType" -> editor.setCameraFrameShapeType(v.toInt())
276
276
  "cameraFrameOffsetWidth" -> editor.setCameraFrameOffsetWidth(v.toInt())
277
- "nextPageAnimationStartDelay" -> editor.setNextPageAnimationStartDelay(v.toInt())
278
- "nextPageAnimationEndDelay" -> editor.setNextPageAnimationEndDelay(v.toInt())
279
277
  "activityIndicatorSize" -> editor.setActivityIndicatorSize(v.toInt())
280
278
  "status" -> editor.setStatus(v as String)
281
279
  "resultStatus" -> editor.setResultStatus(v as String)
@@ -300,6 +298,8 @@ fun setCustomization(customization: ParamsCustomization, opts: JSONObject, conte
300
298
  "cameraFramePortraitAspectRatio" -> editor.setCameraFramePortraitAspectRatio(v.toFloat())
301
299
  "cameraFrameCornerRadius" -> editor.setCameraFrameCornerRadius(v.toFloat())
302
300
  "livenessAnimationPositionMultiplier" -> editor.setLivenessAnimationPositionMultiplier(v.toFloat())
301
+ "nextPageAnimationStartDelay" -> editor.setNextPageAnimationStartDelay(v.toFloat())
302
+ "nextPageAnimationEndDelay" -> editor.setNextPageAnimationEndDelay(v.toFloat())
303
303
  "multipageAnimationFrontImage" -> editor.setMultipageAnimationFrontImage(v.toDrawable(context))
304
304
  "multipageAnimationBackImage" -> editor.setMultipageAnimationBackImage(v.toDrawable(context))
305
305
  "borderBackgroundImage" -> editor.setBorderBackgroundImage(v.toDrawable(context))
@@ -348,8 +348,6 @@ fun getCustomization(customization: ParamsCustomization) = mapOf(
348
348
  "cameraFrameLineLength" to customization.cameraFrameLineLength,
349
349
  "cameraFrameShapeType" to customization.cameraFrameShapeType,
350
350
  "cameraFrameOffsetWidth" to customization.cameraFrameOffsetWidth,
351
- "nextPageAnimationStartDelay" to customization.nextPageAnimationStartDelay,
352
- "nextPageAnimationEndDelay" to customization.nextPageAnimationEndDelay,
353
351
  "activityIndicatorSize" to customization.activityIndicatorSize,
354
352
  "status" to customization.status,
355
353
  "resultStatus" to customization.resultStatus,
@@ -374,6 +372,8 @@ fun getCustomization(customization: ParamsCustomization) = mapOf(
374
372
  "cameraFramePortraitAspectRatio" to customization.cameraFramePortraitAspectRatio,
375
373
  "cameraFrameCornerRadius" to customization.cameraFrameCornerRadius,
376
374
  "livenessAnimationPositionMultiplier" to customization.livenessAnimationPositionMultiplier,
375
+ "nextPageAnimationStartDelay" to customization.nextPageAnimationStartDelay,
376
+ "nextPageAnimationEndDelay" to customization.nextPageAnimationEndDelay,
377
377
  "multipageAnimationFrontImage" to customization.multipageAnimationFrontImage.toString(),
378
378
  "multipageAnimationBackImage" to customization.multipageAnimationBackImage.toString(),
379
379
  "borderBackgroundImage" to customization.borderBackgroundImage.toString(),
@@ -10,8 +10,8 @@
10
10
  "test": "jest"
11
11
  },
12
12
  "dependencies": {
13
- "@regulaforensics/react-native-document-reader-api": "7.5.772-nightly",
14
- "@regulaforensics/react-native-document-reader-core-fullauthrfid": "7.5.810-nightly",
13
+ "@regulaforensics/react-native-document-reader-api": "7.5.777-nightly",
14
+ "@regulaforensics/react-native-document-reader-core-fullauthrfid": "7.5.852-nightly",
15
15
  "react-native-progress": "5.0.0",
16
16
  "react-native-radio-buttons-group": "3.0.5",
17
17
  "@rneui/base": "4.0.0-rc.7",
package/ios/RGLWConfig.m CHANGED
@@ -747,7 +747,7 @@
747
747
  result[@"autoSettings"] = [NSNumber numberWithBool:rfidScenario.autoSettings];
748
748
  result[@"proceedReadingAlways"] = [NSNumber numberWithBool:rfidScenario.proceedReadingAlways];
749
749
  result[@"readDTC"] = [NSNumber numberWithBool:rfidScenario.readDTC];
750
- result[@"mrzStrictCheck"] = [NSNumber numberWithBool:rfidScenario.mrzStrictCheck];
750
+ result[@"mrzStrictCheck"] = rfidScenario.mrzStrictCheck;
751
751
 
752
752
  // Int
753
753
  result[@"signManagementAction"] = [NSNumber numberWithInteger:rfidScenario.signManagementAction];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/react-native-document-reader-api",
3
- "version": "7.5.772-nightly",
3
+ "version": "7.5.777-nightly",
4
4
  "description": "React Native module for reading and validation of identification documents (API framework)",
5
5
  "main": "index.js",
6
6
  "scripts": {