@regulaforensics/ionic-native-document-reader 6.7.2 → 6.8.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.
- package/example/config.xml +1 -1
- package/example/package.json +3 -3
- package/example/src/app/home/home.page.ts +21 -19
- package/index.d.ts +107 -25
- package/index.js +53 -2788
- package/ngx/index.d.ts +107 -25
- package/ngx/index.js +54 -2789
- package/package.json +1 -1
- package/reactExample/ios/App/App.xcodeproj/project.pbxproj +2 -2
- package/reactExample/package.json +3 -3
- package/reactExample/src/pages/Home.tsx +1 -1
package/package.json
CHANGED
|
@@ -369,7 +369,7 @@
|
|
|
369
369
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
370
370
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
371
371
|
OTHER_SWIFT_FLAGS = "$(inherited) \"-D\" \"COCOAPODS\" \"-DDEBUG\"";
|
|
372
|
-
PRODUCT_BUNDLE_IDENTIFIER =
|
|
372
|
+
PRODUCT_BUNDLE_IDENTIFIER = regula.DocumentReader;
|
|
373
373
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
374
374
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = DEBUG;
|
|
375
375
|
SWIFT_VERSION = 5.0;
|
|
@@ -387,7 +387,7 @@
|
|
|
387
387
|
INFOPLIST_FILE = App/Info.plist;
|
|
388
388
|
IPHONEOS_DEPLOYMENT_TARGET = 12.0;
|
|
389
389
|
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks";
|
|
390
|
-
PRODUCT_BUNDLE_IDENTIFIER =
|
|
390
|
+
PRODUCT_BUNDLE_IDENTIFIER = regula.DocumentReader;
|
|
391
391
|
PRODUCT_NAME = "$(TARGET_NAME)";
|
|
392
392
|
SWIFT_ACTIVE_COMPILATION_CONDITIONS = "";
|
|
393
393
|
SWIFT_VERSION = 5.0;
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
"@awesome-cordova-plugins/image-picker": "^5.36.0",
|
|
17
17
|
"@ionic/react": "^6.0.0",
|
|
18
18
|
"@ionic/react-router": "^6.0.0",
|
|
19
|
-
"@regulaforensics/cordova-plugin-document-reader-api": "6.
|
|
20
|
-
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid": "6.
|
|
21
|
-
"@regulaforensics/ionic-native-document-reader": "6.
|
|
19
|
+
"@regulaforensics/cordova-plugin-document-reader-api": "6.8.1",
|
|
20
|
+
"@regulaforensics/cordova-plugin-document-reader-core-fullrfid": "6.8.1",
|
|
21
|
+
"@regulaforensics/ionic-native-document-reader": "6.8.1",
|
|
22
22
|
"@testing-library/jest-dom": "^5.11.9",
|
|
23
23
|
"@testing-library/react": "^11.2.5",
|
|
24
24
|
"@testing-library/user-event": "^12.6.3",
|
|
@@ -157,7 +157,7 @@ function restartRfidUI() {
|
|
|
157
157
|
|
|
158
158
|
function updateRfidUI(notification: DocumentReaderNotification) {
|
|
159
159
|
if (notification.code === Enum.eRFID_NotificationCodes.RFID_NOTIFICATION_PCSC_READING_DATAGROUP)
|
|
160
|
-
rfidDescription =
|
|
160
|
+
rfidDescription = notification.dataFileType!.toString()
|
|
161
161
|
rfidUIHeader = "Reading RFID"
|
|
162
162
|
rfidUIHeaderColor = "black"
|
|
163
163
|
rfidProgress = notification.value!
|