scandit-react-native-datacapture-id 8.0.0 → 8.0.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/android/build.gradle
CHANGED
|
@@ -75,7 +75,7 @@ if (file( "${rootProject.projectDir}/build-test.gradle").exists()) {
|
|
|
75
75
|
}
|
|
76
76
|
|
|
77
77
|
dependencies {
|
|
78
|
-
def sdk_version = "8.0.
|
|
78
|
+
def sdk_version = "8.0.1"
|
|
79
79
|
|
|
80
80
|
println("Version of the native sdk used in this build: ${safeExtGet("global_sdk_version", sdk_version)}")
|
|
81
81
|
api project(path: ":scandit-react-native-datacapture-core")
|
package/dist/id.js
CHANGED
|
@@ -1822,10 +1822,16 @@ class IdCaptureController extends BaseNewController {
|
|
|
1822
1822
|
return this._proxy.$updateIdCaptureMode({ modeJson: JSON.stringify(this.idCapture.toJSON()), modeId: this.modeId });
|
|
1823
1823
|
}
|
|
1824
1824
|
applyIdCaptureModeSettings(newSettings) {
|
|
1825
|
-
return this._proxy.$applyIdCaptureModeSettings({
|
|
1825
|
+
return this._proxy.$applyIdCaptureModeSettings({
|
|
1826
|
+
settingsJson: JSON.stringify(newSettings.toJSON()),
|
|
1827
|
+
modeId: this.modeId,
|
|
1828
|
+
});
|
|
1826
1829
|
}
|
|
1827
1830
|
updateFeedback(feedback) {
|
|
1828
|
-
return this._proxy.$
|
|
1831
|
+
return this._proxy.$updateIdCaptureFeedback({
|
|
1832
|
+
feedbackJson: JSON.stringify(feedback.toJSON()),
|
|
1833
|
+
modeId: this.modeId,
|
|
1834
|
+
});
|
|
1829
1835
|
}
|
|
1830
1836
|
get modeId() {
|
|
1831
1837
|
return this.idCapture.modeId;
|