@regulaforensics/ionic-native-document-reader 7.4.417 → 7.5.59-rc

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@regulaforensics/ionic-native-document-reader",
3
- "version": "7.4.417",
3
+ "version": "7.5.59-rc",
4
4
  "description": "Ionic Native wrapper for cordova documentreader",
5
5
  "main": "index.js",
6
6
  "keywords": [
@@ -10,6 +10,7 @@
10
10
  android:theme="@style/AppTheme">
11
11
 
12
12
  <activity
13
+ android:screenOrientation="portrait"
13
14
  android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|smallestScreenSize|screenLayout|uiMode"
14
15
  android:name=".MainActivity"
15
16
  android:label="@string/title_activity_main"
@@ -1,6 +1,6 @@
1
1
  distributionBase=GRADLE_USER_HOME
2
2
  distributionPath=wrapper/dists
3
- distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-all.zip
3
+ distributionUrl=https\://services.gradle.org/distributions/gradle-8.5-all.zip
4
4
  networkTimeout=10000
5
5
  zipStoreBase=GRADLE_USER_HOME
6
6
  zipStorePath=wrapper/dists
@@ -44,15 +44,10 @@
44
44
  <key>UISupportedInterfaceOrientations</key>
45
45
  <array>
46
46
  <string>UIInterfaceOrientationPortrait</string>
47
- <string>UIInterfaceOrientationLandscapeLeft</string>
48
- <string>UIInterfaceOrientationLandscapeRight</string>
49
47
  </array>
50
48
  <key>UISupportedInterfaceOrientations~ipad</key>
51
49
  <array>
52
50
  <string>UIInterfaceOrientationPortrait</string>
53
- <string>UIInterfaceOrientationPortraitUpsideDown</string>
54
- <string>UIInterfaceOrientationLandscapeLeft</string>
55
- <string>UIInterfaceOrientationLandscapeRight</string>
56
51
  </array>
57
52
  <key>UIViewControllerBasedStatusBarAppearance</key>
58
53
  <true/>
@@ -1,3 +1,5 @@
1
+ source "https://github.com/CocoaPods/Specs.git"
2
+
1
3
  require_relative '../../node_modules/@capacitor/ios/scripts/pods_helpers'
2
4
 
3
5
  platform :ios, '13.0'
@@ -12,9 +12,9 @@
12
12
  "lint": "eslint"
13
13
  },
14
14
  "dependencies": {
15
- "@regulaforensics/cordova-plugin-document-reader-api": "7.4.620",
16
- "@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "7.4.623",
17
- "@regulaforensics/ionic-native-document-reader": "7.4.417",
15
+ "@regulaforensics/ionic-native-document-reader": "7.5.59-rc",
16
+ "@regulaforensics/cordova-plugin-document-reader-api": "7.5.78-rc",
17
+ "@regulaforensics/cordova-plugin-document-reader-core-fullauthrfid": "7.7.168-rc",
18
18
  "@awesome-cordova-plugins/camera": "6.6.0",
19
19
  "@awesome-cordova-plugins/file": "6.6.0",
20
20
  "@capacitor/android": "5.6.0",
@@ -228,6 +228,11 @@ function displayResults(results: DocumentReaderResults) {
228
228
  if (value != null)
229
229
  portraitImage.src = "data:image/png;base64," + value
230
230
  })
231
+
232
+ DocumentReader.graphicFieldImageByTypeSource(results, Enum.eGraphicFieldType.GF_PORTRAIT, Enum.eRPRM_ResultType.RFID_RESULT_TYPE_RFID_IMAGE_DATA).then((value: string | undefined) => {
233
+ if (value != null)
234
+ portraitImage.src = "data:image/png;base64," + value
235
+ })
231
236
  }
232
237
 
233
238
  function clearResults() {
@@ -1,5 +0,0 @@
1
- blank_issues_enabled: false
2
- contact_links:
3
- - name: Submit a request
4
- url: https://support.regulaforensics.com/hc/requests/new?utm_source=github
5
- about: Submit any requests to Regula Support Team
File without changes