react-native-scanbot-barcode-scanner-sdk 7.0.0-rc.1 → 7.0.0-rc.3
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/Libraries.txt +13 -33
- package/README.md +272 -39
- package/RNScanbotBarcodeSDK.podspec +1 -1
- package/android/gradle.properties +1 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkModule.kt +1 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkPluginResultDelegate.kt +2 -2
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewManager.kt +5 -0
- package/android/src/paper/com/facebook/react/viewmanagers/ScanbotBarcodeScannerViewManagerDelegate.java +3 -0
- package/android/src/paper/com/facebook/react/viewmanagers/ScanbotBarcodeScannerViewManagerInterface.java +1 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.h +1 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.m +17 -11
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.h +1 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.mm +18 -13
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.h +3 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.m +4 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewManager.mm +1 -0
- package/ios/ScanbotBarcodeSdkPluginResultDelegate.m +1 -1
- package/lib/commonjs/barcode/BarcodeConfigurationTypes.js +19 -19
- package/lib/commonjs/barcode/BarcodeTypes.js +1 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js +10 -5
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -1
- package/lib/commonjs/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -1
- package/lib/commonjs/documents/CommonFieldType.js +1 -1
- package/lib/commonjs/utils/json/JsonSerializationTypes.js +1 -1
- package/lib/module/barcode/BarcodeConfigurationTypes.js +19 -19
- package/lib/module/barcode/BarcodeTypes.js +1 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js +10 -5
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -1
- package/lib/module/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -1
- package/lib/module/documents/CommonFieldType.js +1 -1
- package/lib/module/utils/json/JsonSerializationTypes.js +1 -1
- package/lib/typescript/src/barcode/BarcodeConfigurationTypes.d.ts +19 -19
- package/lib/typescript/src/barcode/BarcodeTypes.d.ts +1 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +1 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts +6 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +1 -1
- package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts +1 -0
- package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +1 -1
- package/lib/typescript/src/documents/CommonFieldType.d.ts +1 -1
- package/lib/typescript/src/utils/json/JsonSerializationTypes.d.ts +1 -1
- package/package.json +6 -11
- package/src/barcode/BarcodeConfigurationTypes.ts +19 -19
- package/src/barcode/BarcodeTypes.ts +1 -1
- package/src/component/barcode-camera-view/ScanbotBarcodeCameraView.tsx +11 -4
- package/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.ts +6 -1
- package/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.ts +1 -0
- package/src/documents/CommonFieldType.ts +1 -1
- package/src/utils/json/JsonSerializationTypes.ts +1 -1
|
@@ -77,6 +77,7 @@ interface NativeProps extends ViewProps {
|
|
|
77
77
|
maxZoom?: WithDefault<Float, 12.0>;
|
|
78
78
|
};
|
|
79
79
|
cameraModule?: WithDefault<string, 'BACK'>;
|
|
80
|
+
hardwareButtonsEnabled?: WithDefault<boolean, true>;
|
|
80
81
|
scanningEnabled?: WithDefault<boolean, true>;
|
|
81
82
|
minFocusDistanceLock?: WithDefault<boolean, false>;
|
|
82
83
|
overlayEnabled?: WithDefault<boolean, false>;
|