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
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"MultipleScanningModeUseCase.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/MultipleScanningModeUseCase.ts"],"names":[],"mappings":"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"}
|
package/lib/typescript/src/{ui_v2 → types/core/ui_v2}/barcode/SingleScanningModeUseCase.d.ts
RENAMED
|
@@ -1,11 +1,11 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
4
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
|
+
import { ButtonConfiguration, StyledText } from '../common/Common';
|
|
3
|
+
import { ArOverlayGeneralConfiguration } from './ArTrackingOverlayConfiguration';
|
|
4
|
+
import { BarcodeInfoMapping } from './BarcodeInfoMapping';
|
|
5
5
|
/**
|
|
6
6
|
Configuration of the single barcode scanning mode.
|
|
7
7
|
*/
|
|
8
|
-
export declare class SingleScanningMode
|
|
8
|
+
export declare class SingleScanningMode {
|
|
9
9
|
readonly _type: 'SingleScanningMode';
|
|
10
10
|
/**
|
|
11
11
|
If enabled, the confirmation sheet will be shown after the barcode has been scanned.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"SingleScanningModeUseCase.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/barcode/SingleScanningModeUseCase.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAGL,mBAAmB,EAGnB,UAAU,EACX,MAAM,kBAAkB,CAAC;AAC1B,OAAO,EACL,6BAA6B,EAG9B,MAAM,kCAAkC,CAAC;AAC1C,OAAO,EAAE,kBAAkB,EAAyB,MAAM,sBAAsB,CAAC;AAEjF;;EAEE;AACF,qBAAa,kBAAkB;IAC7B,SAAgB,KAAK,EAAE,oBAAoB,CAAwB;IACnE;;;;QAII;IACG,wBAAwB,EAAE,OAAO,CAAS;IACjD;;;;QAII;IACG,mBAAmB,EAAE,OAAO,CAAQ;IAC3C;;;;QAII;IACG,UAAU,EAAE,MAAM,CAAqB;IAC9C;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAqB;IAChD;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAA0B;IAC1D;;QAEI;IACG,YAAY,EAAE,UAAU,CAG5B;IACH;;QAEI;IACG,eAAe,EAAE,UAAU,CAG/B;IACH;;QAEI;IACG,YAAY,EAAE,mBAAmB,CASrC;IACH;;QAEI;IACG,YAAY,EAAE,mBAAmB,CASrC;IACH;;QAEI;IACG,kBAAkB,EAAE,kBAAkB,CAqC1C;IACH;;QAEI;IACG,SAAS,EAAE,6BAA6B,CAuD5C;IAEH,qEAAqE;gBAClD,MAAM,GAAE,WAAW,CAAC,kBAAkB,CAAM;CAmChE"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
|
+
import { RoundButton } from './Common';
|
|
3
3
|
/**
|
|
4
4
|
Configuration of the buttons available in the action bar.
|
|
5
5
|
*/
|
|
6
|
-
export declare class ActionBarConfiguration
|
|
6
|
+
export declare class ActionBarConfiguration {
|
|
7
7
|
/**
|
|
8
8
|
Configuration of the 'flash' button.
|
|
9
9
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ActionBarConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/ActionBarConfiguration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,WAAW,EAAE,MAAM,UAAU,CAAC;AAEvC;;EAEE;AACF,qBAAa,sBAAsB;IACjC;;QAEI;IACG,WAAW,EAAE,WAAW,CAO5B;IACH;;QAEI;IACG,UAAU,EAAE,WAAW,CAO3B;IACH;;QAEI;IACG,gBAAgB,EAAE,WAAW,CAOjC;IAEH,yEAAyE;gBACtD,MAAM,GAAE,WAAW,CAAC,sBAAsB,CAAM;CAWpE"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
The visual mode used for the bottom bar.
|
|
3
|
+
|
|
4
|
+
- `SOLID`:
|
|
5
|
+
Display the bottom bar with a background color or with transparency.
|
|
6
|
+
- `GRADIENT`:
|
|
7
|
+
Display the bottom bar with a gradient background color or a gradient with transparency. The buttons will still be visible.
|
|
8
|
+
- `HIDDEN`:
|
|
9
|
+
Hide the bottom bar completely.
|
|
10
|
+
*/
|
|
11
|
+
export type BottomBarMode =
|
|
12
|
+
/**
|
|
13
|
+
Display the bottom bar with a background color or with transparency.
|
|
14
|
+
*/
|
|
15
|
+
'SOLID'
|
|
16
|
+
/**
|
|
17
|
+
Display the bottom bar with a gradient background color or a gradient with transparency. The buttons will still be visible.
|
|
18
|
+
*/
|
|
19
|
+
| 'GRADIENT'
|
|
20
|
+
/**
|
|
21
|
+
Hide the bottom bar completely.
|
|
22
|
+
*/
|
|
23
|
+
| 'HIDDEN';
|
|
24
|
+
/** @hidden */
|
|
25
|
+
export declare const BottomBarModeValues: ReadonlyArray<BottomBarMode>;
|
|
26
|
+
//# sourceMappingURL=BottomBarConfiguration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"BottomBarConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/BottomBarConfiguration.ts"],"names":[],"mappings":"AAGA;;;;;;;;;EASE;AACF,MAAM,MAAM,aAAa;AACvB;;IAEI;AACF,OAAO;AACT;;IAEI;GACF,UAAU;AACZ;;IAEI;GACF,QAAQ,CAAC;AAEb,cAAc;AACd,eAAO,MAAM,mBAAmB,EAAE,aAAa,CAAC,aAAa,CAInD,CAAC"}
|
|
@@ -1,5 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import { DeepPartial
|
|
1
|
+
import { CameraLiveScannerResolution } from '../../camera/Camera';
|
|
2
|
+
import { DeepPartial } from '../../utils/utils';
|
|
3
|
+
import { CameraPreviewMode, OrientationLockMode } from './Common';
|
|
3
4
|
/**
|
|
4
5
|
Determines which camera module to use on start-up.
|
|
5
6
|
|
|
@@ -10,12 +11,25 @@ Determines which camera module to use on start-up.
|
|
|
10
11
|
- `BACK_WIDEST`:
|
|
11
12
|
Use the back camera with the widest available angle. iOS only.
|
|
12
13
|
*/
|
|
13
|
-
export type CameraModule =
|
|
14
|
-
|
|
14
|
+
export type CameraModule =
|
|
15
|
+
/**
|
|
16
|
+
Use the front camera.
|
|
17
|
+
*/
|
|
18
|
+
'FRONT'
|
|
19
|
+
/**
|
|
20
|
+
Use the default back camera.
|
|
21
|
+
*/
|
|
22
|
+
| 'BACK'
|
|
23
|
+
/**
|
|
24
|
+
Use the back camera with the widest available angle. iOS only.
|
|
25
|
+
*/
|
|
26
|
+
| 'BACK_WIDEST';
|
|
27
|
+
/** @hidden */
|
|
28
|
+
export declare const CameraModuleValues: ReadonlyArray<CameraModule>;
|
|
15
29
|
/**
|
|
16
30
|
Configuration of the camera settings to be used while scanning.
|
|
17
31
|
*/
|
|
18
|
-
export declare class CameraConfiguration
|
|
32
|
+
export declare class CameraConfiguration {
|
|
19
33
|
/**
|
|
20
34
|
Determines which camera module to use on start-up.
|
|
21
35
|
|
|
@@ -80,6 +94,12 @@ export declare class CameraConfiguration extends PartiallyConstructible {
|
|
|
80
94
|
Default is 20
|
|
81
95
|
*/
|
|
82
96
|
fpsLimit: number;
|
|
97
|
+
/**
|
|
98
|
+
The size of the image from camera which would be sent to the scanner for live scanning.
|
|
99
|
+
|
|
100
|
+
Default is FULL_HD
|
|
101
|
+
*/
|
|
102
|
+
cameraLiveScannerResolution: CameraLiveScannerResolution;
|
|
83
103
|
/** @param source {@displayType `DeepPartial<CameraConfiguration>`} */
|
|
84
104
|
constructor(source?: DeepPartial<CameraConfiguration>);
|
|
85
105
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CameraConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/CameraConfiguration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,2BAA2B,EAAE,MAAM,qBAAqB,CAAC;AAClE,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,iBAAiB,EAAE,mBAAmB,EAAE,MAAM,UAAU,CAAC;AAElE;;;;;;;;;EASE;AACF,MAAM,MAAM,YAAY;AACtB;;IAEI;AACF,OAAO;AACT;;IAEI;GACF,MAAM;AACR;;IAEI;GACF,aAAa,CAAC;AAElB,cAAc;AACd,eAAO,MAAM,kBAAkB,EAAE,aAAa,CAAC,YAAY,CAIjD,CAAC;AAEX;;EAEE;AACF,qBAAa,mBAAmB;IAC9B;;;;QAII;IACG,YAAY,EAAE,YAAY,CAAU;IAC3C;;QAEI;IACG,SAAS,EAAE,MAAM,EAAE,CAAmB;IAC7C;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAAO;IACvC;;;;QAII;IACG,YAAY,EAAE,OAAO,CAAS;IACrC;;;;QAII;IACG,oBAAoB,EAAE,OAAO,CAAS;IAC7C;;;;QAII;IACG,mBAAmB,EAAE,OAAO,CAAS;IAC5C;;;;QAII;IACG,kBAAkB,EAAE,OAAO,CAAQ;IAC1C;;;;QAII;IACG,mBAAmB,EAAE,mBAAmB,CAAU;IACzD;;;;QAII;IACG,iBAAiB,EAAE,iBAAiB,CAAa;IACxD;;;;QAII;IACG,sBAAsB,EAAE,OAAO,CAAQ;IAC9C;;;;QAII;IACG,QAAQ,EAAE,MAAM,CAAM;IAC7B;;;;QAII;IACG,2BAA2B,EAAE,2BAA2B,CAAa;IAE5E,sEAAsE;gBACnD,MAAM,GAAE,WAAW,CAAC,mBAAmB,CAAM;CAwCjE"}
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
|
+
import { ButtonConfiguration, IconStyle, StyledText } from './Common';
|
|
3
|
+
import { StatusBarMode } from './TopBarConfiguration';
|
|
4
4
|
/**
|
|
5
5
|
Configuration of the camera permission request view.
|
|
6
6
|
*/
|
|
7
|
-
export declare class CameraPermissionScreen
|
|
7
|
+
export declare class CameraPermissionScreen {
|
|
8
8
|
/**
|
|
9
9
|
Determines the visual mode for displaying the contents of the status bar.
|
|
10
10
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"CameraPermission.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/CameraPermission.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAEL,mBAAmB,EAEnB,SAAS,EACT,UAAU,EACX,MAAM,UAAU,CAAC;AAClB,OAAO,EAAE,aAAa,EAAE,MAAM,uBAAuB,CAAC;AAEtD;;EAEE;AACF,qBAAa,sBAAsB;IACjC;;;;QAII;IACG,aAAa,EAAE,aAAa,CAAU;IAC7C;;;;QAII;IACG,UAAU,EAAE,MAAM,CAAqB;IAC9C;;;;QAII;IACG,cAAc,EAAE,MAAM,CAAqB;IAClD;;QAEI;IACG,IAAI,EAAE,SAAS,CAAiD;IACvE;;QAEI;IACG,kBAAkB,EAAE,mBAAmB,CAQ3C;IACH;;QAEI;IACG,WAAW,EAAE,mBAAmB,CAQpC;IACH;;QAEI;IACG,iBAAiB,EAAE,UAAU,CAGjC;IACH;;QAEI;IACG,uBAAuB,EAAE,UAAU,CAGvC;IAEH,yEAAyE;gBACtD,MAAM,GAAE,WAAW,CAAC,sBAAsB,CAAM;CA0BpE"}
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
import { DeepPartial
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
2
|
/**
|
|
3
3
|
Value palette describing the colors of the scanner screens.
|
|
4
4
|
*/
|
|
5
|
-
export declare class Palette
|
|
5
|
+
export declare class Palette {
|
|
6
6
|
/**
|
|
7
7
|
The primary color used for enabled elements.
|
|
8
8
|
|
|
@@ -105,7 +105,7 @@ export declare class Palette extends PartiallyConstructible {
|
|
|
105
105
|
/**
|
|
106
106
|
Configuration of the text field appearance.
|
|
107
107
|
*/
|
|
108
|
-
export declare class StyledText
|
|
108
|
+
export declare class StyledText {
|
|
109
109
|
/**
|
|
110
110
|
Determines whether the text field is visible or not.
|
|
111
111
|
|
|
@@ -136,7 +136,7 @@ export declare class StyledText extends PartiallyConstructible {
|
|
|
136
136
|
/**
|
|
137
137
|
Configuration of the icon appearance.
|
|
138
138
|
*/
|
|
139
|
-
export declare class IconStyle
|
|
139
|
+
export declare class IconStyle {
|
|
140
140
|
/**
|
|
141
141
|
Determines whether the icon is visible or not.
|
|
142
142
|
|
|
@@ -155,7 +155,7 @@ export declare class IconStyle extends PartiallyConstructible {
|
|
|
155
155
|
/**
|
|
156
156
|
Configuration of the icon appearance on a button.
|
|
157
157
|
*/
|
|
158
|
-
export declare class IconButton
|
|
158
|
+
export declare class IconButton {
|
|
159
159
|
/**
|
|
160
160
|
Determines whether the icon is visible on the button.
|
|
161
161
|
|
|
@@ -180,7 +180,7 @@ export declare class IconButton extends PartiallyConstructible {
|
|
|
180
180
|
/**
|
|
181
181
|
Configuration of the polygon appearance.
|
|
182
182
|
*/
|
|
183
|
-
export declare class PolygonStyle
|
|
183
|
+
export declare class PolygonStyle {
|
|
184
184
|
/**
|
|
185
185
|
The color of the polygon outline.
|
|
186
186
|
|
|
@@ -211,7 +211,7 @@ export declare class PolygonStyle extends PartiallyConstructible {
|
|
|
211
211
|
/**
|
|
212
212
|
Configuration of the background appearance for buttons and hints.
|
|
213
213
|
*/
|
|
214
|
-
export declare class BackgroundStyle
|
|
214
|
+
export declare class BackgroundStyle {
|
|
215
215
|
/**
|
|
216
216
|
The color of the outline.
|
|
217
217
|
|
|
@@ -236,7 +236,7 @@ export declare class BackgroundStyle extends PartiallyConstructible {
|
|
|
236
236
|
/**
|
|
237
237
|
Configuration of the appearance for foreground elements (e.g. text and/or icons, etc).
|
|
238
238
|
*/
|
|
239
|
-
export declare class ForegroundStyle
|
|
239
|
+
export declare class ForegroundStyle {
|
|
240
240
|
/**
|
|
241
241
|
Determines whether the icon is visible or not.
|
|
242
242
|
|
|
@@ -261,7 +261,7 @@ export declare class ForegroundStyle extends PartiallyConstructible {
|
|
|
261
261
|
/**
|
|
262
262
|
Configuration of the badge.
|
|
263
263
|
*/
|
|
264
|
-
export declare class BadgeStyle
|
|
264
|
+
export declare class BadgeStyle {
|
|
265
265
|
/**
|
|
266
266
|
Determines whether the badge is visible or not.
|
|
267
267
|
|
|
@@ -284,7 +284,7 @@ export declare class BadgeStyle extends PartiallyConstructible {
|
|
|
284
284
|
/**
|
|
285
285
|
Configuration of the round button.
|
|
286
286
|
*/
|
|
287
|
-
export declare class RoundButton
|
|
287
|
+
export declare class RoundButton {
|
|
288
288
|
/**
|
|
289
289
|
Determines whether the button is visible or not.
|
|
290
290
|
|
|
@@ -327,7 +327,7 @@ export declare class RoundButton extends PartiallyConstructible {
|
|
|
327
327
|
/**
|
|
328
328
|
Configuration of the button with a badge.
|
|
329
329
|
*/
|
|
330
|
-
export declare class BadgedButton
|
|
330
|
+
export declare class BadgedButton {
|
|
331
331
|
/**
|
|
332
332
|
The color of the badge's background.
|
|
333
333
|
|
|
@@ -376,7 +376,7 @@ export declare class BadgedButton extends PartiallyConstructible {
|
|
|
376
376
|
/**
|
|
377
377
|
Configuration of the button.
|
|
378
378
|
*/
|
|
379
|
-
export declare class ButtonConfiguration
|
|
379
|
+
export declare class ButtonConfiguration {
|
|
380
380
|
/**
|
|
381
381
|
Determines whether the button is visible or not.
|
|
382
382
|
|
|
@@ -409,7 +409,7 @@ export declare class ButtonConfiguration extends PartiallyConstructible {
|
|
|
409
409
|
/**
|
|
410
410
|
Configuration for the popup menu items.
|
|
411
411
|
*/
|
|
412
|
-
export declare class PopupMenuItem
|
|
412
|
+
export declare class PopupMenuItem {
|
|
413
413
|
/**
|
|
414
414
|
The text to be displayed on the button.
|
|
415
415
|
*/
|
|
@@ -430,7 +430,7 @@ export declare class PopupMenuItem extends PartiallyConstructible {
|
|
|
430
430
|
/**
|
|
431
431
|
Configuration of the button located on a bar.
|
|
432
432
|
*/
|
|
433
|
-
export declare class BarButtonConfiguration
|
|
433
|
+
export declare class BarButtonConfiguration {
|
|
434
434
|
/**
|
|
435
435
|
Determines whether the button is visible or not.
|
|
436
436
|
|
|
@@ -468,8 +468,21 @@ Configure the orientation of the interface.
|
|
|
468
468
|
- `LANDSCAPE`:
|
|
469
469
|
Lock the orientation to landscape.
|
|
470
470
|
*/
|
|
471
|
-
export type OrientationLockMode =
|
|
472
|
-
|
|
471
|
+
export type OrientationLockMode =
|
|
472
|
+
/**
|
|
473
|
+
Do not restrict the interface's orientation.
|
|
474
|
+
*/
|
|
475
|
+
'NONE'
|
|
476
|
+
/**
|
|
477
|
+
Lock the orientation to portrait.
|
|
478
|
+
*/
|
|
479
|
+
| 'PORTRAIT'
|
|
480
|
+
/**
|
|
481
|
+
Lock the orientation to landscape.
|
|
482
|
+
*/
|
|
483
|
+
| 'LANDSCAPE';
|
|
484
|
+
/** @hidden */
|
|
485
|
+
export declare const OrientationLockModeValues: ReadonlyArray<OrientationLockMode>;
|
|
473
486
|
/**
|
|
474
487
|
Configuration of the camera preview mode.
|
|
475
488
|
|
|
@@ -478,8 +491,17 @@ Configuration of the camera preview mode.
|
|
|
478
491
|
- `FILL_IN`:
|
|
479
492
|
In this mode, the camera preview frames fill the entire layout view - the preview frames may contain additional content at the edges that are not visible in the preview layout.
|
|
480
493
|
*/
|
|
481
|
-
export type CameraPreviewMode =
|
|
482
|
-
|
|
494
|
+
export type CameraPreviewMode =
|
|
495
|
+
/**
|
|
496
|
+
In this mode, the camera preview frames will be scaled to fit inside the layout view size - the full preview frame content will be visible, but unused edges might appear in the preview layout.
|
|
497
|
+
*/
|
|
498
|
+
'FIT_IN'
|
|
499
|
+
/**
|
|
500
|
+
In this mode, the camera preview frames fill the entire layout view - the preview frames may contain additional content at the edges that are not visible in the preview layout.
|
|
501
|
+
*/
|
|
502
|
+
| 'FILL_IN';
|
|
503
|
+
/** @hidden */
|
|
504
|
+
export declare const CameraPreviewModeValues: ReadonlyArray<CameraPreviewMode>;
|
|
483
505
|
/**
|
|
484
506
|
Determines the successful detection sound.
|
|
485
507
|
|
|
@@ -488,12 +510,21 @@ Determines the successful detection sound.
|
|
|
488
510
|
- `CLASSIC_BEEP`:
|
|
489
511
|
The old, classic beep sound.
|
|
490
512
|
*/
|
|
491
|
-
export type SoundType =
|
|
492
|
-
|
|
513
|
+
export type SoundType =
|
|
514
|
+
/**
|
|
515
|
+
A modern beep sound.
|
|
516
|
+
*/
|
|
517
|
+
'MODERN_BEEP'
|
|
518
|
+
/**
|
|
519
|
+
The old, classic beep sound.
|
|
520
|
+
*/
|
|
521
|
+
| 'CLASSIC_BEEP';
|
|
522
|
+
/** @hidden */
|
|
523
|
+
export declare const SoundTypeValues: ReadonlyArray<SoundType>;
|
|
493
524
|
/**
|
|
494
525
|
Configuration for the sound.
|
|
495
526
|
*/
|
|
496
|
-
export declare class Sound
|
|
527
|
+
export declare class Sound {
|
|
497
528
|
/**
|
|
498
529
|
Determine whether the beep sound should be enabled or not when a barcode is detected.
|
|
499
530
|
|
|
@@ -512,7 +543,7 @@ export declare class Sound extends PartiallyConstructible {
|
|
|
512
543
|
/**
|
|
513
544
|
Configure the vibration.
|
|
514
545
|
*/
|
|
515
|
-
export declare class Vibration
|
|
546
|
+
export declare class Vibration {
|
|
516
547
|
/**
|
|
517
548
|
Determine whether vibration should be enabled or not when a barcode is detected.
|
|
518
549
|
|
|
@@ -525,7 +556,7 @@ export declare class Vibration extends PartiallyConstructible {
|
|
|
525
556
|
/**
|
|
526
557
|
Configuration of timeouts.
|
|
527
558
|
*/
|
|
528
|
-
export declare class Timeouts
|
|
559
|
+
export declare class Timeouts {
|
|
529
560
|
/**
|
|
530
561
|
Sets the length of time, in milliseconds, when the scanner should auto close. Default is 0 (disabled).
|
|
531
562
|
|
|
@@ -544,7 +575,7 @@ export declare class Timeouts extends PartiallyConstructible {
|
|
|
544
575
|
/**
|
|
545
576
|
Represents the insets of a rectangle.
|
|
546
577
|
*/
|
|
547
|
-
export declare class EdgeInsets
|
|
578
|
+
export declare class EdgeInsets {
|
|
548
579
|
/**
|
|
549
580
|
The top inset.
|
|
550
581
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"Common.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/Common.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
/**
|
|
2
|
+
The visual mode used for the navigation bar icons. Android only.
|
|
3
|
+
|
|
4
|
+
- `DARK`:
|
|
5
|
+
Display all icons in the navigation bar in black.
|
|
6
|
+
- `LIGHT`:
|
|
7
|
+
Display all icons in the navigation bar in white.
|
|
8
|
+
- `HIDDEN`:
|
|
9
|
+
Hide the navigation bar.
|
|
10
|
+
*/
|
|
11
|
+
export type NavigationBarMode =
|
|
12
|
+
/**
|
|
13
|
+
Display all icons in the navigation bar in black.
|
|
14
|
+
*/
|
|
15
|
+
'DARK'
|
|
16
|
+
/**
|
|
17
|
+
Display all icons in the navigation bar in white.
|
|
18
|
+
*/
|
|
19
|
+
| 'LIGHT'
|
|
20
|
+
/**
|
|
21
|
+
Hide the navigation bar.
|
|
22
|
+
*/
|
|
23
|
+
| 'HIDDEN';
|
|
24
|
+
/** @hidden */
|
|
25
|
+
export declare const NavigationBarModeValues: ReadonlyArray<NavigationBarMode>;
|
|
26
|
+
//# sourceMappingURL=NavigationBarConfiguration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"NavigationBarConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/NavigationBarConfiguration.ts"],"names":[],"mappings":"AAGA;;;;;;;;;EASE;AACF,MAAM,MAAM,iBAAiB;AAC3B;;IAEI;AACF,MAAM;AACR;;IAEI;GACF,OAAO;AACT;;IAEI;GACF,QAAQ,CAAC;AAEb,cAAc;AACd,eAAO,MAAM,uBAAuB,EAAE,aAAa,CAAC,iBAAiB,CAI3D,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
|
+
import { StyledText } from './Common';
|
|
3
3
|
/**
|
|
4
4
|
Configuration of the overlay to be shown after the successful scan.
|
|
5
5
|
*/
|
|
6
|
-
export declare class ScanCompletionOverlay
|
|
6
|
+
export declare class ScanCompletionOverlay {
|
|
7
7
|
/**
|
|
8
8
|
A caption below the icon.
|
|
9
9
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScanCompletionOverlay.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/ScanCompletionOverlay.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC;;EAEE;AACF,qBAAa,qBAAqB;IAChC;;QAEI;IACG,OAAO,EAAE,UAAU,CAGvB;IACH;;;;QAII;IACG,SAAS,EAAE,MAAM,CAAuB;IAC/C;;;;QAII;IACG,sBAAsB,EAAE,MAAM,CAAyB;IAC9D;;;;QAII;IACG,OAAO,EAAE,MAAM,CAAQ;IAE9B,wEAAwE;gBACrD,MAAM,GAAE,WAAW,CAAC,qBAAqB,CAAM;CAcnE"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
|
+
import { ButtonConfiguration, StyledText } from './Common';
|
|
3
3
|
/**
|
|
4
4
|
Configuration of the standard alert dialog.
|
|
5
5
|
*/
|
|
6
|
-
export declare class ScanbotAlertDialog
|
|
6
|
+
export declare class ScanbotAlertDialog {
|
|
7
7
|
/**
|
|
8
8
|
The title displayed above the message.
|
|
9
9
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ScanbotAlertDialog.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/ScanbotAlertDialog.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAmB,mBAAmB,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAE5E;;EAEE;AACF,qBAAa,kBAAkB;IAC7B;;QAEI;IACG,KAAK,EAAE,UAAU,CAAiE;IACzF;;QAEI;IACG,QAAQ,EAAE,UAAU,CAGxB;IACH;;;;QAII;IACG,UAAU,EAAE,MAAM,CAAqB;IAC9C;;;;QAII;IACG,iBAAiB,EAAE,MAAM,CAA0B;IAC1D;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAqB;IAChD;;QAEI;IACG,QAAQ,EAAE,mBAAmB,CAEjC;IACH;;QAEI;IACG,YAAY,EAAE,mBAAmB,CAOrC;IACH;;QAEI;IACG,YAAY,EAAE,mBAAmB,CAOrC;IAEH,qEAAqE;gBAClD,MAAM,GAAE,WAAW,CAAC,kBAAkB,CAAM;CA0BhE"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
|
+
import { ButtonConfiguration, StyledText } from './Common';
|
|
3
3
|
/**
|
|
4
4
|
Configuration of the top bar's appearance.
|
|
5
5
|
*/
|
|
6
|
-
export declare class TopBarConfiguration
|
|
6
|
+
export declare class TopBarConfiguration {
|
|
7
7
|
/**
|
|
8
8
|
Appearance of the top bar's title.
|
|
9
9
|
*/
|
|
@@ -43,8 +43,21 @@ The visual mode used for the status bar icons.
|
|
|
43
43
|
- `HIDDEN`:
|
|
44
44
|
Hide the status bar icons.
|
|
45
45
|
*/
|
|
46
|
-
export type StatusBarMode =
|
|
47
|
-
|
|
46
|
+
export type StatusBarMode =
|
|
47
|
+
/**
|
|
48
|
+
Display all icons in the status bar in black.
|
|
49
|
+
*/
|
|
50
|
+
'DARK'
|
|
51
|
+
/**
|
|
52
|
+
Display all icons in the status bar in white.
|
|
53
|
+
*/
|
|
54
|
+
| 'LIGHT'
|
|
55
|
+
/**
|
|
56
|
+
Hide the status bar icons.
|
|
57
|
+
*/
|
|
58
|
+
| 'HIDDEN';
|
|
59
|
+
/** @hidden */
|
|
60
|
+
export declare const StatusBarModeValues: ReadonlyArray<StatusBarMode>;
|
|
48
61
|
/**
|
|
49
62
|
The visual mode used for the top bar.
|
|
50
63
|
|
|
@@ -55,6 +68,19 @@ The visual mode used for the top bar.
|
|
|
55
68
|
- `HIDDEN`:
|
|
56
69
|
Hide the top bar completely.
|
|
57
70
|
*/
|
|
58
|
-
export type TopBarMode =
|
|
59
|
-
|
|
71
|
+
export type TopBarMode =
|
|
72
|
+
/**
|
|
73
|
+
Display the top bar with a background color or with transparency.
|
|
74
|
+
*/
|
|
75
|
+
'SOLID'
|
|
76
|
+
/**
|
|
77
|
+
Display the top bar with a gradient background color or a gradient with transparency. The buttons will still be visible.
|
|
78
|
+
*/
|
|
79
|
+
| 'GRADIENT'
|
|
80
|
+
/**
|
|
81
|
+
Hide the top bar completely.
|
|
82
|
+
*/
|
|
83
|
+
| 'HIDDEN';
|
|
84
|
+
/** @hidden */
|
|
85
|
+
export declare const TopBarModeValues: ReadonlyArray<TopBarMode>;
|
|
60
86
|
//# sourceMappingURL=TopBarConfiguration.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"TopBarConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/TopBarConfiguration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAmB,mBAAmB,EAAmB,UAAU,EAAE,MAAM,UAAU,CAAC;AAE7F;;EAEE;AACF,qBAAa,mBAAmB;IAC9B;;QAEI;IACG,KAAK,EAAE,UAAU,CAIrB;IACH;;;;QAII;IACG,IAAI,EAAE,UAAU,CAAW;IAClC;;;;QAII;IACG,aAAa,EAAE,aAAa,CAAW;IAC9C;;;;QAII;IACG,eAAe,EAAE,MAAM,CAAqB;IACnD;;QAEI;IACG,YAAY,EAAE,mBAAmB,CAQrC;IAEH,sEAAsE;gBACnD,MAAM,GAAE,WAAW,CAAC,mBAAmB,CAAM;CAiBjE;AAED;;;;;;;;;EASE;AACF,MAAM,MAAM,aAAa;AACvB;;IAEI;AACF,MAAM;AACR;;IAEI;GACF,OAAO;AACT;;IAEI;GACF,QAAQ,CAAC;AAEb,cAAc;AACd,eAAO,MAAM,mBAAmB,EAAE,aAAa,CAAC,aAAa,CAInD,CAAC;AAEX;;;;;;;;;EASE;AACF,MAAM,MAAM,UAAU;AACpB;;IAEI;AACF,OAAO;AACT;;IAEI;GACF,UAAU;AACZ;;IAEI;GACF,QAAQ,CAAC;AAEb,cAAc;AACd,eAAO,MAAM,gBAAgB,EAAE,aAAa,CAAC,UAAU,CAA4C,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
1
|
+
import { DeepPartial } from '../../utils/utils';
|
|
2
|
+
import { BackgroundStyle, IconStyle, StyledText } from './Common';
|
|
3
3
|
/**
|
|
4
4
|
Configuration of the hint guiding users through the scanning process.
|
|
5
5
|
*/
|
|
6
|
-
export declare class UserGuidanceConfiguration
|
|
6
|
+
export declare class UserGuidanceConfiguration {
|
|
7
7
|
/**
|
|
8
8
|
Determines whether the user guidance is visible or not.
|
|
9
9
|
|
|
@@ -24,7 +24,7 @@ export declare class UserGuidanceConfiguration extends PartiallyConstructible {
|
|
|
24
24
|
/**
|
|
25
25
|
Configuration of the hint (containing an icon) guiding users through the scanning process.
|
|
26
26
|
*/
|
|
27
|
-
export declare class IconUserGuidanceConfiguration
|
|
27
|
+
export declare class IconUserGuidanceConfiguration {
|
|
28
28
|
/**
|
|
29
29
|
Determines whether the user guidance is visible or not.
|
|
30
30
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"UserGuidanceConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/UserGuidanceConfiguration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,eAAe,EAAE,SAAS,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAElE;;EAEE;AACF,qBAAa,yBAAyB;IACpC;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAQ;IAC/B;;QAEI;IACG,KAAK,EAAE,UAAU,CAAkD;IAC1E;;QAEI;IACG,UAAU,EAAE,eAAe,CAG/B;IAEH,4EAA4E;gBACzD,MAAM,GAAE,WAAW,CAAC,yBAAyB,CAAM;CAWvE;AAED;;EAEE;AACF,qBAAa,6BAA6B;IACxC;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAQ;IAC/B;;QAEI;IACG,IAAI,EAAE,SAAS,CAAiD;IACvE;;QAEI;IACG,KAAK,EAAE,UAAU,CAAkD;IAC1E;;QAEI;IACG,UAAU,EAAE,eAAe,CAA4D;IAE9F,gFAAgF;gBAC7D,MAAM,GAAE,WAAW,CAAC,6BAA6B,CAAM;CAc3E"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
import {
|
|
2
|
-
import {
|
|
3
|
-
import {
|
|
1
|
+
import { AspectRatio } from '../../geometry/Geometry';
|
|
2
|
+
import { DeepPartial } from '../../utils/utils';
|
|
3
|
+
import { EdgeInsets } from './Common';
|
|
4
4
|
/**
|
|
5
5
|
Base configuration of the scanning interface’s viewfinder, serving as guidance to the user.
|
|
6
6
|
*/
|
|
@@ -8,7 +8,7 @@ export type BaseViewFinderConfiguration = ViewFinderConfiguration | PermanentVie
|
|
|
8
8
|
/**
|
|
9
9
|
Configuration of the scanning interface’s viewfinder, allowing it to be shown or hidden as guidance to the user.
|
|
10
10
|
*/
|
|
11
|
-
export declare class ViewFinderConfiguration
|
|
11
|
+
export declare class ViewFinderConfiguration {
|
|
12
12
|
readonly _type: 'ViewFinderConfiguration';
|
|
13
13
|
/**
|
|
14
14
|
The visual appearance of the viewfinder.
|
|
@@ -46,7 +46,7 @@ export declare class ViewFinderConfiguration extends PartiallyConstructible {
|
|
|
46
46
|
/**
|
|
47
47
|
Configuration of the scanning interface’s viewfinder, which is always visible to guide the user.
|
|
48
48
|
*/
|
|
49
|
-
export declare class PermanentViewFinderConfiguration
|
|
49
|
+
export declare class PermanentViewFinderConfiguration {
|
|
50
50
|
readonly _type: 'PermanentViewFinderConfiguration';
|
|
51
51
|
/**
|
|
52
52
|
The visual appearance of the viewfinder.
|
|
@@ -82,7 +82,7 @@ export type FinderStyle = FinderCorneredStyle | FinderStrokedStyle;
|
|
|
82
82
|
/**
|
|
83
83
|
A variant of the viewfinder displaying only the four corners of the scanning area.
|
|
84
84
|
*/
|
|
85
|
-
export declare class FinderCorneredStyle
|
|
85
|
+
export declare class FinderCorneredStyle {
|
|
86
86
|
readonly _type: 'FinderCorneredStyle';
|
|
87
87
|
/**
|
|
88
88
|
The color of the viewfinder corner's outlines.
|
|
@@ -108,7 +108,7 @@ export declare class FinderCorneredStyle extends PartiallyConstructible {
|
|
|
108
108
|
/**
|
|
109
109
|
A variant of the viewfinder displaying a full outline of the scanning area.
|
|
110
110
|
*/
|
|
111
|
-
export declare class FinderStrokedStyle
|
|
111
|
+
export declare class FinderStrokedStyle {
|
|
112
112
|
readonly _type: 'FinderStrokedStyle';
|
|
113
113
|
/**
|
|
114
114
|
The color of the viewfinder corner's outlines.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ViewFinderConfiguration.d.ts","sourceRoot":"","sources":["../../../../../../../src/types/core/ui_v2/common/ViewFinderConfiguration.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,WAAW,EAAE,MAAM,yBAAyB,CAAC;AACtD,OAAO,EAAE,WAAW,EAAE,MAAM,mBAAmB,CAAC;AAChD,OAAO,EAAE,UAAU,EAAE,MAAM,UAAU,CAAC;AAEtC;;EAEE;AACF,MAAM,MAAM,2BAA2B,GACnC,uBAAuB,GACvB,gCAAgC,CAAC;AAmBrC;;EAEE;AACF,qBAAa,uBAAuB;IAClC,SAAgB,KAAK,EAAE,yBAAyB,CAA6B;IAC7E;;QAEI;IACG,KAAK,EAAE,WAAW,CAItB;IACH;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAwB;IACnD;;QAEI;IACG,WAAW,EAAE,WAAW,CAAgD;IAC/E;;QAEI;IACG,aAAa,EAAE,UAAU,CAK7B;IACH;;;;QAII;IACG,eAAe,EAAE,MAAM,CAAQ;IACtC;;;;QAII;IACG,OAAO,EAAE,OAAO,CAAQ;IAE/B,0EAA0E;gBACvD,MAAM,GAAE,WAAW,CAAC,uBAAuB,CAAM;CAoBrE;AAED;;EAEE;AACF,qBAAa,gCAAgC;IAC3C,SAAgB,KAAK,EAAE,kCAAkC,CAAsC;IAC/F;;QAEI;IACG,KAAK,EAAE,WAAW,CAItB;IACH;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAwB;IACnD;;QAEI;IACG,WAAW,EAAE,WAAW,CAAgD;IAC/E;;QAEI;IACG,aAAa,EAAE,UAAU,CAK7B;IACH;;;;QAII;IACG,eAAe,EAAE,MAAM,CAAQ;IAEtC,mFAAmF;gBAChE,MAAM,GAAE,WAAW,CAAC,gCAAgC,CAAM;CAiB9E;AAED;;EAEE;AACF,MAAM,MAAM,WAAW,GAAG,mBAAmB,GAAG,kBAAkB,CAAC;AAiBnE;;EAEE;AACF,qBAAa,mBAAmB;IAC9B,SAAgB,KAAK,EAAE,qBAAqB,CAAyB;IACrE;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAe;IACzC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAO;IACjC;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAQ;IAEnC,sEAAsE;gBACnD,MAAM,GAAE,WAAW,CAAC,mBAAmB,CAAM;CAWjE;AAED;;EAEE;AACF,qBAAa,kBAAkB;IAC7B,SAAgB,KAAK,EAAE,oBAAoB,CAAwB;IACnE;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAe;IACzC;;;;QAII;IACG,WAAW,EAAE,MAAM,CAAO;IACjC;;;;QAII;IACG,YAAY,EAAE,MAAM,CAAQ;IAEnC,qEAAqE;gBAClD,MAAM,GAAE,WAAW,CAAC,kBAAkB,CAAM;CAWhE"}
|
|
@@ -1,7 +1,6 @@
|
|
|
1
|
-
export * from './barcode/BarcodeItemMapper';
|
|
2
1
|
export * from './barcode/ArTrackingOverlayConfiguration';
|
|
3
2
|
export * from './barcode/BarcodeInfoMapping';
|
|
4
|
-
export * from './barcode/
|
|
3
|
+
export * from './barcode/BarcodeItemMapper';
|
|
5
4
|
export * from './barcode/BarcodeScannerScreenConfiguration';
|
|
6
5
|
export * from './barcode/BarcodeScannerUiResult';
|
|
7
6
|
export * from './barcode/BarcodeTextLocalization';
|
|
@@ -10,6 +9,7 @@ export * from './barcode/FindAndPickScanningModeUseCase';
|
|
|
10
9
|
export * from './barcode/MultipleScanningModeUseCase';
|
|
11
10
|
export * from './barcode/SingleScanningModeUseCase';
|
|
12
11
|
export * from './common/ActionBarConfiguration';
|
|
12
|
+
export * from './common/BottomBarConfiguration';
|
|
13
13
|
export * from './common/CameraConfiguration';
|
|
14
14
|
export * from './common/CameraPermission';
|
|
15
15
|
export * from './common/Common';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/ui_v2/index.ts"],"names":[],"mappings":"AAAA,cAAc,0CAA0C,CAAC;AACzD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,6CAA6C,CAAC;AAC5D,cAAc,kCAAkC,CAAC;AACjD,cAAc,mCAAmC,CAAC;AAClD,cAAc,0BAA0B,CAAC;AACzC,cAAc,0CAA0C,CAAC;AACzD,cAAc,uCAAuC,CAAC;AACtD,cAAc,qCAAqC,CAAC;AACpD,cAAc,iCAAiC,CAAC;AAChD,cAAc,iCAAiC,CAAC;AAChD,cAAc,8BAA8B,CAAC;AAC7C,cAAc,2BAA2B,CAAC;AAC1C,cAAc,iBAAiB,CAAC;AAChC,cAAc,qCAAqC,CAAC;AACpD,cAAc,gCAAgC,CAAC;AAC/C,cAAc,6BAA6B,CAAC;AAC5C,cAAc,8BAA8B,CAAC;AAC7C,cAAc,oCAAoC,CAAC;AACnD,cAAc,kCAAkC,CAAC"}
|
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
import { ToJsonConfiguration } from '../
|
|
2
|
-
import { DeepPartial
|
|
1
|
+
import { ToJsonConfiguration } from '../common/JsonSerializationTypes';
|
|
2
|
+
import { DeepPartial } from './utils';
|
|
3
3
|
/**
|
|
4
4
|
Profile info of a reference-counted stored object.
|
|
5
5
|
*/
|
|
6
|
-
export declare class RefCountedObjectProfile
|
|
6
|
+
export declare class RefCountedObjectProfile {
|
|
7
7
|
/**
|
|
8
8
|
Unique ID of the object.
|
|
9
9
|
*/
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ObjectPoolTypes.d.ts","sourceRoot":"","sources":["../../../../../../src/types/core/utils/ObjectPoolTypes.ts"],"names":[],"mappings":"AAGA,OAAO,EAAE,mBAAmB,EAAE,MAAM,kCAAkC,CAAC;AACvE,OAAO,EAAE,WAAW,EAAE,MAAM,SAAS,CAAC;AAEtC;;EAEE;AACF,qBAAa,uBAAuB;IAClC;;QAEI;IACJ,SAAgB,QAAQ,EAAE,MAAM,CAAC;IACjC;;QAEI;IACJ,SAAgB,gBAAgB,EAAE,MAAM,CAAC;IACzC;;;;QAII;IACJ,SAAgB,gBAAgB,EAAE,MAAM,CAAK;IAC7C;;;;QAII;IACJ,SAAgB,oBAAoB,EAAE,MAAM,CAAK;IAEjD,0EAA0E;gBACvD,MAAM,GAAE,WAAW,CAAC,uBAAuB,CAAM;IAmB7D,SAAS,CACd,MAAM,GAAE,mBAA+C,GACtD,WAAW,CAAC,uBAAuB,CAAC;CAQxC"}
|