@regulaforensics/document-reader 9.6.845-nightly → 9.6.846-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/RNDocumentReader.podspec +2 -2
- package/android/build.gradle +2 -2
- package/android/cordova.gradle +2 -2
- package/examples/capacitor/ios/App/Podfile +2 -1
- package/examples/capacitor/package-lock.json +224 -218
- package/examples/capacitor/package.json +6 -3
- package/examples/ionic/package-lock.json +1908 -2031
- package/examples/ionic/package.json +17 -14
- package/examples/react_native/package-lock.json +225 -180
- package/examples/react_native/package.json +5 -4
- package/ios/RGLWConfig.m +3 -0
- package/package.json +1 -1
- package/plugin.xml +3 -3
- package/test/json.tsx +1 -0
- package/test/package-lock.json +1 -1
- package/www/capacitor/index.js +2 -2
- package/www/capacitor/params/customization/Customization.js +13 -0
- package/www/capacitor/results/visual_results/FieldType.js +1 -0
- package/www/capacitor/rfid/RFIDErrorCodes.js +1 -1
- package/www/cordova.js +17 -1
- package/www/react-native/index.js +2 -2
- package/www/react-native/params/customization/Customization.js +13 -0
- package/www/react-native/results/visual_results/FieldType.js +1 -0
- package/www/react-native/rfid/RFIDErrorCodes.js +1 -1
- package/www/types/index.d.ts +2 -2
- package/www/types/params/customization/Customization.d.ts +19 -7
- package/www/types/results/visual_results/FieldType.d.ts +1 -0
- package/www/types/rfid/RFIDErrorCodes.d.ts +1 -1
|
@@ -6,21 +6,21 @@
|
|
|
6
6
|
"android": "scripts/android.sh"
|
|
7
7
|
},
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@angular-devkit/build-angular": "^21.2.
|
|
10
|
-
"@angular/cli": "^21.2.
|
|
11
|
-
"@angular/common": "^21.2.
|
|
12
|
-
"@angular/compiler-cli": "^21.2.
|
|
13
|
-
"@angular/core": "^21.2.
|
|
14
|
-
"@angular/forms": "^21.2.
|
|
15
|
-
"@angular/platform-browser-dynamic": "^21.2.
|
|
16
|
-
"@angular/router": "^21.2.
|
|
17
|
-
"@ionic/angular": "^8.8.
|
|
9
|
+
"@angular-devkit/build-angular": "^21.2.16",
|
|
10
|
+
"@angular/cli": "^21.2.16",
|
|
11
|
+
"@angular/common": "^21.2.17",
|
|
12
|
+
"@angular/compiler-cli": "^21.2.17",
|
|
13
|
+
"@angular/core": "^21.2.17",
|
|
14
|
+
"@angular/forms": "^21.2.17",
|
|
15
|
+
"@angular/platform-browser-dynamic": "^21.2.17",
|
|
16
|
+
"@angular/router": "^21.2.17",
|
|
17
|
+
"@ionic/angular": "^8.8.11",
|
|
18
18
|
"@ionic/cordova-builders": "^12.3.0",
|
|
19
19
|
"@awesome-cordova-plugins/camera": "^8.1.0",
|
|
20
20
|
"@awesome-cordova-plugins/file": "^8.1.0",
|
|
21
|
-
"@regulaforensics/document-reader": "9.6.
|
|
22
|
-
"@regulaforensics/document-reader-core-fullauthrfid": "9.
|
|
23
|
-
"@regulaforensics/document-reader-btdevice": "9.
|
|
21
|
+
"@regulaforensics/document-reader": "9.6.846-rc",
|
|
22
|
+
"@regulaforensics/document-reader-core-fullauthrfid": "9.6.2422-rc",
|
|
23
|
+
"@regulaforensics/document-reader-btdevice": "9.5.47-rc",
|
|
24
24
|
"cordova-android": "^14.0.1",
|
|
25
25
|
"cordova-ios": "^7.1.1",
|
|
26
26
|
"cordova-plugin-camera": "^8.0.0",
|
|
@@ -30,13 +30,16 @@
|
|
|
30
30
|
"overrides": {
|
|
31
31
|
"ajv": "^8.18.0",
|
|
32
32
|
"serialize-javascript": "^7.0.4",
|
|
33
|
-
"@angular/compiler": "^21.2.4",
|
|
34
33
|
"undici": "^7.24.0",
|
|
35
34
|
"picomatch": "^4.0.4",
|
|
36
35
|
"postcss": "^8.5.10",
|
|
37
36
|
"uuid": "^14.0.0",
|
|
38
37
|
"vite": "^7.3.2",
|
|
39
|
-
"webpack-dev-server": "^5.2.4"
|
|
38
|
+
"webpack-dev-server": "^5.2.4",
|
|
39
|
+
"@babel/core": "^7.29.0",
|
|
40
|
+
"esbuild": "^0.28.1",
|
|
41
|
+
"http-proxy-middleware": "^3.0.7",
|
|
42
|
+
"piscina": "^5.2.0"
|
|
40
43
|
},
|
|
41
44
|
"cordova": {
|
|
42
45
|
"plugins": {
|