react-native-scanbot-barcode-scanner-sdk 7.1.2-rc.2 → 8.0.0-rc.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/LICENSE +1 -1
- package/Libraries.txt +437 -17
- package/README.md +32 -34
- package/RNScanbotBarcodeSDK.podspec +3 -2
- package/android/gradle.properties +3 -3
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkModule.kt +117 -69
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/ScanbotBarcodeSdkPluginResultDelegate.kt +3 -2
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerView.kt +76 -50
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewEvents.kt +24 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/ScanbotBarcodeScannerViewManager.kt +66 -55
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/components/barcode_scanner_view/models/ScanbotBarcodeScannerModels.kt +1 -1
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/Extensions.kt +19 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.h +8 -7
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerLegacyView.m +92 -221
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.h +12 -8
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerView.mm +147 -317
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController+Utils.swift +74 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewController.swift +429 -0
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewManager.mm +17 -23
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewOperators.h +95 -0
- package/ios/ScanbotBarcodeSdk.m +58 -76
- package/ios/ScanbotBarcodeSdkPluginResultDelegate.m +2 -6
- package/lib/commonjs/Barcode.js +51 -0
- package/lib/commonjs/Barcode.js.map +1 -0
- package/lib/commonjs/ImageProcessor.js +24 -0
- package/lib/commonjs/ImageProcessor.js.map +1 -0
- package/lib/commonjs/Sdk.js +57 -0
- package/lib/commonjs/Sdk.js.map +1 -0
- package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +14 -9
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
- package/lib/commonjs/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
- package/lib/commonjs/{component/barcode-camera-view → components}/index.js +3 -3
- package/lib/commonjs/components/index.js.map +1 -0
- package/lib/commonjs/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
- package/lib/commonjs/impl/BarcodeScannerImpl.js +59 -0
- package/lib/commonjs/impl/BarcodeScannerImpl.js.map +1 -0
- package/lib/commonjs/impl/ImageProcessorImpl.js +20 -0
- package/lib/commonjs/impl/ImageProcessorImpl.js.map +1 -0
- package/lib/commonjs/impl/SdkImpl.js +27 -0
- package/lib/commonjs/impl/SdkImpl.js.map +1 -0
- package/lib/commonjs/impl/index.js +39 -0
- package/lib/commonjs/impl/index.js.map +1 -0
- package/lib/commonjs/impl/scanbotBarcodeSDKModule.js +22 -0
- package/lib/commonjs/impl/scanbotBarcodeSDKModule.js.map +1 -0
- package/lib/commonjs/index.js +18 -162
- package/lib/commonjs/index.js.map +1 -1
- package/lib/commonjs/types/base/SdkConfiguration.js +106 -0
- package/lib/commonjs/types/base/SdkConfiguration.js.map +1 -0
- package/lib/commonjs/{base/barcodeSDKConfigurations.js → types/base/customTypes.js} +1 -1
- package/lib/commonjs/types/base/customTypes.js.map +1 -0
- package/lib/commonjs/types/base/errors.js +139 -0
- package/lib/commonjs/types/base/errors.js.map +1 -0
- package/lib/commonjs/types/base/index.js +50 -0
- package/lib/commonjs/types/base/index.js.map +1 -0
- package/lib/commonjs/types/base/utils.js +59 -0
- package/lib/commonjs/types/base/utils.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -74
- package/lib/commonjs/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +62 -10
- package/lib/commonjs/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
- package/lib/commonjs/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
- package/lib/commonjs/{barcode → types/core/barcode}/BarcodeTypes.js +31 -12
- package/lib/commonjs/types/core/barcode/BarcodeTypes.js.map +1 -0
- package/lib/commonjs/types/core/barcode/index.js.map +1 -0
- package/lib/commonjs/types/core/camera/Camera.js +23 -0
- package/lib/commonjs/types/core/camera/Camera.js.map +1 -0
- package/lib/commonjs/types/core/camera/index.js +17 -0
- package/lib/commonjs/types/core/camera/index.js.map +1 -0
- package/lib/commonjs/types/core/common/CommonTypes.js +29 -0
- package/lib/commonjs/types/core/common/CommonTypes.js.map +1 -0
- package/lib/commonjs/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -3
- package/lib/commonjs/types/core/common/JsonSerializationTypes.js.map +1 -0
- package/lib/commonjs/types/core/common/index.js +28 -0
- package/lib/commonjs/types/core/common/index.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1131 -160
- package/lib/commonjs/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
- package/lib/commonjs/types/core/generic_document/CommonFieldType.js.map +1 -0
- package/lib/commonjs/{documents → types/core/generic_document}/GenericDocument.js +13 -18
- package/lib/commonjs/types/core/generic_document/GenericDocument.js.map +1 -0
- package/lib/commonjs/types/core/generic_document/index.js.map +1 -0
- package/lib/commonjs/{utils → types/core}/geometry/Geometry.js +4 -8
- package/lib/commonjs/types/core/geometry/Geometry.js.map +1 -0
- package/lib/commonjs/types/core/geometry/index.js +17 -0
- package/lib/commonjs/types/core/geometry/index.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/ImageRefTypes.js +157 -69
- package/lib/commonjs/types/core/image/ImageRefTypes.js.map +1 -0
- package/lib/commonjs/types/core/image/ImageTypes.js +41 -0
- package/lib/commonjs/types/core/image/ImageTypes.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/image.js +54 -50
- package/lib/commonjs/types/core/image/image.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/image}/index.js +0 -11
- package/lib/commonjs/types/core/image/index.js.map +1 -0
- package/lib/commonjs/types/core/index.js +105 -0
- package/lib/commonjs/types/core/index.js.map +1 -0
- package/lib/commonjs/types/core/licensing/LicensingTypes.js +239 -0
- package/lib/commonjs/types/core/licensing/LicensingTypes.js.map +1 -0
- package/lib/commonjs/types/core/licensing/index.js +17 -0
- package/lib/commonjs/types/core/licensing/index.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
- package/lib/commonjs/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -8
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -6
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -3
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
- package/lib/commonjs/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
- package/lib/commonjs/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
- package/lib/commonjs/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
- package/lib/commonjs/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
- package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js +23 -0
- package/lib/commonjs/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -3
- package/lib/commonjs/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/CameraPermission.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -35
- package/lib/commonjs/types/core/ui_v2/common/Common.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
- package/lib/commonjs/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
- package/lib/commonjs/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
- package/lib/commonjs/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
- package/lib/commonjs/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
- package/lib/commonjs/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
- package/lib/commonjs/{ui_v2 → types/core/ui_v2}/index.js +15 -15
- package/lib/commonjs/types/core/ui_v2/index.js.map +1 -0
- package/lib/commonjs/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -4
- package/lib/commonjs/types/core/utils/ObjectPoolTypes.js.map +1 -0
- package/lib/commonjs/types/core/utils/index.js +28 -0
- package/lib/commonjs/types/core/utils/index.js.map +1 -0
- package/lib/commonjs/types/core/utils/utils.js +10 -0
- package/lib/commonjs/types/core/utils/utils.js.map +1 -0
- package/lib/commonjs/types/index.js +28 -0
- package/lib/commonjs/types/index.js.map +1 -0
- package/lib/module/Barcode.js +45 -0
- package/lib/module/Barcode.js.map +1 -0
- package/lib/module/ImageProcessor.js +19 -0
- package/lib/module/ImageProcessor.js.map +1 -0
- package/lib/module/Sdk.js +51 -0
- package/lib/module/Sdk.js.map +1 -0
- package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.js +10 -4
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraView.js.map +1 -0
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +1 -0
- package/lib/module/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +1 -0
- package/lib/module/components/index.js +4 -0
- package/lib/module/components/index.js.map +1 -0
- package/lib/module/components/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +1 -0
- package/lib/module/impl/BarcodeScannerImpl.js +53 -0
- package/lib/module/impl/BarcodeScannerImpl.js.map +1 -0
- package/lib/module/impl/ImageProcessorImpl.js +15 -0
- package/lib/module/impl/ImageProcessorImpl.js.map +1 -0
- package/lib/module/impl/SdkImpl.js +22 -0
- package/lib/module/impl/SdkImpl.js.map +1 -0
- package/lib/module/impl/index.js +4 -0
- package/lib/module/impl/index.js.map +1 -0
- package/lib/module/impl/scanbotBarcodeSDKModule.js +16 -0
- package/lib/module/impl/scanbotBarcodeSDKModule.js.map +1 -0
- package/lib/module/index.js +5 -119
- package/lib/module/index.js.map +1 -1
- package/lib/module/types/base/SdkConfiguration.js +100 -0
- package/lib/module/types/base/SdkConfiguration.js.map +1 -0
- package/lib/module/types/base/customTypes.js +2 -0
- package/lib/module/types/base/customTypes.js.map +1 -0
- package/lib/module/types/base/errors.js +119 -0
- package/lib/module/types/base/errors.js.map +1 -0
- package/lib/module/types/base/index.js +5 -0
- package/lib/module/types/base/index.js.map +1 -0
- package/lib/module/types/base/utils.js +52 -0
- package/lib/module/types/base/utils.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeConfigurationTypes.js +244 -76
- package/lib/module/types/core/barcode/BarcodeConfigurationTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeDocumentTypes.js +60 -9
- package/lib/module/types/core/barcode/BarcodeDocumentTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeScannerTypes.js +39 -28
- package/lib/module/types/core/barcode/BarcodeScannerTypes.js.map +1 -0
- package/lib/module/{barcode → types/core/barcode}/BarcodeTypes.js +30 -11
- package/lib/module/types/core/barcode/BarcodeTypes.js.map +1 -0
- package/lib/module/types/core/barcode/index.js.map +1 -0
- package/lib/module/types/core/camera/Camera.js +17 -0
- package/lib/module/types/core/camera/Camera.js.map +1 -0
- package/lib/module/types/core/camera/index.js +2 -0
- package/lib/module/types/core/camera/index.js.map +1 -0
- package/lib/module/types/core/common/CommonTypes.js +23 -0
- package/lib/module/types/core/common/CommonTypes.js.map +1 -0
- package/lib/module/{utils/json → types/core/common}/JsonSerializationTypes.js +2 -4
- package/lib/module/types/core/common/JsonSerializationTypes.js.map +1 -0
- package/lib/module/types/core/common/index.js +3 -0
- package/lib/module/types/core/common/index.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/BarcodeDocumentModel.js +1129 -159
- package/lib/module/types/core/generic_document/BarcodeDocumentModel.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/CommonFieldType.js +6 -3
- package/lib/module/types/core/generic_document/CommonFieldType.js.map +1 -0
- package/lib/module/{documents → types/core/generic_document}/GenericDocument.js +13 -18
- package/lib/module/types/core/generic_document/GenericDocument.js.map +1 -0
- package/lib/module/types/core/generic_document/index.js.map +1 -0
- package/lib/module/{utils → types/core}/geometry/Geometry.js +4 -9
- package/lib/module/types/core/geometry/Geometry.js.map +1 -0
- package/lib/module/types/core/geometry/index.js +2 -0
- package/lib/module/types/core/geometry/index.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/ImageRefTypes.js +156 -68
- package/lib/module/types/core/image/ImageRefTypes.js.map +1 -0
- package/lib/module/types/core/image/ImageTypes.js +35 -0
- package/lib/module/types/core/image/ImageTypes.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/image.js +54 -49
- package/lib/module/types/core/image/image.js.map +1 -0
- package/lib/module/{imageRef → types/core/image}/index.js +0 -1
- package/lib/module/types/core/image/index.js.map +1 -0
- package/lib/module/types/core/index.js +10 -0
- package/lib/module/types/core/index.js.map +1 -0
- package/lib/module/types/core/licensing/LicensingTypes.js +233 -0
- package/lib/module/types/core/licensing/LicensingTypes.js.map +1 -0
- package/lib/module/types/core/licensing/index.js +2 -0
- package/lib/module/types/core/licensing/index.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.js +8 -14
- package/lib/module/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.js +4 -9
- package/lib/module/types/core/ui_v2/barcode/BarcodeInfoMapping.js.map +1 -0
- package/lib/module/types/core/ui_v2/barcode/BarcodeItemMapper.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.js +17 -19
- package/lib/module/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.js +3 -7
- package/lib/module/types/core/ui_v2/barcode/BarcodeScannerUiResult.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.js +1 -4
- package/lib/module/types/core/ui_v2/barcode/BarcodeTextLocalization.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.js +6 -6
- package/lib/module/types/core/ui_v2/barcode/BarcodeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.js +6 -9
- package/lib/module/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.js +11 -14
- package/lib/module/types/core/ui_v2/barcode/MultipleScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.js +4 -6
- package/lib/module/types/core/ui_v2/barcode/SingleScanningModeUseCase.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.js +2 -4
- package/lib/module/types/core/ui_v2/common/ActionBarConfiguration.js.map +1 -0
- package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js +17 -0
- package/lib/module/types/core/ui_v2/common/BottomBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.js +11 -4
- package/lib/module/types/core/ui_v2/common/CameraConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/CameraPermission.js +2 -5
- package/lib/module/types/core/ui_v2/common/CameraPermission.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/Common.js +20 -36
- package/lib/module/types/core/ui_v2/common/Common.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.js +1 -0
- package/lib/module/types/core/ui_v2/common/NavigationBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.js +2 -4
- package/lib/module/types/core/ui_v2/common/ScanCompletionOverlay.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.js +2 -4
- package/lib/module/types/core/ui_v2/common/ScanbotAlertDialog.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.js +4 -4
- package/lib/module/types/core/ui_v2/common/TopBarConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.js +3 -6
- package/lib/module/types/core/ui_v2/common/UserGuidanceConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.js +14 -19
- package/lib/module/types/core/ui_v2/common/ViewFinderConfiguration.js.map +1 -0
- package/lib/module/{ui_v2 → types/core/ui_v2}/index.js +2 -2
- package/lib/module/types/core/ui_v2/index.js.map +1 -0
- package/lib/module/{imageRef → types/core/utils}/ObjectPoolTypes.js +2 -5
- package/lib/module/types/core/utils/ObjectPoolTypes.js.map +1 -0
- package/lib/module/types/core/utils/index.js +3 -0
- package/lib/module/types/core/utils/index.js.map +1 -0
- package/lib/module/types/core/utils/utils.js +8 -0
- package/lib/module/types/core/utils/utils.js.map +1 -0
- package/lib/module/types/index.js +3 -0
- package/lib/module/types/index.js.map +1 -0
- package/lib/typescript/src/Barcode.d.ts +47 -0
- package/lib/typescript/src/Barcode.d.ts.map +1 -0
- package/lib/typescript/src/ImageProcessor.d.ts +12 -0
- package/lib/typescript/src/ImageProcessor.d.ts.map +1 -0
- package/lib/typescript/src/Sdk.d.ts +58 -0
- package/lib/typescript/src/Sdk.d.ts.map +1 -0
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +1 -0
- package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts +17 -12
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +1 -0
- package/lib/typescript/src/components/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +1 -0
- package/lib/typescript/src/components/index.d.ts +4 -0
- package/lib/typescript/src/components/index.d.ts.map +1 -0
- package/lib/typescript/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts +6 -0
- package/lib/typescript/src/components/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +1 -0
- package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts +2 -0
- package/lib/typescript/src/impl/BarcodeScannerImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/ImageProcessorImpl.d.ts +2 -0
- package/lib/typescript/src/impl/ImageProcessorImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/SdkImpl.d.ts +2 -0
- package/lib/typescript/src/impl/SdkImpl.d.ts.map +1 -0
- package/lib/typescript/src/impl/index.d.ts +4 -0
- package/lib/typescript/src/impl/index.d.ts.map +1 -0
- package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts +2 -0
- package/lib/typescript/src/impl/scanbotBarcodeSDKModule.d.ts.map +1 -0
- package/lib/typescript/src/index.d.ts +5 -66
- package/lib/typescript/src/index.d.ts.map +1 -1
- package/lib/typescript/src/types/base/SdkConfiguration.d.ts +74 -0
- package/lib/typescript/src/types/base/SdkConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/types/base/customTypes.d.ts +15 -0
- package/lib/typescript/src/types/base/customTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/base/errors.d.ts +55 -0
- package/lib/typescript/src/types/base/errors.d.ts.map +1 -0
- package/lib/typescript/src/types/base/index.d.ts +5 -0
- package/lib/typescript/src/types/base/index.d.ts.map +1 -0
- package/lib/typescript/src/types/base/utils.d.ts +3 -0
- package/lib/typescript/src/types/base/utils.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.d.ts +203 -36
- package/lib/typescript/src/types/core/barcode/BarcodeConfigurationTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts +117 -0
- package/lib/typescript/src/types/core/barcode/BarcodeDocumentTypes.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeScannerTypes.d.ts +68 -21
- package/lib/typescript/src/types/core/barcode/BarcodeScannerTypes.d.ts.map +1 -0
- package/lib/typescript/src/{barcode → types/core/barcode}/BarcodeTypes.d.ts +390 -13
- package/lib/typescript/src/types/core/barcode/BarcodeTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/barcode/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/camera/Camera.d.ts +26 -0
- package/lib/typescript/src/types/core/camera/Camera.d.ts.map +1 -0
- package/lib/typescript/src/types/core/camera/index.d.ts +2 -0
- package/lib/typescript/src/types/core/camera/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/common/CommonTypes.d.ts +36 -0
- package/lib/typescript/src/types/core/common/CommonTypes.d.ts.map +1 -0
- package/lib/typescript/src/{utils/json → types/core/common}/JsonSerializationTypes.d.ts +13 -4
- package/lib/typescript/src/types/core/common/JsonSerializationTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/common/index.d.ts +3 -0
- package/lib/typescript/src/types/core/common/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts +2360 -0
- package/lib/typescript/src/types/core/generic_document/BarcodeDocumentModel.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts +176 -0
- package/lib/typescript/src/types/core/generic_document/CommonFieldType.d.ts.map +1 -0
- package/lib/typescript/src/{documents → types/core/generic_document}/GenericDocument.d.ts +82 -14
- package/lib/typescript/src/types/core/generic_document/GenericDocument.d.ts.map +1 -0
- package/lib/typescript/src/types/core/generic_document/index.d.ts.map +1 -0
- package/lib/typescript/src/{utils → types/core}/geometry/Geometry.d.ts +6 -5
- package/lib/typescript/src/types/core/geometry/Geometry.d.ts.map +1 -0
- package/lib/typescript/src/types/core/geometry/index.d.ts +2 -0
- package/lib/typescript/src/types/core/geometry/index.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/ImageRefTypes.d.ts +208 -40
- package/lib/typescript/src/types/core/image/ImageRefTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/image/ImageTypes.d.ts +63 -0
- package/lib/typescript/src/types/core/image/ImageTypes.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/image.d.ts +6 -10
- package/lib/typescript/src/types/core/image/image.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/image}/index.d.ts +0 -1
- package/lib/typescript/src/types/core/image/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/index.d.ts +10 -0
- package/lib/typescript/src/types/core/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts +243 -0
- package/lib/typescript/src/types/core/licensing/LicensingTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/licensing/index.d.ts +2 -0
- package/lib/typescript/src/types/core/licensing/index.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.d.ts +27 -10
- package/lib/typescript/src/types/core/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.d.ts +6 -6
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeItemMapper.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.d.ts +14 -14
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.d.ts +2 -2
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts +8 -0
- package/lib/typescript/src/types/core/ui_v2/barcode/BarcodeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.d.ts +6 -6
- package/lib/typescript/src/types/core/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.d.ts +42 -15
- package/lib/typescript/src/types/core/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.d.ts +5 -5
- package/lib/typescript/src/types/core/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ActionBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts +26 -0
- package/lib/typescript/src/types/core/ui_v2/common/BottomBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.d.ts +25 -5
- package/lib/typescript/src/types/core/ui_v2/common/CameraConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/common/CameraPermission.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/Common.d.ts +55 -24
- package/lib/typescript/src/types/core/ui_v2/common/Common.d.ts.map +1 -0
- package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts +26 -0
- package/lib/typescript/src/types/core/ui_v2/common/NavigationBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ScanCompletionOverlay.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.d.ts +3 -3
- package/lib/typescript/src/types/core/ui_v2/common/ScanbotAlertDialog.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.d.ts +33 -7
- package/lib/typescript/src/types/core/ui_v2/common/TopBarConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.d.ts +4 -4
- package/lib/typescript/src/types/core/ui_v2/common/UserGuidanceConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.d.ts +7 -7
- package/lib/typescript/src/types/core/ui_v2/common/ViewFinderConfiguration.d.ts.map +1 -0
- package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/index.d.ts +2 -2
- package/lib/typescript/src/types/core/ui_v2/index.d.ts.map +1 -0
- package/lib/typescript/src/{imageRef → types/core/utils}/ObjectPoolTypes.d.ts +3 -3
- package/lib/typescript/src/types/core/utils/ObjectPoolTypes.d.ts.map +1 -0
- package/lib/typescript/src/types/core/utils/index.d.ts +3 -0
- package/lib/typescript/src/types/core/utils/index.d.ts.map +1 -0
- package/lib/typescript/src/types/core/utils/utils.d.ts +28 -0
- package/lib/typescript/src/types/core/utils/utils.d.ts.map +1 -0
- package/lib/typescript/src/types/index.d.ts +3 -0
- package/lib/typescript/src/types/index.d.ts.map +1 -0
- package/package.json +13 -13
- package/src/Barcode.ts +67 -0
- package/src/ImageProcessor.ts +18 -0
- package/src/Sdk.ts +53 -0
- package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.tsx +13 -4
- package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.ts +22 -14
- package/src/components/index.ts +3 -0
- package/src/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.ts +3 -0
- package/src/impl/BarcodeScannerImpl.ts +115 -0
- package/src/impl/ImageProcessorImpl.ts +14 -0
- package/src/impl/SdkImpl.ts +28 -0
- package/src/impl/index.ts +3 -0
- package/src/impl/scanbotBarcodeSDKModule.ts +22 -0
- package/src/index.ts +5 -178
- package/src/types/base/SdkConfiguration.ts +120 -0
- package/src/types/base/customTypes.ts +14 -0
- package/src/types/base/errors.ts +158 -0
- package/src/types/base/index.ts +4 -0
- package/src/types/base/utils.ts +53 -0
- package/src/{barcode → types/core/barcode}/BarcodeConfigurationTypes.ts +294 -83
- package/src/types/core/barcode/BarcodeDocumentTypes.ts +218 -0
- package/src/{barcode → types/core/barcode}/BarcodeScannerTypes.ts +91 -44
- package/src/{barcode → types/core/barcode}/BarcodeTypes.ts +315 -19
- package/src/types/core/camera/Camera.ts +33 -0
- package/src/types/core/camera/index.ts +1 -0
- package/src/types/core/common/CommonTypes.ts +43 -0
- package/src/{utils/json → types/core/common}/JsonSerializationTypes.ts +16 -5
- package/src/types/core/common/index.ts +2 -0
- package/src/{documents → types/core/generic_document}/BarcodeDocumentModel.ts +1524 -172
- package/src/{documents → types/core/generic_document}/CommonFieldType.ts +96 -7
- package/src/{documents → types/core/generic_document}/GenericDocument.ts +77 -28
- package/src/{utils → types/core}/geometry/Geometry.ts +6 -8
- package/src/types/core/geometry/index.ts +1 -0
- package/src/{imageRef → types/core/image}/ImageRefTypes.ts +277 -83
- package/src/types/core/image/ImageTypes.ts +78 -0
- package/src/{imageRef → types/core/image}/image.ts +44 -76
- package/src/{imageRef → types/core/image}/index.ts +0 -1
- package/src/types/core/index.ts +9 -0
- package/src/types/core/licensing/LicensingTypes.ts +377 -0
- package/src/types/core/licensing/index.ts +1 -0
- package/src/{ui_v2 → types/core/ui_v2}/barcode/ArTrackingOverlayConfiguration.ts +28 -17
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeInfoMapping.ts +6 -9
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerScreenConfiguration.ts +18 -25
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeScannerUiResult.ts +5 -7
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeTextLocalization.ts +2 -3
- package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeUseCase.ts +6 -5
- package/src/{ui_v2 → types/core/ui_v2}/barcode/FindAndPickScanningModeUseCase.ts +17 -19
- package/src/{ui_v2 → types/core/ui_v2}/barcode/MultipleScanningModeUseCase.ts +50 -25
- package/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.ts +9 -10
- package/src/{ui_v2 → types/core/ui_v2}/common/ActionBarConfiguration.ts +3 -4
- package/src/types/core/ui_v2/common/BottomBarConfiguration.ts +33 -0
- package/src/{ui_v2 → types/core/ui_v2}/common/CameraConfiguration.ts +33 -7
- package/src/{ui_v2 → types/core/ui_v2}/common/CameraPermission.ts +4 -5
- package/src/{ui_v2 → types/core/ui_v2}/common/Common.ts +62 -41
- package/src/{ui_v2 → types/core/ui_v2}/common/NavigationBarConfiguration.ts +19 -2
- package/src/{ui_v2 → types/core/ui_v2}/common/ScanCompletionOverlay.ts +3 -4
- package/src/{ui_v2 → types/core/ui_v2}/common/ScanbotAlertDialog.ts +3 -4
- package/src/{ui_v2 → types/core/ui_v2}/common/TopBarConfiguration.ts +37 -13
- package/src/{ui_v2 → types/core/ui_v2}/common/UserGuidanceConfiguration.ts +4 -6
- package/src/{ui_v2 → types/core/ui_v2}/common/ViewFinderConfiguration.ts +15 -17
- package/src/{ui_v2 → types/core/ui_v2}/index.ts +2 -4
- package/src/{imageRef → types/core/utils}/ObjectPoolTypes.ts +3 -4
- package/src/types/core/utils/index.ts +2 -0
- package/src/types/core/utils/utils.ts +45 -0
- package/src/types/index.ts +2 -0
- package/android/src/main/java/io/scanbot/barcodesdk/plugin/reactnative/extensions/IntExtensions.kt +0 -7
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.h +0 -121
- package/ios/Components/BarcodeScannerView/RNScanbotBarcodeScannerViewControllerWrapper.m +0 -307
- package/lib/commonjs/barcode/BarcodeConfigurationTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeDocumentTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeScannerTypes.js.map +0 -1
- package/lib/commonjs/barcode/BarcodeTypes.js.map +0 -1
- package/lib/commonjs/barcode/index.js.map +0 -1
- package/lib/commonjs/base/barcodeSDKConfigurations.js.map +0 -1
- package/lib/commonjs/base/barcodeSDKTypes.js +0 -2
- package/lib/commonjs/base/barcodeSDKTypes.js.map +0 -1
- package/lib/commonjs/base/index.js +0 -28
- package/lib/commonjs/base/index.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
- package/lib/commonjs/component/barcode-camera-view/index.js.map +0 -1
- package/lib/commonjs/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
- package/lib/commonjs/documents/BarcodeDocumentModel.js.map +0 -1
- package/lib/commonjs/documents/CommonFieldType.js.map +0 -1
- package/lib/commonjs/documents/GenericDocument.js.map +0 -1
- package/lib/commonjs/documents/index.js.map +0 -1
- package/lib/commonjs/imageRef/ImageRefTypes.js.map +0 -1
- package/lib/commonjs/imageRef/ImageTypes.js +0 -24
- package/lib/commonjs/imageRef/ImageTypes.js.map +0 -1
- package/lib/commonjs/imageRef/ObjectPoolTypes.js.map +0 -1
- package/lib/commonjs/imageRef/image.js.map +0 -1
- package/lib/commonjs/imageRef/index.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -179
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ActionBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/CameraConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/CameraPermission.js.map +0 -1
- package/lib/commonjs/ui_v2/common/Common.js.map +0 -1
- package/lib/commonjs/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
- package/lib/commonjs/ui_v2/common/TopBarConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
- package/lib/commonjs/ui_v2/index.js.map +0 -1
- package/lib/commonjs/utils/geometry/Geometry.js.map +0 -1
- package/lib/commonjs/utils/index.js +0 -39
- package/lib/commonjs/utils/index.js.map +0 -1
- package/lib/commonjs/utils/json/JsonSerializationTypes.js.map +0 -1
- package/lib/commonjs/utils/utils.js +0 -31
- package/lib/commonjs/utils/utils.js.map +0 -1
- package/lib/module/barcode/BarcodeConfigurationTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeDocumentTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeScannerTypes.js.map +0 -1
- package/lib/module/barcode/BarcodeTypes.js.map +0 -1
- package/lib/module/barcode/index.js.map +0 -1
- package/lib/module/base/barcodeSDKConfigurations.js +0 -2
- package/lib/module/base/barcodeSDKConfigurations.js.map +0 -1
- package/lib/module/base/barcodeSDKTypes.js +0 -2
- package/lib/module/base/barcodeSDKTypes.js.map +0 -1
- package/lib/module/base/index.js +0 -3
- package/lib/module/base/index.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraView.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js.map +0 -1
- package/lib/module/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js.map +0 -1
- package/lib/module/component/barcode-camera-view/index.js +0 -4
- package/lib/module/component/barcode-camera-view/index.js.map +0 -1
- package/lib/module/component/spec/ScanbotBarcodeScannerViewNativeComponent.js.map +0 -1
- package/lib/module/documents/BarcodeDocumentModel.js.map +0 -1
- package/lib/module/documents/CommonFieldType.js.map +0 -1
- package/lib/module/documents/GenericDocument.js.map +0 -1
- package/lib/module/documents/index.js.map +0 -1
- package/lib/module/imageRef/ImageRefTypes.js.map +0 -1
- package/lib/module/imageRef/ImageTypes.js +0 -18
- package/lib/module/imageRef/ImageTypes.js.map +0 -1
- package/lib/module/imageRef/ObjectPoolTypes.js.map +0 -1
- package/lib/module/imageRef/image.js.map +0 -1
- package/lib/module/imageRef/index.js.map +0 -1
- package/lib/module/ui_v2/barcode/ArTrackingOverlayConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeInfoMapping.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeItemMapper.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js +0 -173
- package/lib/module/ui_v2/barcode/BarcodeScannerConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerScreenConfiguration.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeScannerUiResult.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeTextLocalization.js.map +0 -1
- package/lib/module/ui_v2/barcode/BarcodeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/FindAndPickScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/MultipleScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/barcode/SingleScanningModeUseCase.js.map +0 -1
- package/lib/module/ui_v2/common/ActionBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/CameraConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/CameraPermission.js.map +0 -1
- package/lib/module/ui_v2/common/Common.js.map +0 -1
- package/lib/module/ui_v2/common/NavigationBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/ScanCompletionOverlay.js.map +0 -1
- package/lib/module/ui_v2/common/ScanbotAlertDialog.js.map +0 -1
- package/lib/module/ui_v2/common/TopBarConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/UserGuidanceConfiguration.js.map +0 -1
- package/lib/module/ui_v2/common/ViewFinderConfiguration.js.map +0 -1
- package/lib/module/ui_v2/index.js.map +0 -1
- package/lib/module/utils/geometry/Geometry.js.map +0 -1
- package/lib/module/utils/index.js +0 -4
- package/lib/module/utils/index.js.map +0 -1
- package/lib/module/utils/json/JsonSerializationTypes.js.map +0 -1
- package/lib/module/utils/utils.js +0 -22
- package/lib/module/utils/utils.js.map +0 -1
- package/lib/typescript/src/barcode/BarcodeConfigurationTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts +0 -50
- package/lib/typescript/src/barcode/BarcodeDocumentTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeScannerTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/BarcodeTypes.d.ts.map +0 -1
- package/lib/typescript/src/barcode/index.d.ts.map +0 -1
- package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts +0 -60
- package/lib/typescript/src/base/barcodeSDKConfigurations.d.ts.map +0 -1
- package/lib/typescript/src/base/barcodeSDKTypes.d.ts +0 -46
- package/lib/typescript/src/base/barcodeSDKTypes.d.ts.map +0 -1
- package/lib/typescript/src/base/index.d.ts +0 -3
- package/lib/typescript/src/base/index.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraView.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewProperties.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts.map +0 -1
- package/lib/typescript/src/component/barcode-camera-view/index.d.ts +0 -4
- package/lib/typescript/src/component/barcode-camera-view/index.d.ts.map +0 -1
- package/lib/typescript/src/component/spec/ScanbotBarcodeScannerViewNativeComponent.d.ts.map +0 -1
- package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts +0 -1458
- package/lib/typescript/src/documents/BarcodeDocumentModel.d.ts.map +0 -1
- package/lib/typescript/src/documents/CommonFieldType.d.ts +0 -61
- package/lib/typescript/src/documents/CommonFieldType.d.ts.map +0 -1
- package/lib/typescript/src/documents/GenericDocument.d.ts.map +0 -1
- package/lib/typescript/src/documents/index.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ImageRefTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ImageTypes.d.ts +0 -15
- package/lib/typescript/src/imageRef/ImageTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/ObjectPoolTypes.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/image.d.ts.map +0 -1
- package/lib/typescript/src/imageRef/index.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/ArTrackingOverlayConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeInfoMapping.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeItemMapper.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts +0 -114
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerScreenConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeScannerUiResult.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeTextLocalization.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts +0 -8
- package/lib/typescript/src/ui_v2/barcode/BarcodeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/FindAndPickScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/MultipleScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/barcode/SingleScanningModeUseCase.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ActionBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/CameraConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/CameraPermission.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/Common.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts +0 -13
- package/lib/typescript/src/ui_v2/common/NavigationBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ScanCompletionOverlay.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ScanbotAlertDialog.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/TopBarConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/UserGuidanceConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/common/ViewFinderConfiguration.d.ts.map +0 -1
- package/lib/typescript/src/ui_v2/index.d.ts.map +0 -1
- package/lib/typescript/src/utils/geometry/Geometry.d.ts.map +0 -1
- package/lib/typescript/src/utils/index.d.ts +0 -4
- package/lib/typescript/src/utils/index.d.ts.map +0 -1
- package/lib/typescript/src/utils/json/JsonSerializationTypes.d.ts.map +0 -1
- package/lib/typescript/src/utils/utils.d.ts +0 -17
- package/lib/typescript/src/utils/utils.d.ts.map +0 -1
- package/src/barcode/BarcodeDocumentTypes.ts +0 -120
- package/src/base/barcodeSDKConfigurations.ts +0 -70
- package/src/base/barcodeSDKTypes.ts +0 -44
- package/src/base/index.ts +0 -2
- package/src/component/barcode-camera-view/index.ts +0 -3
- package/src/imageRef/ImageTypes.ts +0 -23
- package/src/ui_v2/barcode/BarcodeScannerConfiguration.ts +0 -207
- package/src/utils/index.ts +0 -3
- package/src/utils/utils.ts +0 -42
- /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
- /package/lib/commonjs/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
- /package/lib/commonjs/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
- /package/lib/commonjs/{barcode → types/core/barcode}/index.js +0 -0
- /package/lib/commonjs/{documents → types/core/generic_document}/index.js +0 -0
- /package/lib/commonjs/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
- /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewProperties.js +0 -0
- /package/lib/module/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.js +0 -0
- /package/lib/module/{component → components}/spec/ScanbotBarcodeScannerViewNativeComponent.js +0 -0
- /package/lib/module/{barcode → types/core/barcode}/index.js +0 -0
- /package/lib/module/{documents → types/core/generic_document}/index.js +0 -0
- /package/lib/module/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.js +0 -0
- /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraView.d.ts +0 -0
- /package/lib/typescript/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.d.ts +0 -0
- /package/lib/typescript/src/{barcode → types/core/barcode}/index.d.ts +0 -0
- /package/lib/typescript/src/{documents → types/core/generic_document}/index.d.ts +0 -0
- /package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.d.ts +0 -0
- /package/src/{component → components}/barcode-camera-view/ScanbotBarcodeCameraViewTypes.ts +0 -0
- /package/src/{barcode → types/core/barcode}/index.ts +0 -0
- /package/src/{documents → types/core/generic_document}/index.ts +0 -0
- /package/src/{ui_v2 → types/core/ui_v2}/barcode/BarcodeItemMapper.ts +0 -0
|
@@ -4,10 +4,9 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.SwipeToDelete = exports.SheetModeValues = exports.SheetContent = exports.Sheet = exports.MultipleScanningMode = exports.MultipleBarcodesScanningModeValues = exports.ManualCountEditDialog = exports.CollapsedVisibleHeightValues = void 0;
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
10
|
-
var _utils = require("../../utils/utils");
|
|
7
|
+
var _Common = require("../common/Common");
|
|
8
|
+
var _ArTrackingOverlayConfiguration = require("./ArTrackingOverlayConfiguration");
|
|
9
|
+
var _BarcodeInfoMapping = require("./BarcodeInfoMapping");
|
|
11
10
|
/// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
|
|
12
11
|
/// Generated from rtu-ui-v2/schemas/barcode/MultipleScanningModeUseCase.yaml
|
|
13
12
|
|
|
@@ -20,6 +19,7 @@ Configuration of the mode used for scanning multiple barcodes.
|
|
|
20
19
|
Only scan barcodes with unique values. Subsequent barcodes with the same values will be ignored.
|
|
21
20
|
*/
|
|
22
21
|
|
|
22
|
+
/** @hidden */
|
|
23
23
|
const MultipleBarcodesScanningModeValues = exports.MultipleBarcodesScanningModeValues = ['COUNTING', 'UNIQUE'];
|
|
24
24
|
|
|
25
25
|
/**
|
|
@@ -31,6 +31,7 @@ Configuration of the barcode result sheet's default visibility state.
|
|
|
31
31
|
Result sheet is visible and collapsed and can be expanded by dragging it up.
|
|
32
32
|
*/
|
|
33
33
|
|
|
34
|
+
/** @hidden */
|
|
34
35
|
const SheetModeValues = exports.SheetModeValues = ['BUTTON', 'COLLAPSED_SHEET'];
|
|
35
36
|
|
|
36
37
|
/**
|
|
@@ -42,12 +43,13 @@ Configuration of the barcodes result sheet's height while collapsed.
|
|
|
42
43
|
Result sheet is not completely collapsed, revealing more information.
|
|
43
44
|
*/
|
|
44
45
|
|
|
46
|
+
/** @hidden */
|
|
45
47
|
const CollapsedVisibleHeightValues = exports.CollapsedVisibleHeightValues = ['SMALL', 'LARGE'];
|
|
46
48
|
|
|
47
49
|
/**
|
|
48
50
|
Configuration of the preview mode for scanning multiple barcodes.
|
|
49
51
|
*/
|
|
50
|
-
class Sheet
|
|
52
|
+
class Sheet {
|
|
51
53
|
/**
|
|
52
54
|
Mode used for the preview for scanning multiple barcodes.
|
|
53
55
|
|
|
@@ -67,7 +69,6 @@ class Sheet extends _utils.PartiallyConstructible {
|
|
|
67
69
|
|
|
68
70
|
/** @param source {@displayType `DeepPartial<Sheet>`} */
|
|
69
71
|
constructor(source = {}) {
|
|
70
|
-
super();
|
|
71
72
|
if (source.mode !== undefined) {
|
|
72
73
|
this.mode = source.mode;
|
|
73
74
|
}
|
|
@@ -84,7 +85,7 @@ class Sheet extends _utils.PartiallyConstructible {
|
|
|
84
85
|
Configuration of the swipe-to-delete button.
|
|
85
86
|
*/
|
|
86
87
|
exports.Sheet = Sheet;
|
|
87
|
-
class SwipeToDelete
|
|
88
|
+
class SwipeToDelete {
|
|
88
89
|
/**
|
|
89
90
|
Whether swipe to delete is enabled or not.
|
|
90
91
|
|
|
@@ -106,7 +107,6 @@ class SwipeToDelete extends _utils.PartiallyConstructible {
|
|
|
106
107
|
|
|
107
108
|
/** @param source {@displayType `DeepPartial<SwipeToDelete>`} */
|
|
108
109
|
constructor(source = {}) {
|
|
109
|
-
super();
|
|
110
110
|
if (source.enabled !== undefined) {
|
|
111
111
|
this.enabled = source.enabled;
|
|
112
112
|
}
|
|
@@ -123,7 +123,7 @@ class SwipeToDelete extends _utils.PartiallyConstructible {
|
|
|
123
123
|
Configuration of the dialog to manually edit the barcode count.
|
|
124
124
|
*/
|
|
125
125
|
exports.SwipeToDelete = SwipeToDelete;
|
|
126
|
-
class ManualCountEditDialog
|
|
126
|
+
class ManualCountEditDialog {
|
|
127
127
|
/**
|
|
128
128
|
Color of the edit dialog's background.
|
|
129
129
|
|
|
@@ -200,7 +200,6 @@ class ManualCountEditDialog extends _utils.PartiallyConstructible {
|
|
|
200
200
|
|
|
201
201
|
/** @param source {@displayType `DeepPartial<ManualCountEditDialog>`} */
|
|
202
202
|
constructor(source = {}) {
|
|
203
|
-
super();
|
|
204
203
|
if (source.sheetColor !== undefined) {
|
|
205
204
|
this.sheetColor = source.sheetColor;
|
|
206
205
|
}
|
|
@@ -232,7 +231,7 @@ class ManualCountEditDialog extends _utils.PartiallyConstructible {
|
|
|
232
231
|
Configuration of the list containing the barcodes that have already been scanned.
|
|
233
232
|
*/
|
|
234
233
|
exports.ManualCountEditDialog = ManualCountEditDialog;
|
|
235
|
-
class SheetContent
|
|
234
|
+
class SheetContent {
|
|
236
235
|
/**
|
|
237
236
|
Color of the list's background.
|
|
238
237
|
|
|
@@ -381,7 +380,6 @@ class SheetContent extends _utils.PartiallyConstructible {
|
|
|
381
380
|
|
|
382
381
|
/** @param source {@displayType `DeepPartial<SheetContent>`} */
|
|
383
382
|
constructor(source = {}) {
|
|
384
|
-
super();
|
|
385
383
|
if (source.sheetColor !== undefined) {
|
|
386
384
|
this.sheetColor = source.sheetColor;
|
|
387
385
|
}
|
|
@@ -440,7 +438,7 @@ class SheetContent extends _utils.PartiallyConstructible {
|
|
|
440
438
|
Configuration of the mode for scanning multiple barcodes.
|
|
441
439
|
*/
|
|
442
440
|
exports.SheetContent = SheetContent;
|
|
443
|
-
class MultipleScanningMode
|
|
441
|
+
class MultipleScanningMode {
|
|
444
442
|
_type = 'MultipleScanningMode';
|
|
445
443
|
/**
|
|
446
444
|
Time interval in milliseconds before a barcode is counted again. 0 = no delay. The default value is 1000.
|
|
@@ -735,7 +733,6 @@ class MultipleScanningMode extends _utils.PartiallyConstructible {
|
|
|
735
733
|
|
|
736
734
|
/** @param source {@displayType `DeepPartial<MultipleScanningMode>`} */
|
|
737
735
|
constructor(source = {}) {
|
|
738
|
-
super();
|
|
739
736
|
if (source.countingRepeatDelay !== undefined) {
|
|
740
737
|
this.countingRepeatDelay = source.countingRepeatDelay;
|
|
741
738
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_Common","require","_ArTrackingOverlayConfiguration","_BarcodeInfoMapping","MultipleBarcodesScanningModeValues","exports","SheetModeValues","CollapsedVisibleHeightValues","Sheet","mode","collapsedVisibleHeight","listButton","BadgedButton","constructor","source","undefined","SwipeToDelete","enabled","backgroundColor","iconColor","ManualCountEditDialog","sheetColor","dividerColor","modalOverlayColor","title","StyledText","text","color","info","updateButton","ButtonConfiguration","visible","background","BackgroundStyle","strokeColor","fillColor","strokeWidth","foreground","ForegroundStyle","iconVisible","useShadow","cancelButton","clearTextButton","IconStyle","SheetContent","manualCountChangeEnabled","manualCountOutlineColor","manualCountChangeColor","clearAllButton","barcodeItemTitle","barcodeItemSubtitle","barcodeItemImageVisible","submitButton","startScanningButton","placeholderTitle","placeholderSubtitle","placeholderIconBackground","placeholderIcon","swipeToDelete","MultipleScanningMode","_type","countingRepeatDelay","allowEmptySubmission","sheet","badgeBackgroundColor","badgeForegroundColor","foregroundColor","activeBackgroundColor","activeForegroundColor","sheetContent","manualCountEditDialog","barcodeInfoMapping","BarcodeInfoMapping","loadingMessage","errorState","BarcodeItemErrorState","subtitle","retryButton","arOverlay","ArOverlayGeneralConfiguration","counterBadge","BadgeStyle","automaticSelectionEnabled","barcodeItemInfoPosition","polygon","ArOverlayPolygonConfiguration","deselected","PolygonStyle","cornerRadius","selected","barcodeItemConfiguration","BarcodeItemConfiguration","imageVisible","titleSelected","subtitleSelected","titleDeselected","subtitleDeselected","backgroundSelected","backgroundDeselected"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/barcode/MultipleScanningModeUseCase.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -4,17 +4,16 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.SingleScanningMode = void 0;
|
|
7
|
-
var
|
|
8
|
-
var
|
|
9
|
-
var
|
|
10
|
-
var _utils = require("../../utils/utils");
|
|
7
|
+
var _Common = require("../common/Common");
|
|
8
|
+
var _ArTrackingOverlayConfiguration = require("./ArTrackingOverlayConfiguration");
|
|
9
|
+
var _BarcodeInfoMapping = require("./BarcodeInfoMapping");
|
|
11
10
|
/// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
|
|
12
11
|
/// Generated from rtu-ui-v2/schemas/barcode/SingleScanningModeUseCase.yaml
|
|
13
12
|
|
|
14
13
|
/**
|
|
15
14
|
Configuration of the single barcode scanning mode.
|
|
16
15
|
*/
|
|
17
|
-
class SingleScanningMode
|
|
16
|
+
class SingleScanningMode {
|
|
18
17
|
_type = 'SingleScanningMode';
|
|
19
18
|
/**
|
|
20
19
|
If enabled, the confirmation sheet will be shown after the barcode has been scanned.
|
|
@@ -207,7 +206,6 @@ class SingleScanningMode extends _utils.PartiallyConstructible {
|
|
|
207
206
|
|
|
208
207
|
/** @param source {@displayType `DeepPartial<SingleScanningMode>`} */
|
|
209
208
|
constructor(source = {}) {
|
|
210
|
-
super();
|
|
211
209
|
if (source.confirmationSheetEnabled !== undefined) {
|
|
212
210
|
this.confirmationSheetEnabled = source.confirmationSheetEnabled;
|
|
213
211
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_Common","require","_ArTrackingOverlayConfiguration","_BarcodeInfoMapping","SingleScanningMode","_type","confirmationSheetEnabled","barcodeImageVisible","sheetColor","dividerColor","modalOverlayColor","barcodeTitle","StyledText","text","color","barcodeSubtitle","submitButton","ButtonConfiguration","visible","background","BackgroundStyle","strokeColor","fillColor","strokeWidth","foreground","ForegroundStyle","iconVisible","cancelButton","barcodeInfoMapping","BarcodeInfoMapping","loadingMessage","errorState","BarcodeItemErrorState","title","subtitle","retryButton","arOverlay","ArOverlayGeneralConfiguration","counterBadge","BadgeStyle","foregroundColor","automaticSelectionEnabled","barcodeItemInfoPosition","polygon","ArOverlayPolygonConfiguration","deselected","PolygonStyle","cornerRadius","selected","barcodeItemConfiguration","BarcodeItemConfiguration","imageVisible","titleSelected","subtitleSelected","titleDeselected","subtitleDeselected","useShadow","backgroundSelected","backgroundDeselected","constructor","source","undefined","exports"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/barcode/SingleScanningModeUseCase.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -4,15 +4,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.ActionBarConfiguration = void 0;
|
|
7
|
-
var _Common = require("
|
|
8
|
-
var _utils = require("../../utils/utils");
|
|
7
|
+
var _Common = require("./Common");
|
|
9
8
|
/// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
|
|
10
9
|
/// Generated from rtu-ui-v2/schemas/common/ActionBarConfiguration.yaml
|
|
11
10
|
|
|
12
11
|
/**
|
|
13
12
|
Configuration of the buttons available in the action bar.
|
|
14
13
|
*/
|
|
15
|
-
class ActionBarConfiguration
|
|
14
|
+
class ActionBarConfiguration {
|
|
16
15
|
/**
|
|
17
16
|
Configuration of the 'flash' button.
|
|
18
17
|
*/
|
|
@@ -49,7 +48,6 @@ class ActionBarConfiguration extends _utils.PartiallyConstructible {
|
|
|
49
48
|
|
|
50
49
|
/** @param source {@displayType `DeepPartial<ActionBarConfiguration>`} */
|
|
51
50
|
constructor(source = {}) {
|
|
52
|
-
super();
|
|
53
51
|
if (source.flashButton !== undefined) {
|
|
54
52
|
this.flashButton = new _Common.RoundButton(source.flashButton);
|
|
55
53
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_Common","require","ActionBarConfiguration","flashButton","RoundButton","visible","accessibilityDescription","backgroundColor","foregroundColor","activeBackgroundColor","activeForegroundColor","zoomButton","flipCameraButton","constructor","source","undefined","exports"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/ActionBarConfiguration.ts"],"mappings":";;;;;;AAIA,IAAAA,OAAA,GAAAC,OAAA;AAJA;AACA;;AAKA;AACA;AACA;AACO,MAAMC,sBAAsB,CAAC;EAClC;AACF;AACA;EACSC,WAAW,GAAgB,IAAIC,mBAAW,CAAC;IAChDC,OAAO,EAAE,IAAI;IACbC,wBAAwB,EAAE,sCAAsC;IAChEC,eAAe,EAAE,qBAAqB;IACtCC,eAAe,EAAE,mBAAmB;IACpCC,qBAAqB,EAAE,iBAAiB;IACxCC,qBAAqB,EAAE;EACzB,CAAC,CAAC;EACF;AACF;AACA;EACSC,UAAU,GAAgB,IAAIP,mBAAW,CAAC;IAC/CC,OAAO,EAAE,IAAI;IACbC,wBAAwB,EAAE,qCAAqC;IAC/DC,eAAe,EAAE,qBAAqB;IACtCC,eAAe,EAAE,mBAAmB;IACpCC,qBAAqB,EAAE,qBAAqB;IAC5CC,qBAAqB,EAAE;EACzB,CAAC,CAAC;EACF;AACF;AACA;EACSE,gBAAgB,GAAgB,IAAIR,mBAAW,CAAC;IACrDC,OAAO,EAAE,IAAI;IACbC,wBAAwB,EAAE,2CAA2C;IACrEC,eAAe,EAAE,qBAAqB;IACtCC,eAAe,EAAE,mBAAmB;IACpCC,qBAAqB,EAAE,iBAAiB;IACxCC,qBAAqB,EAAE;EACzB,CAAC,CAAC;;EAEF;EACOG,WAAWA,CAACC,MAA2C,GAAG,CAAC,CAAC,EAAE;IACnE,IAAIA,MAAM,CAACX,WAAW,KAAKY,SAAS,EAAE;MACpC,IAAI,CAACZ,WAAW,GAAG,IAAIC,mBAAW,CAACU,MAAM,CAACX,WAAW,CAAC;IACxD;IACA,IAAIW,MAAM,CAACH,UAAU,KAAKI,SAAS,EAAE;MACnC,IAAI,CAACJ,UAAU,GAAG,IAAIP,mBAAW,CAACU,MAAM,CAACH,UAAU,CAAC;IACtD;IACA,IAAIG,MAAM,CAACF,gBAAgB,KAAKG,SAAS,EAAE;MACzC,IAAI,CAACH,gBAAgB,GAAG,IAAIR,mBAAW,CAACU,MAAM,CAACF,gBAAgB,CAAC;IAClE;EACF;AACF;AAACI,OAAA,CAAAd,sBAAA,GAAAA,sBAAA","ignoreList":[]}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
Object.defineProperty(exports, "__esModule", {
|
|
4
|
+
value: true
|
|
5
|
+
});
|
|
6
|
+
exports.BottomBarModeValues = void 0;
|
|
7
|
+
/// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
|
|
8
|
+
/// Generated from rtu-ui-v2/schemas/common/BottomBarConfiguration.yaml
|
|
9
|
+
|
|
10
|
+
/**
|
|
11
|
+
The visual mode used for the bottom bar.
|
|
12
|
+
|
|
13
|
+
- `SOLID`:
|
|
14
|
+
Display the bottom bar with a background color or with transparency.
|
|
15
|
+
- `GRADIENT`:
|
|
16
|
+
Display the bottom bar with a gradient background color or a gradient with transparency. The buttons will still be visible.
|
|
17
|
+
- `HIDDEN`:
|
|
18
|
+
Hide the bottom bar completely.
|
|
19
|
+
*/
|
|
20
|
+
|
|
21
|
+
/** @hidden */
|
|
22
|
+
const BottomBarModeValues = exports.BottomBarModeValues = ['SOLID', 'GRADIENT', 'HIDDEN'];
|
|
23
|
+
//# sourceMappingURL=BottomBarConfiguration.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["BottomBarModeValues","exports"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/BottomBarConfiguration.ts"],"mappings":";;;;;;AAAA;AACA;;AAEA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;AACA;;AAeA;AACO,MAAMA,mBAAiD,GAAAC,OAAA,CAAAD,mBAAA,GAAG,CAC/D,OAAO,EACP,UAAU,EACV,QAAQ,CACA","ignoreList":[]}
|
|
@@ -4,7 +4,6 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.CameraModuleValues = exports.CameraConfiguration = void 0;
|
|
7
|
-
var _utils = require("../../utils/utils");
|
|
8
7
|
/// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
|
|
9
8
|
/// Generated from rtu-ui-v2/schemas/common/CameraConfiguration.yaml
|
|
10
9
|
|
|
@@ -19,12 +18,13 @@ Determines which camera module to use on start-up.
|
|
|
19
18
|
Use the back camera with the widest available angle. iOS only.
|
|
20
19
|
*/
|
|
21
20
|
|
|
21
|
+
/** @hidden */
|
|
22
22
|
const CameraModuleValues = exports.CameraModuleValues = ['FRONT', 'BACK', 'BACK_WIDEST'];
|
|
23
23
|
|
|
24
24
|
/**
|
|
25
25
|
Configuration of the camera settings to be used while scanning.
|
|
26
26
|
*/
|
|
27
|
-
class CameraConfiguration
|
|
27
|
+
class CameraConfiguration {
|
|
28
28
|
/**
|
|
29
29
|
Determines which camera module to use on start-up.
|
|
30
30
|
|
|
@@ -89,10 +89,15 @@ class CameraConfiguration extends _utils.PartiallyConstructible {
|
|
|
89
89
|
Default is 20
|
|
90
90
|
*/
|
|
91
91
|
fpsLimit = 20;
|
|
92
|
+
/**
|
|
93
|
+
The size of the image from camera which would be sent to the scanner for live scanning.
|
|
94
|
+
|
|
95
|
+
Default is FULL_HD
|
|
96
|
+
*/
|
|
97
|
+
cameraLiveScannerResolution = 'FULL_HD';
|
|
92
98
|
|
|
93
99
|
/** @param source {@displayType `DeepPartial<CameraConfiguration>`} */
|
|
94
100
|
constructor(source = {}) {
|
|
95
|
-
super();
|
|
96
101
|
if (source.cameraModule !== undefined) {
|
|
97
102
|
this.cameraModule = source.cameraModule;
|
|
98
103
|
}
|
|
@@ -128,6 +133,9 @@ class CameraConfiguration extends _utils.PartiallyConstructible {
|
|
|
128
133
|
if (source.fpsLimit !== undefined) {
|
|
129
134
|
this.fpsLimit = source.fpsLimit;
|
|
130
135
|
}
|
|
136
|
+
if (source.cameraLiveScannerResolution !== undefined) {
|
|
137
|
+
this.cameraLiveScannerResolution = source.cameraLiveScannerResolution;
|
|
138
|
+
}
|
|
131
139
|
}
|
|
132
140
|
}
|
|
133
141
|
exports.CameraConfiguration = CameraConfiguration;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["CameraModuleValues","exports","CameraConfiguration","cameraModule","zoomSteps","defaultZoomFactor","flashEnabled","minFocusDistanceLock","touchToFocusEnabled","pinchToZoomEnabled","orientationLockMode","cameraPreviewMode","hardwareButtonsEnabled","fpsLimit","cameraLiveScannerResolution","constructor","source","undefined","map","it"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/CameraConfiguration.ts"],"mappings":"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","ignoreList":[]}
|
|
@@ -4,15 +4,14 @@ Object.defineProperty(exports, "__esModule", {
|
|
|
4
4
|
value: true
|
|
5
5
|
});
|
|
6
6
|
exports.CameraPermissionScreen = void 0;
|
|
7
|
-
var _Common = require("
|
|
8
|
-
var _utils = require("../../utils/utils");
|
|
7
|
+
var _Common = require("./Common");
|
|
9
8
|
/// Auto-generated with ScanbotSDKCodegenV3. Modifications will be overwritten.
|
|
10
9
|
/// Generated from rtu-ui-v2/schemas/common/CameraPermission.yaml
|
|
11
10
|
|
|
12
11
|
/**
|
|
13
12
|
Configuration of the camera permission request view.
|
|
14
13
|
*/
|
|
15
|
-
class CameraPermissionScreen
|
|
14
|
+
class CameraPermissionScreen {
|
|
16
15
|
/**
|
|
17
16
|
Determines the visual mode for displaying the contents of the status bar.
|
|
18
17
|
|
|
@@ -84,7 +83,6 @@ class CameraPermissionScreen extends _utils.PartiallyConstructible {
|
|
|
84
83
|
|
|
85
84
|
/** @param source {@displayType `DeepPartial<CameraPermissionScreen>`} */
|
|
86
85
|
constructor(source = {}) {
|
|
87
|
-
super();
|
|
88
86
|
if (source.statusBarMode !== undefined) {
|
|
89
87
|
this.statusBarMode = source.statusBarMode;
|
|
90
88
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["_Common","require","CameraPermissionScreen","statusBarMode","background","iconBackground","icon","IconStyle","color","enableCameraButton","ButtonConfiguration","text","BackgroundStyle","strokeColor","fillColor","strokeWidth","foreground","ForegroundStyle","iconVisible","closeButton","enableCameraTitle","StyledText","enableCameraExplanation","constructor","source","undefined","exports"],"sourceRoot":"../../../../../../src","sources":["types/core/ui_v2/common/CameraPermission.ts"],"mappings":"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","ignoreList":[]}
|