scanbot-web-sdk 6.0.0-dev.6 → 7.0.0-dev.2

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.
Files changed (287) hide show
  1. package/@types/barcode-scanner-view.d.ts +1 -1
  2. package/@types/core/bridge/compiled/{BarcodeConfigs.d.ts → BarcodeConfigurationTypes.d.ts} +558 -173
  3. package/@types/core/bridge/compiled/BarcodeDocumentModel.d.ts +1421 -0
  4. package/@types/core/bridge/compiled/BarcodeDocumentTypes.d.ts +14 -13
  5. package/@types/core/bridge/compiled/BarcodeScannerTypes.d.ts +25 -14
  6. package/@types/core/bridge/compiled/BarcodeTypes.d.ts +58 -56
  7. package/@types/core/bridge/compiled/CheckDocumentModel.d.ts +130 -0
  8. package/@types/core/bridge/compiled/CheckScannerTypes.d.ts +67 -0
  9. package/@types/core/bridge/compiled/CommonFieldType.d.ts +29 -28
  10. package/@types/core/bridge/compiled/CreditCardDocumentModel.d.ts +16 -0
  11. package/@types/core/bridge/compiled/CreditCardTypes.d.ts +35 -33
  12. package/@types/core/bridge/compiled/DocumentDataExtractorConfigurationTypes.d.ts +148 -0
  13. package/@types/core/bridge/compiled/DocumentDataExtractorTypes.d.ts +90 -0
  14. package/@types/core/bridge/compiled/DocumentQualityAnalyzerTypes.d.ts +28 -23
  15. package/@types/core/bridge/compiled/{DocumentDetectorTypes.d.ts → DocumentScannerTypes.d.ts} +49 -47
  16. package/@types/core/bridge/compiled/DocumentsModel.d.ts +489 -0
  17. package/@types/core/bridge/compiled/{EhicTypes.d.ts → EuropeanHealthInsuranceCardTypes.d.ts} +51 -108
  18. package/@types/core/bridge/compiled/FrameAccumulationTypes.d.ts +37 -14
  19. package/@types/core/bridge/compiled/GenericDocument.d.ts +17 -17
  20. package/@types/core/bridge/compiled/Geometry.d.ts +2 -2
  21. package/@types/core/bridge/compiled/ImageTypes.d.ts +1 -0
  22. package/@types/core/bridge/compiled/LicensePlateScannerTypes.d.ts +20 -19
  23. package/@types/core/bridge/compiled/MedicalCertificateTypes.d.ts +108 -105
  24. package/@types/core/bridge/compiled/MrzTypes.d.ts +73 -0
  25. package/@types/core/bridge/compiled/ParametricFilters.d.ts +4 -3
  26. package/@types/core/bridge/compiled/{PdfConfig.d.ts → PdfConfigurationTypes.d.ts} +48 -45
  27. package/@types/core/bridge/compiled/{GenericTextLineScannerTypes.d.ts → TextPatternScannerTypes.d.ts} +20 -39
  28. package/@types/core/bridge/compiled/TiffTypes.d.ts +48 -50
  29. package/@types/core/bridge/compiled/VinScannerTypes.d.ts +79 -0
  30. package/@types/core/bridge/worker-bridge.d.ts +512 -374
  31. package/@types/core/worker/ScanbotSDK.Core.d.ts +28 -22
  32. package/@types/core-types.d.ts +15 -12
  33. package/@types/cropping-view.d.ts +8 -4
  34. package/@types/document-data-extractor-view.d.ts +22 -0
  35. package/@types/document-scanner-view.d.ts +16 -7
  36. package/@types/index.d.ts +37 -24
  37. package/@types/interfaces/i-cropping-view-handle.d.ts +2 -0
  38. package/@types/interfaces/i-document-data-extractor-scanner-handle.d.ts +3 -0
  39. package/@types/interfaces/{i-text-data-scanner-handle.d.ts → i-text-pattern-scanner-handle.d.ts} +1 -1
  40. package/@types/model/configuration/barcode-scanner-configuration.d.ts +1 -0
  41. package/@types/model/configuration/cropping-view-configuration.d.ts +1 -0
  42. package/@types/model/configuration/document-data-extractor-configuration.d.ts +9 -0
  43. package/@types/model/configuration/document-scanner-configuration.d.ts +8 -4
  44. package/@types/model/configuration/initialization-options.d.ts +1 -2
  45. package/@types/model/configuration/mrz-scanner-configuration.d.ts +4 -4
  46. package/@types/model/configuration/selection-overlay-configuration.d.ts +5 -0
  47. package/@types/model/configuration/text-pattern-scanner-configuration.d.ts +9 -0
  48. package/@types/model/configuration/view-finder-scanner-configuration.d.ts +2 -1
  49. package/@types/model/configuration/vin-scanner-configuration.d.ts +4 -4
  50. package/@types/scanbot-sdk.d.ts +276 -210
  51. package/@types/scanner-view.d.ts +2 -0
  52. package/@types/service/document-data-extractor.d.ts +13 -0
  53. package/@types/service/ocr-engine.d.ts +3 -3
  54. package/@types/service/pdf-generator.d.ts +6 -1
  55. package/@types/service/simple-mrz-recognizer.d.ts +4 -4
  56. package/@types/service/storage/indexed-db/sb-indexed-db.d.ts +60 -0
  57. package/@types/service/storage/local/sb-local-storage.d.ts +11 -0
  58. package/@types/service/storage/sb-storage.d.ts +33 -0
  59. package/@types/service/storage/utils/create-worker-vite.d.ts +1 -0
  60. package/@types/service/storage/utils/create-worker.d.ts +1 -0
  61. package/@types/service/storage/utils/sb-storage-error.d.ts +5 -0
  62. package/@types/service/storage/utils/sb-storage-utils.d.ts +10 -0
  63. package/@types/service/text-pattern-scanner.d.ts +14 -0
  64. package/@types/service/tiff-generator.d.ts +7 -4
  65. package/@types/service/vin-scanner.d.ts +16 -0
  66. package/@types/{text-data-scanner-view.d.ts → text-pattern-scanner-view.d.ts} +10 -10
  67. package/@types/ui2/{controllers → barcode/controllers}/barcode-scanner-controller.d.ts +1 -1
  68. package/@types/ui2/{controllers → barcode/controllers}/multiple-scanning-mode-controller.d.ts +1 -1
  69. package/@types/ui2/{controllers → barcode/controllers}/single-scanning-mode-controller.d.ts +1 -1
  70. package/@types/ui2/{model → barcode/model}/counted-barcodes.d.ts +2 -2
  71. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/expected-barcode-mapper.d.ts +2 -2
  72. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/i-barcode-mapper.d.ts +2 -2
  73. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/user-barcode-mapper.d.ts +1 -1
  74. package/@types/ui2/{utils → barcode/utils}/camera-config.d.ts +2 -2
  75. package/@types/ui2/{utils → barcode/utils}/styled-badge.d.ts +3 -1
  76. package/@types/ui2/{utils → barcode/utils}/styled-box.d.ts +1 -1
  77. package/@types/ui2/barcode/utils/styled-button.d.ts +14 -0
  78. package/@types/ui2/{utils → barcode/utils}/useScanningViewSize.d.ts +1 -1
  79. package/@types/ui2/{views → barcode/views}/action-button/action-button-container.d.ts +3 -3
  80. package/@types/ui2/{views → barcode/views}/action-button/action-button.d.ts +1 -1
  81. package/@types/ui2/{views → barcode/views}/ar/ar-badge.d.ts +2 -2
  82. package/@types/ui2/{views → barcode/views}/ar/ar-overlay-barcode-info.d.ts +2 -2
  83. package/@types/ui2/{views → barcode/views}/ar/vertical-positions.d.ts +2 -2
  84. package/@types/ui2/{views → barcode/views}/barcode-info/barcode-info.d.ts +1 -1
  85. package/@types/ui2/{views → barcode/views}/barcode-scanner.d.ts +8 -8
  86. package/@types/ui2/{views → barcode/views}/camera-permission-denied.d.ts +1 -1
  87. package/@types/ui2/{views → barcode/views}/dialog/barcode-info-dialog.d.ts +1 -1
  88. package/@types/ui2/{views → barcode/views}/dialog/barcode-mapping-error-dialog.d.ts +1 -1
  89. package/@types/ui2/{views → barcode/views}/dialog/base/confirmation-dialog.d.ts +1 -1
  90. package/@types/ui2/{views → barcode/views}/dialog/base/styled-dialog.d.ts +1 -0
  91. package/@types/ui2/{views → barcode/views}/dialog/count-edit-dialog.d.ts +1 -1
  92. package/@types/ui2/{views → barcode/views}/dialog/find-and-pick-submit-dialog.d.ts +1 -1
  93. package/@types/ui2/{views → barcode/views}/drawer/barcode-result-drawer.d.ts +1 -1
  94. package/@types/ui2/{views → barcode/views}/drawer/barcode-result-sidebar.d.ts +1 -1
  95. package/@types/ui2/{views → barcode/views}/drawer/counting-button.d.ts +1 -1
  96. package/@types/ui2/{views → barcode/views}/drawer/hooks/use-drag-listener.d.ts +1 -1
  97. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-drawer-empty-state.d.ts +1 -1
  98. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-list-item.d.ts +1 -1
  99. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-list.d.ts +1 -1
  100. package/@types/ui2/{views → barcode/views}/drawer/subviews/drawer-header-content.d.ts +1 -1
  101. package/@types/ui2/{views → barcode/views}/drawer/subviews/swipe-underlay.d.ts +1 -1
  102. package/@types/ui2/{views → barcode/views}/form/dialog-button.d.ts +4 -1
  103. package/@types/ui2/{views → barcode/views}/navigation-bar.d.ts +1 -1
  104. package/@types/ui2/{views → barcode/views}/styled-text.d.ts +2 -1
  105. package/@types/ui2/configuration/DocumentQualityAnalyzerTypes.d.ts +1 -0
  106. package/@types/ui2/configuration/DocumentScannerTypes.d.ts +1 -0
  107. package/@types/ui2/configuration/Geometry.d.ts +1 -1
  108. package/@types/ui2/configuration/ParametricFilters.d.ts +1 -0
  109. package/@types/ui2/configuration/{ActionBarConfiguration.d.ts → barcode/ActionBarConfiguration.d.ts} +1 -1
  110. package/@types/ui2/configuration/{ArTrackingOverlayConfiguration.d.ts → barcode/ArTrackingOverlayConfiguration.d.ts} +1 -1
  111. package/@types/ui2/configuration/{BarcodeInfoMapping.d.ts → barcode/BarcodeInfoMapping.d.ts} +1 -1
  112. package/@types/ui2/configuration/{BarcodeRecognizerConfiguration.d.ts → barcode/BarcodeRecognizerConfiguration.d.ts} +3 -3
  113. package/@types/ui2/configuration/{BarcodeScannerConfiguration.d.ts → barcode/BarcodeScannerConfiguration.d.ts} +1 -1
  114. package/@types/ui2/configuration/barcode/BarcodeScannerTypes.d.ts +2 -0
  115. package/@types/ui2/configuration/{BarcodeScannerUIResult.d.ts → barcode/BarcodeScannerUIResult.d.ts} +1 -1
  116. package/@types/ui2/configuration/{BarcodeTextLocalization.d.ts → barcode/BarcodeTextLocalization.d.ts} +1 -1
  117. package/@types/ui2/configuration/barcode/BarcodeTypes.d.ts +1 -0
  118. package/@types/ui2/configuration/{CameraConfiguration.d.ts → barcode/CameraConfiguration.d.ts} +1 -1
  119. package/@types/ui2/configuration/{CameraPermission.d.ts → barcode/CameraPermission.d.ts} +1 -1
  120. package/@types/ui2/configuration/{Common.d.ts → barcode/Common.d.ts} +1 -1
  121. package/@types/ui2/configuration/barcode/CommonFieldType.d.ts +1 -0
  122. package/@types/ui2/configuration/{FindAndPickScanningModeUseCase.d.ts → barcode/FindAndPickScanningModeUseCase.d.ts} +1 -1
  123. package/@types/ui2/configuration/barcode/GenericDocument.d.ts +1 -0
  124. package/@types/ui2/configuration/barcode/Geometry.d.ts +1 -0
  125. package/@types/ui2/configuration/{MultipleScanningModeUseCase.d.ts → barcode/MultipleScanningModeUseCase.d.ts} +1 -1
  126. package/@types/ui2/configuration/{ScanbotAlertDialog.d.ts → barcode/ScanbotAlertDialog.d.ts} +1 -1
  127. package/@types/ui2/configuration/{SingleScanningModeUseCase.d.ts → barcode/SingleScanningModeUseCase.d.ts} +1 -1
  128. package/@types/ui2/configuration/{TopBarConfiguration.d.ts → barcode/TopBarConfiguration.d.ts} +1 -1
  129. package/@types/ui2/configuration/{UserGuidanceConfiguration.d.ts → barcode/UserGuidanceConfiguration.d.ts} +1 -1
  130. package/@types/ui2/configuration/{ViewFinderConfiguration.d.ts → barcode/ViewFinderConfiguration.d.ts} +1 -1
  131. package/@types/ui2/configuration/common/ActionBarConfiguration.d.ts +42 -0
  132. package/@types/ui2/configuration/common/CameraConfiguration.d.ts +60 -0
  133. package/@types/ui2/configuration/common/CameraPermission.d.ts +62 -0
  134. package/@types/ui2/configuration/common/Common.d.ts +467 -0
  135. package/@types/ui2/configuration/common/NavigationBarConfiguration.d.ts +11 -0
  136. package/@types/ui2/configuration/common/ScanbotAlertDialog.d.ts +74 -0
  137. package/@types/ui2/configuration/common/TopBarConfiguration.d.ts +55 -0
  138. package/@types/ui2/configuration/common/UserGuidanceConfiguration.d.ts +64 -0
  139. package/@types/ui2/configuration/common/ViewFinderConfiguration.d.ts +93 -0
  140. package/@types/ui2/configuration/document/AcknowledgementScreenConfiguration.d.ts +125 -0
  141. package/@types/ui2/configuration/document/CameraScreenConfiguration.d.ts +659 -0
  142. package/@types/ui2/configuration/document/CroppingConfiguration.d.ts +1 -0
  143. package/@types/ui2/configuration/document/CroppingResult.d.ts +1 -0
  144. package/@types/ui2/configuration/document/CroppingScreenConfiguration.d.ts +141 -0
  145. package/@types/ui2/configuration/document/CroppingTextLocalization.d.ts +1 -0
  146. package/@types/ui2/configuration/document/DocumentScannerCameraConfiguration.d.ts +60 -0
  147. package/@types/ui2/configuration/document/DocumentScannerGuidanceVisibility.d.ts +11 -0
  148. package/@types/ui2/configuration/document/DocumentScannerOutputSettings.d.ts +38 -0
  149. package/@types/ui2/configuration/document/DocumentScannerScreens.d.ts +26 -0
  150. package/@types/ui2/configuration/document/DocumentScannerTextLocalization.d.ts +608 -0
  151. package/@types/ui2/configuration/document/DocumentScannerUIResult.d.ts +5 -0
  152. package/@types/ui2/configuration/document/DocumentScannerUserGuidance.d.ts +99 -0
  153. package/@types/ui2/configuration/document/DocumentScanningFlow.d.ts +91 -0
  154. package/@types/ui2/configuration/document/IntroductionScreenConfiguration.d.ts +188 -0
  155. package/@types/ui2/configuration/document/ReorderPagesScreenConfiguration.d.ts +1 -0
  156. package/@types/ui2/configuration/document/ReviewScreenConfiguration.d.ts +372 -0
  157. package/@types/ui2/configuration/native/DocumentData.d.ts +37 -0
  158. package/@types/ui2/configuration/native/PageData.d.ts +58 -0
  159. package/@types/ui2/configuration/native/PageImageSource.d.ts +13 -0
  160. package/@types/ui2/configuration/utils.d.ts +8 -0
  161. package/@types/ui2/configuration.d.ts +46 -21
  162. package/@types/ui2/document/assets/auto-capture-disabled-icon.d.ts +4 -0
  163. package/@types/ui2/document/assets/auto-capture-icon.d.ts +4 -0
  164. package/@types/ui2/document/assets/captured-circle-icon.d.ts +5 -0
  165. package/@types/ui2/document/assets/delete-icon.d.ts +4 -0
  166. package/@types/ui2/document/assets/file-add-icon.d.ts +4 -0
  167. package/@types/ui2/document/assets/image-error-icon.d.ts +5 -0
  168. package/@types/ui2/document/assets/image-retake.d.ts +4 -0
  169. package/@types/ui2/document/assets/loading-spinner-icon.d.ts +2 -0
  170. package/@types/ui2/document/assets/shutter-button-auto-icon.d.ts +4 -0
  171. package/@types/ui2/document/assets/shutter-button-manual-icon.d.ts +5 -0
  172. package/@types/ui2/document/assets/shutter-button-spinner-icon.d.ts +4 -0
  173. package/@types/ui2/document/assets/the-hand.d.ts +10 -0
  174. package/@types/ui2/document/controller/acknowledgment-screen-controller.d.ts +16 -0
  175. package/@types/ui2/document/controller/camera-screen-controller.d.ts +20 -0
  176. package/@types/ui2/document/controller/cropping-screen-controller.d.ts +14 -0
  177. package/@types/ui2/document/controller/document-scanner-controller.d.ts +14 -0
  178. package/@types/ui2/document/controller/review-screen-controller.d.ts +18 -0
  179. package/@types/ui2/document/controller/zoom-screen-controller.d.ts +11 -0
  180. package/@types/ui2/document/model/document-detection-ui-result.d.ts +8 -0
  181. package/@types/ui2/document/model/sb-document.d.ts +62 -0
  182. package/@types/ui2/document/model/sb-page.d.ts +38 -0
  183. package/@types/ui2/document/model/utils/sb-document-data.d.ts +10 -0
  184. package/@types/ui2/document/model/utils/sb-page-data.d.ts +7 -0
  185. package/@types/ui2/document/utils/SBThemeProvider.d.ts +4 -0
  186. package/@types/ui2/document/utils/button-accessibility-styling.d.ts +40 -0
  187. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-confirmation.d.ts +19 -0
  188. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-fade.d.ts +9 -0
  189. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-image.d.ts +6 -0
  190. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-screen-bottom-bar.d.ts +12 -0
  191. package/@types/ui2/document/views/acknowledgement-screen/quality-insufficient-banner.d.ts +10 -0
  192. package/@types/ui2/document/views/camera-screen/bottom-bar.d.ts +33 -0
  193. package/@types/ui2/document/views/camera-screen/camera-permission-denied.d.ts +9 -0
  194. package/@types/ui2/document/views/camera-screen/camera-select-dropdown.d.ts +14 -0
  195. package/@types/ui2/document/views/camera-screen/introduction/assets/CheckIcon.d.ts +3 -0
  196. package/@types/ui2/document/views/camera-screen/introduction/assets/CreditCardsIcon.d.ts +3 -0
  197. package/@types/ui2/document/views/camera-screen/introduction/assets/DocumentsIcon.d.ts +3 -0
  198. package/@types/ui2/document/views/camera-screen/introduction/assets/IdCardsIcon.d.ts +3 -0
  199. package/@types/ui2/document/views/camera-screen/introduction/assets/MedicalCertsIcon.d.ts +3 -0
  200. package/@types/ui2/document/views/camera-screen/introduction/assets/Props.d.ts +3 -0
  201. package/@types/ui2/document/views/camera-screen/introduction/assets/ReceiptsIcon.d.ts +3 -0
  202. package/@types/ui2/document/views/camera-screen/introduction/introduction-image.d.ts +5 -0
  203. package/@types/ui2/document/views/camera-screen/introduction/introduction.d.ts +9 -0
  204. package/@types/ui2/document/views/camera-screen/preview-button.d.ts +11 -0
  205. package/@types/ui2/document/views/camera-screen/scanner-box.d.ts +21 -0
  206. package/@types/ui2/document/views/camera-screen/shutter-button.d.ts +10 -0
  207. package/@types/ui2/document/views/camera-screen/top-bar.d.ts +11 -0
  208. package/@types/ui2/document/views/camera-screen/top-user-guidance.d.ts +8 -0
  209. package/@types/ui2/document/views/camera-screen/use-document-scanner-view.d.ts +31 -0
  210. package/@types/ui2/document/views/camera-screen/user-guidance-text.d.ts +10 -0
  211. package/@types/ui2/document/views/common/alert-dialog.d.ts +11 -0
  212. package/@types/ui2/document/views/common/bar-button.d.ts +17 -0
  213. package/@types/ui2/document/views/common/common-top-bar.d.ts +12 -0
  214. package/@types/ui2/document/views/common/loading-spinner.d.ts +4 -0
  215. package/@types/ui2/document/views/common/styled-menu-item.d.ts +12 -0
  216. package/@types/ui2/document/views/common/styled-menu.d.ts +17 -0
  217. package/@types/ui2/document/views/review-screen/bottom-bar.d.ts +15 -0
  218. package/@types/ui2/document/views/review-screen/carousel-page.d.ts +13 -0
  219. package/@types/ui2/document/views/review-screen/carousel.d.ts +14 -0
  220. package/@types/ui2/document/views/review-screen/page-counter-and-zoom-button.d.ts +10 -0
  221. package/@types/ui2/document/views/review-screen/scroller-navigation-button.d.ts +11 -0
  222. package/@types/ui2/document/views/review-screen/top-bar.d.ts +11 -0
  223. package/@types/ui2/scanbot-sdk-ui.d.ts +4 -0
  224. package/@types/ui2/scanbot-ui-library.d.ts +7 -4
  225. package/@types/ui2/utils/text-styling.d.ts +8 -0
  226. package/@types/ui2/utils/use-time-since-first-render-has-passed.d.ts +1 -0
  227. package/@types/utils/constants.d.ts +0 -2
  228. package/@types/utils/dto/Frame.d.ts +2 -0
  229. package/@types/utils/image-utils.d.ts +2 -1
  230. package/@types/utils/parse-color.d.ts +9 -0
  231. package/@types/utils/react/useIsMounted.d.ts +2 -0
  232. package/@types/utils/react/usePromise.d.ts +4 -3
  233. package/@types/utils/supported-image-mime-types.d.ts +2 -0
  234. package/@types/utils/view-utils.d.ts +1 -1
  235. package/@types/view/barcode-polygon/animated-barcode-selection-overlay.d.ts +8 -2
  236. package/@types/view/polygon/document-polygon.d.ts +1 -0
  237. package/@types/worker/worker-bridge.d.ts +522 -384
  238. package/Libraries.txt +1510 -36
  239. package/bundle/ScanbotSDK.min.js +5 -5
  240. package/bundle/ScanbotSDK.ui2.min.js +18 -18
  241. package/bundle/ScanbotSDK.ui2.min.js.LICENSE.txt +10 -0
  242. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  243. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  244. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  245. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
  246. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  247. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd.js +1 -1
  248. package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
  249. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.js +1 -1
  250. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  251. package/bundle/bin/complete/ScanbotSDK.Asm-simd.wasm +0 -0
  252. package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
  253. package/bundle/bin/complete/ScanbotSDK.Core-simd-threads.js +1 -1
  254. package/bundle/bin/complete/ScanbotSDK.Core-simd.js +1 -1
  255. package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
  256. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  257. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  258. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  259. package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
  260. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  261. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd.js +1 -1
  262. package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
  263. package/package.json +3 -3
  264. package/@types/core/bridge/compiled/CheckRecognizerTypes.d.ts +0 -29
  265. package/@types/core/bridge/compiled/FrameUtilities.d.ts +0 -18
  266. package/@types/core/bridge/compiled/GDRTypes.d.ts +0 -38
  267. package/@types/core/bridge/compiled/GenericDocumentRecognizerConfigs.d.ts +0 -150
  268. package/@types/core/bridge/compiled/GenericDocumentRecognizerTypes.d.ts +0 -83
  269. package/@types/core/bridge/compiled/GenericDocumentTypes.d.ts +0 -15
  270. package/@types/core/bridge/compiled/MRZTypes.d.ts +0 -52
  271. package/@types/generic-document-recognizer-view.d.ts +0 -22
  272. package/@types/interfaces/i-generic-document-recognizer-scanner-handle.d.ts +0 -3
  273. package/@types/model/configuration/generic-document-recognizer-configuration.d.ts +0 -9
  274. package/@types/model/configuration/text-data-scanner-configuration.d.ts +0 -9
  275. package/@types/service/generic-document-recognizer.d.ts +0 -13
  276. package/@types/service/text-data-recognizer.d.ts +0 -14
  277. package/@types/ui2/configuration/BarcodeScannerTypes.d.ts +0 -1
  278. package/@types/ui2/configuration/BarcodeTypes.d.ts +0 -1
  279. package/@types/ui2/configuration/CommonFieldType.d.ts +0 -1
  280. package/@types/ui2/configuration/GenericDocument.d.ts +0 -1
  281. package/@types/ui2/utils/styled-button.d.ts +0 -7
  282. /package/@types/core/bridge/compiled/{OcrElements.d.ts → OcrTypes.d.ts} +0 -0
  283. /package/@types/ui2/{utils → barcode/utils}/find-and-pick.ts/expected-barcode-counter.d.ts +0 -0
  284. /package/@types/ui2/{utils → barcode/utils}/styled-input.d.ts +0 -0
  285. /package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-drawer-header.d.ts +0 -0
  286. /package/@types/ui2/configuration/{BarcodeItemMapper.d.ts → barcode/BarcodeItemMapper.d.ts} +0 -0
  287. /package/@types/ui2/configuration/{BarcodeUseCase.d.ts → barcode/BarcodeUseCase.d.ts} +0 -0
@@ -0,0 +1,372 @@
1
+ import { BarButtonConfiguration } from "../common/Common";
2
+ import { ButtonConfiguration } from "../common/Common";
3
+ import { DeepPartial, PartiallyConstructible } from "../utils";
4
+ import { IconButton } from "../common/Common";
5
+ import { PopupMenuItem } from "../common/Common";
6
+ import { RoundButton } from "../common/Common";
7
+ import { ScanbotAlertDialog } from "../common/ScanbotAlertDialog";
8
+ import { StyledText } from "../common/Common";
9
+ import { UserGuidanceConfiguration } from "../common/UserGuidanceConfiguration";
10
+ /**
11
+ Configuration of the bottom bar for the review screen.
12
+ */
13
+ export declare class ReviewBottomBarConfiguration extends PartiallyConstructible {
14
+ /**
15
+ Configuration of the 'add' button, located in the bottom bar.
16
+ @defaultValue new BarButtonConfiguration({
17
+ "title": new StyledText({
18
+ "text": "?reviewScreenAddButtonTitle",
19
+ "color": "?sbColorOnPrimary"
20
+ }),
21
+ "accessibilityDescription": "?accessibilityDescriptionReviewAddButton",
22
+ "background": new BackgroundStyle({
23
+ "strokeColor": "#00000000",
24
+ "fillColor": "#00000000",
25
+ "strokeWidth": 0.0
26
+ }),
27
+ "icon": new IconStyle({
28
+ "color": "?sbColorOnPrimary"
29
+ })
30
+ });
31
+ */
32
+ addButton: BarButtonConfiguration;
33
+ /**
34
+ Configuration of the 'retake' button, located in the bottom bar.
35
+ @defaultValue new BarButtonConfiguration({
36
+ "title": new StyledText({
37
+ "text": "?reviewScreenRetakeButtonTitle",
38
+ "color": "?sbColorOnPrimary"
39
+ }),
40
+ "accessibilityDescription": "?accessibilityDescriptionReviewRetakeButton",
41
+ "background": new BackgroundStyle({
42
+ "strokeColor": "#00000000",
43
+ "fillColor": "#00000000",
44
+ "strokeWidth": 0.0
45
+ }),
46
+ "icon": new IconStyle({
47
+ "color": "?sbColorOnPrimary"
48
+ })
49
+ });
50
+ */
51
+ retakeButton: BarButtonConfiguration;
52
+ /**
53
+ Configuration of the 'crop' button, located in the bottom bar.
54
+ @defaultValue new BarButtonConfiguration({
55
+ "title": new StyledText({
56
+ "text": "?reviewScreenCropButtonTitle",
57
+ "color": "?sbColorOnPrimary"
58
+ }),
59
+ "accessibilityDescription": "?accessibilityDescriptionReviewCropButton",
60
+ "background": new BackgroundStyle({
61
+ "strokeColor": "#00000000",
62
+ "fillColor": "#00000000",
63
+ "strokeWidth": 0.0
64
+ }),
65
+ "icon": new IconStyle({
66
+ "color": "?sbColorOnPrimary"
67
+ })
68
+ });
69
+ */
70
+ cropButton: BarButtonConfiguration;
71
+ /**
72
+ Configuration of the 'rotate' button, located in the bottom bar.
73
+ @defaultValue new BarButtonConfiguration({
74
+ "title": new StyledText({
75
+ "text": "?reviewScreenRotateButtonTitle",
76
+ "color": "?sbColorOnPrimary"
77
+ }),
78
+ "accessibilityDescription": "?accessibilityDescriptionReviewRotateButton",
79
+ "background": new BackgroundStyle({
80
+ "strokeColor": "#00000000",
81
+ "fillColor": "#00000000",
82
+ "strokeWidth": 0.0
83
+ }),
84
+ "icon": new IconStyle({
85
+ "color": "?sbColorOnPrimary"
86
+ })
87
+ });
88
+ */
89
+ rotateButton: BarButtonConfiguration;
90
+ /**
91
+ Configuration of the 'delete' button, located in the bottom bar.
92
+ @defaultValue new BarButtonConfiguration({
93
+ "title": new StyledText({
94
+ "text": "?reviewScreenDeleteButtonTitle",
95
+ "color": "?sbColorOnPrimary"
96
+ }),
97
+ "accessibilityDescription": "?accessibilityDescriptionReviewDeleteButton",
98
+ "background": new BackgroundStyle({
99
+ "strokeColor": "#00000000",
100
+ "fillColor": "#00000000",
101
+ "strokeWidth": 0.0
102
+ }),
103
+ "icon": new IconStyle({
104
+ "color": "?sbColorOnPrimary"
105
+ })
106
+ });
107
+ */
108
+ deleteButton: BarButtonConfiguration;
109
+ /**
110
+ Configuration of the 'submit' button, located in the bottom bar.
111
+ @defaultValue new ButtonConfiguration({
112
+ "text": "?reviewScreenSubmitButtonTitle",
113
+ "accessibilityDescription": "?accessibilityDescriptionReviewSubmitButton",
114
+ "background": new BackgroundStyle({
115
+ "strokeColor": "?sbColorSurface",
116
+ "fillColor": "?sbColorSurface",
117
+ "strokeWidth": 0.0
118
+ }),
119
+ "foreground": new ForegroundStyle({
120
+ "color": "?sbColorOnSurface"
121
+ })
122
+ });
123
+ */
124
+ submitButton: ButtonConfiguration;
125
+ /** @param source {@displayType `DeepPartial<ReviewBottomBarConfiguration>`} */
126
+ constructor(source?: DeepPartial<ReviewBottomBarConfiguration>);
127
+ }
128
+ /**
129
+ Configuration of the 'more' popup menu for the review screen.
130
+ */
131
+ export declare class ReviewMorePopupMenu extends PartiallyConstructible {
132
+ /**
133
+ The background color of the popup menu.
134
+ @defaultValue "?sbColorSurface";
135
+ */
136
+ backgroundColor: string;
137
+ /**
138
+ Configuration of the 'delete all' button.
139
+ @defaultValue new PopupMenuItem({
140
+ "title": new StyledText({
141
+ "text": "?reviewScreenDeleteAllButtonTitle",
142
+ "color": "?sbColorNegative"
143
+ }),
144
+ "accessibilityDescription": "?accessibilityDescriptionReviewDeleteAllButton",
145
+ "icon": new IconStyle({
146
+ "color": "?sbColorNegative"
147
+ })
148
+ });
149
+ */
150
+ deleteAll: PopupMenuItem;
151
+ /** @param source {@displayType `DeepPartial<ReviewMorePopupMenu>`} */
152
+ constructor(source?: DeepPartial<ReviewMorePopupMenu>);
153
+ }
154
+ /**
155
+ Configuration of the zoom overlay for the review screen.
156
+ */
157
+ export declare class ZoomOverlay extends PartiallyConstructible {
158
+ /**
159
+ The background color of the zoom overlay.
160
+ @defaultValue "?sbColorModalOverlay";
161
+ */
162
+ overlayColor: string;
163
+ /**
164
+ Configuration of the 'close' button for the zoom overlay.
165
+ @defaultValue new ButtonConfiguration({
166
+ "text": "?zoomOverlayCancelButtonText",
167
+ "accessibilityDescription": "?accessibilityDescriptionZoomOverlayCancelButton",
168
+ "background": new BackgroundStyle({
169
+ "fillColor": "#00000000",
170
+ "strokeWidth": 0.0
171
+ }),
172
+ "foreground": new ForegroundStyle({
173
+ "color": "?sbColorOnPrimary"
174
+ })
175
+ });
176
+ */
177
+ closeButton: ButtonConfiguration;
178
+ /** @param source {@displayType `DeepPartial<ZoomOverlay>`} */
179
+ constructor(source?: DeepPartial<ZoomOverlay>);
180
+ }
181
+ /**
182
+ Configuration of the screen for reviewing the scanned pages.
183
+ */
184
+ export declare class ReviewScreenConfiguration extends PartiallyConstructible {
185
+ /**
186
+ Determines whether the review screen should be shown or not. If 'false', the review screen will be skipped and the scanned document will be returned immediately.
187
+ @defaultValue true;
188
+ */
189
+ enabled: boolean;
190
+ /**
191
+ Configuration of the title, located in the top bar.
192
+ @defaultValue new StyledText({
193
+ "text": "?reviewScreenTitle",
194
+ "color": "?sbColorOnPrimary"
195
+ });
196
+ */
197
+ topBarTitle: StyledText;
198
+ /**
199
+ Configuration of the 'more' button, located in the top bar.
200
+ @defaultValue new IconButton({
201
+ "color": "?sbColorOnPrimary",
202
+ "accessibilityDescription": "?accessibilityDescriptionReviewMoreButton"
203
+ });
204
+ */
205
+ topBarMoreButton: IconButton;
206
+ /**
207
+ Configuration of the 'back' button, located in the top bar.
208
+ @defaultValue new ButtonConfiguration({
209
+ "visible": true,
210
+ "text": "?reviewTopBarBackButtonTitle",
211
+ "accessibilityDescription": "?accessibilityDescriptionReviewTopBarBackButton",
212
+ "background": new BackgroundStyle({
213
+ "strokeColor": "#00000000",
214
+ "fillColor": "#00000000",
215
+ "strokeWidth": 0.0
216
+ }),
217
+ "foreground": new ForegroundStyle({
218
+ "iconVisible": true,
219
+ "color": "?sbColorOnPrimary",
220
+ "useShadow": false
221
+ })
222
+ });
223
+ */
224
+ topBarBackButton: ButtonConfiguration;
225
+ /**
226
+ Configuration of the 'more' popup menu for the review screen.
227
+ @defaultValue new ReviewMorePopupMenu({});
228
+ */
229
+ morePopup: ReviewMorePopupMenu;
230
+ /**
231
+ Configuration of the 'zoom' button.
232
+ @defaultValue new RoundButton({
233
+ "accessibilityDescription": "?accessibilityDescriptionReviewZoomButton",
234
+ "backgroundColor": "?sbColorSurfaceHigh",
235
+ "foregroundColor": "?sbColorOnPrimary"
236
+ });
237
+ */
238
+ zoomButton: RoundButton;
239
+ /**
240
+ Configuration of the zoom overlay for the review screen.
241
+ @defaultValue new ZoomOverlay({});
242
+ */
243
+ zoomOverlay: ZoomOverlay;
244
+ /**
245
+ The background color of the review screen.
246
+ @defaultValue "?sbColorOnSurfaceVariant";
247
+ */
248
+ backgroundColor: string;
249
+ /**
250
+ Configuration of the bottom bar for the review screen.
251
+ @defaultValue new ReviewBottomBarConfiguration({});
252
+ */
253
+ bottomBar: ReviewBottomBarConfiguration;
254
+ /**
255
+ Configuration of the 'next page' button.
256
+ @defaultValue new IconButton({
257
+ "color": "?sbColorOnPrimary",
258
+ "accessibilityDescription": "?accessibilityDescriptionReviewNextPageButton"
259
+ });
260
+ */
261
+ switchNextPageButton: IconButton;
262
+ /**
263
+ Configuration of the 'previous page' button.
264
+ @defaultValue new IconButton({
265
+ "color": "?sbColorOnPrimary",
266
+ "accessibilityDescription": "?accessibilityDescriptionReviewPreviousPageButton"
267
+ });
268
+ */
269
+ switchPreviousPageButton: IconButton;
270
+ /**
271
+ Configuration of the page count label.
272
+ @defaultValue new UserGuidanceConfiguration({
273
+ "title": new StyledText({
274
+ "text": "?reviewScreenPageCount",
275
+ "color": "?sbColorOnPrimary"
276
+ }),
277
+ "background": new BackgroundStyle({
278
+ "fillColor": "?sbColorSurfaceHigh",
279
+ "strokeWidth": 0.0
280
+ })
281
+ });
282
+ */
283
+ pageCounter: UserGuidanceConfiguration;
284
+ /**
285
+ Configuration of the alert dialog displayed when trying to delete all the pages.
286
+ @defaultValue new ScanbotAlertDialog({
287
+ "title": new StyledText({
288
+ "text": "?reviewDeleteAllPagesAlertTitle",
289
+ "color": "?sbColorOnSurface"
290
+ }),
291
+ "subtitle": new StyledText({
292
+ "text": "?reviewDeleteAllPagesAlertSubtitle",
293
+ "color": "?sbColorOnSurfaceVariant"
294
+ }),
295
+ "okButton": new ButtonConfiguration({
296
+ "text": "?reviewDeleteAllPagesAlertDeleteButtonTitle",
297
+ "accessibilityDescription": "?accessibilityDescriptionReviewDeleteAllPagesAlertDeleteButton",
298
+ "background": new BackgroundStyle({
299
+ "fillColor": "?sbColorPrimary",
300
+ "strokeWidth": 0.0
301
+ }),
302
+ "foreground": new ForegroundStyle({
303
+ "color": "?sbColorOnPrimary"
304
+ })
305
+ }),
306
+ "actionButton": new ButtonConfiguration({
307
+ "visible": false
308
+ }),
309
+ "cancelButton": new ButtonConfiguration({
310
+ "text": "?reviewDeleteAllPagesAlertCancelButtonTitle",
311
+ "accessibilityDescription": "?accessibilityDescriptionReviewDeleteAllPagesAlertCancelButton",
312
+ "background": new BackgroundStyle({
313
+ "fillColor": "#00000000",
314
+ "strokeWidth": 0.0
315
+ }),
316
+ "foreground": new ForegroundStyle({
317
+ "color": "?sbColorPrimary"
318
+ })
319
+ })
320
+ });
321
+ */
322
+ deleteAllPagesAlertDialog: ScanbotAlertDialog;
323
+ /**
324
+ Configuration of the alert dialog displayed when trying to delete a single page.
325
+ @defaultValue new ScanbotAlertDialog({
326
+ "title": new StyledText({
327
+ "text": "?reviewDeletePageAlertTitle",
328
+ "color": "?sbColorOnSurface"
329
+ }),
330
+ "subtitle": new StyledText({
331
+ "text": "?reviewDeletePageAlertSubTitle",
332
+ "color": "?sbColorOnSurfaceVariant"
333
+ }),
334
+ "okButton": new ButtonConfiguration({
335
+ "text": "?reviewDeletePageAlertConfirmButtonTitle",
336
+ "accessibilityDescription": "?accessibilityDescriptionReviewDeletePageAlertConfirmButton",
337
+ "background": new BackgroundStyle({
338
+ "fillColor": "?sbColorPrimary",
339
+ "strokeWidth": 0.0
340
+ }),
341
+ "foreground": new ForegroundStyle({
342
+ "color": "?sbColorOnPrimary"
343
+ })
344
+ }),
345
+ "actionButton": new ButtonConfiguration({
346
+ "text": "?reviewDeletePageAlertDeleteRetakeButtonTitle",
347
+ "accessibilityDescription": "?accessibilityDescriptionReviewDeletePageAlertDeleteRetakeButton",
348
+ "background": new BackgroundStyle({
349
+ "fillColor": "#00000000",
350
+ "strokeWidth": 0.0
351
+ }),
352
+ "foreground": new ForegroundStyle({
353
+ "color": "?sbColorPrimary"
354
+ })
355
+ }),
356
+ "cancelButton": new ButtonConfiguration({
357
+ "text": "?reviewDeletePageAlertCancelButtonTitle",
358
+ "accessibilityDescription": "?accessibilityDescriptionReviewDeletePageAlertCancelButton",
359
+ "background": new BackgroundStyle({
360
+ "fillColor": "#00000000",
361
+ "strokeWidth": 0.0
362
+ }),
363
+ "foreground": new ForegroundStyle({
364
+ "color": "?sbColorPrimary"
365
+ })
366
+ })
367
+ });
368
+ */
369
+ deletePageAlertDialog: ScanbotAlertDialog;
370
+ /** @param source {@displayType `DeepPartial<ReviewScreenConfiguration>`} */
371
+ constructor(source?: DeepPartial<ReviewScreenConfiguration>);
372
+ }
@@ -0,0 +1,37 @@
1
+ import { DeepPartial, PartiallyConstructible } from "../utils";
2
+ import { PageData } from "../native/PageData";
3
+ /**
4
+ Document Data.
5
+ */
6
+ export declare class DocumentData extends PartiallyConstructible {
7
+ /**
8
+ The creation timestamp of the document
9
+ */
10
+ readonly creationTimestamp: number;
11
+ /**
12
+ The list of pages
13
+ */
14
+ readonly pages: PageData[];
15
+ /**
16
+ The maximum size of the document image.
17
+ @defaultValue 0;
18
+ */
19
+ readonly documentImageSizeLimit: number;
20
+ /**
21
+ The unique identifier of the document.
22
+ @defaultValue null;
23
+ */
24
+ readonly id: number | null;
25
+ /**
26
+ The unique identifier of the PDF rendering.
27
+ @defaultValue null;
28
+ */
29
+ readonly pdfId: number | null;
30
+ /**
31
+ The unique identifier of the TIFF rendering.
32
+ @defaultValue null;
33
+ */
34
+ readonly tiffId: number | null;
35
+ /** @param source {@displayType `DeepPartial<DocumentData>`} */
36
+ constructor(source?: DeepPartial<DocumentData>);
37
+ }
@@ -0,0 +1,58 @@
1
+ import { DeepPartial, PartiallyConstructible } from "../utils";
2
+ import { DocumentDetectionStatus } from "../DocumentScannerTypes";
3
+ import { DocumentQuality } from "../DocumentQualityAnalyzerTypes";
4
+ import { PageImageSource } from "../native/PageImageSource";
5
+ import { ParametricFilter } from "../ParametricFilters";
6
+ import { Point } from "../../common";
7
+ /**
8
+ The result of the health insurance card recognition.
9
+ */
10
+ export declare class PageData extends PartiallyConstructible {
11
+ /**
12
+ The list of filters applied to the page.
13
+ @defaultValue null;
14
+ */
15
+ readonly filters: ParametricFilter[] | null;
16
+ /**
17
+ The polygon of the page.
18
+ @defaultValue [];
19
+ */
20
+ readonly polygon: Point[];
21
+ /**
22
+ The detection status of the page.
23
+ @defaultValue null;
24
+ */
25
+ readonly documentDetectionStatus: DocumentDetectionStatus | null;
26
+ /**
27
+ The quality score of the page.
28
+ @defaultValue null;
29
+ */
30
+ readonly documentQuality: DocumentQuality | null;
31
+ /**
32
+ The source of the page image.
33
+ @defaultValue null;
34
+ */
35
+ readonly source: PageImageSource | null;
36
+ /**
37
+ The unique identifier of the document.
38
+ @defaultValue null;
39
+ */
40
+ readonly id: number | null;
41
+ /**
42
+ The database identifier of the original image.
43
+ @defaultValue null;
44
+ */
45
+ readonly originalImageId: number | null;
46
+ /**
47
+ The unique identifier of the document image.
48
+ @defaultValue null;
49
+ */
50
+ readonly documentImageId: number | null;
51
+ /**
52
+ The unique identifier of the unfiltered document image.
53
+ @defaultValue null;
54
+ */
55
+ readonly unfilteredDocumentImageId: number | null;
56
+ /** @param source {@displayType `DeepPartial<PageData>`} */
57
+ constructor(source?: DeepPartial<PageData>);
58
+ }
@@ -0,0 +1,13 @@
1
+ /**
2
+ The source of an image.
3
+
4
+ - `UNDEFINED`:
5
+ The source of the image is not known.
6
+ - `MANUAL_SNAP`:
7
+ The image was captured manually.
8
+ - `AUTO_SNAP`:
9
+ The image was captured automatically.
10
+ - `IMPORTED`:
11
+ The image originates from the photo/media gallery.
12
+ */
13
+ export type PageImageSource = "UNDEFINED" | "MANUAL_SNAP" | "AUTO_SNAP" | "IMPORTED";
@@ -0,0 +1,8 @@
1
+ export type { Point, RawImage } from "../../core-types";
2
+ import { Point, Rectangle, Image } from "../../core-types";
3
+ type TypesThatAreOpaqueToDeepPartial = Function | Image | Point | Rectangle;
4
+ export type DeepPartial<T> = T extends TypesThatAreOpaqueToDeepPartial ? T : T extends Array<infer I> ? DeepPartial<I>[] : T extends object ? {
5
+ [P in keyof T]?: DeepPartial<T[P]>;
6
+ } : T;
7
+ export declare abstract class PartiallyConstructible {
8
+ }
@@ -1,21 +1,46 @@
1
- export * from "./configuration/SingleScanningModeUseCase";
2
- export * from "./configuration/CameraConfiguration";
3
- export * from "./configuration/TopBarConfiguration";
4
- export * from "./configuration/ActionBarConfiguration";
5
- export * from "./configuration/BarcodeUseCase";
6
- export * from "./configuration/Common";
7
- export * from "./configuration/ViewFinderConfiguration";
8
- export * from "./configuration/UserGuidanceConfiguration";
9
- export * from "./configuration/BarcodeInfoMapping";
10
- export * from "./configuration/FindAndPickScanningModeUseCase";
11
- export * from "./configuration/BarcodeTextLocalization";
12
- export * from "./configuration/BarcodeRecognizerConfiguration";
13
- export * from "./configuration/ArTrackingOverlayConfiguration";
14
- export * from "./configuration/BarcodeScannerConfiguration";
15
- export * from "./configuration/BarcodeScannerUIResult";
16
- export * from "./configuration/GenericDocument";
17
- export * from "./configuration/MultipleScanningModeUseCase";
18
- export * from "./configuration/ScanbotAlertDialog";
19
- export * from "./configuration/CameraPermission";
20
- export * from "./configuration/BarcodeItemMapper";
21
- export * from "./configuration/BarcodeScannerTypes";
1
+ export * from "./configuration/barcode/SingleScanningModeUseCase";
2
+ export * from "./configuration/barcode/CameraConfiguration";
3
+ export * from "./configuration/barcode/TopBarConfiguration";
4
+ export * from "./configuration/barcode/ActionBarConfiguration";
5
+ export * from "./configuration/barcode/BarcodeUseCase";
6
+ export * from "./configuration/barcode/Common";
7
+ export * from "./configuration/barcode/ViewFinderConfiguration";
8
+ export * from "./configuration/barcode/UserGuidanceConfiguration";
9
+ export * from "./configuration/barcode/BarcodeInfoMapping";
10
+ export * from "./configuration/barcode/FindAndPickScanningModeUseCase";
11
+ export * from "./configuration/barcode/BarcodeTextLocalization";
12
+ export * from "./configuration/barcode/BarcodeRecognizerConfiguration";
13
+ export * from "./configuration/barcode/ArTrackingOverlayConfiguration";
14
+ export * from "./configuration/barcode/BarcodeScannerConfiguration";
15
+ export * from "./configuration/barcode/BarcodeScannerUIResult";
16
+ export * from "./configuration/barcode/GenericDocument";
17
+ export * from "./configuration/barcode/MultipleScanningModeUseCase";
18
+ export * from "./configuration/barcode/ScanbotAlertDialog";
19
+ export * from "./configuration/barcode/CameraPermission";
20
+ export * from "./configuration/barcode/BarcodeItemMapper";
21
+ export * from "./configuration/barcode/BarcodeScannerTypes";
22
+ export * from "./configuration/document/AcknowledgementScreenConfiguration";
23
+ export * from "./configuration/document/CameraScreenConfiguration";
24
+ export * from "./configuration/document/CroppingConfiguration";
25
+ export * from "./configuration/document/CroppingResult";
26
+ export * from "./configuration/document/CroppingScreenConfiguration";
27
+ export * from "./configuration/document/CroppingTextLocalization";
28
+ export * from "./configuration/document/DocumentScannerCameraConfiguration";
29
+ export * from "./configuration/document/DocumentScannerGuidanceVisibility";
30
+ export * from "./configuration/document/DocumentScannerOutputSettings";
31
+ export * from "./configuration/document/DocumentScannerScreens";
32
+ export * from "./configuration/document/DocumentScannerTextLocalization";
33
+ export * from "./configuration/document/DocumentScannerUserGuidance";
34
+ export * from "./configuration/document/DocumentScanningFlow";
35
+ export * from "./configuration/document/IntroductionScreenConfiguration";
36
+ export * from "./configuration/document/ReorderPagesScreenConfiguration";
37
+ export * from "./configuration/document/ReviewScreenConfiguration";
38
+ export * as CommonActionBarConfiguration from "./configuration/common/ActionBarConfiguration";
39
+ export * as CommonCameraConfiguration from "./configuration/common/CameraConfiguration";
40
+ export * as CommonCameraPermission from "./configuration/common/CameraPermission";
41
+ export * as CommonCommon from "./configuration/common/Common";
42
+ export * as CommonNavigationBarConfiguration from "./configuration/common/NavigationBarConfiguration";
43
+ export * as CommonScanbotAlertDialog from "./configuration/common/ScanbotAlertDialog";
44
+ export * as CommonTopBarConfiguration from "./configuration/common/TopBarConfiguration";
45
+ export * as CommonUserGuidanceConfiguration from "./configuration/common/UserGuidanceConfiguration";
46
+ export * as CommonViewFinderConfiguration from "./configuration/common/ViewFinderConfiguration";
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare function AutoCaptureDisabledIcon(props: {
3
+ color: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare function AutoCaptureIcon(props: {
3
+ color: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import { PageSnapCheckMarkAnimation } from "../../configuration/document/CameraScreenConfiguration";
3
+ export declare function CapturedCircleIcon(props: {
4
+ config?: PageSnapCheckMarkAnimation;
5
+ }): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare function DeleteIcon(props: {
3
+ color: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare function FileAddIcon(props: {
3
+ color: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ import { IconStyle } from "../../configuration/common/Common";
3
+ export declare function ImageErrorIcon(props: {
4
+ config: IconStyle;
5
+ }): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare function ImageRetakeIcon(props: {
3
+ color: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare function LoadingSpinnerIcon(): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare function ShutterButtonAutoIcon(props: {
3
+ color: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,5 @@
1
+ import React from "react";
2
+ export declare function ShutterButtonManualIcon(props: {
3
+ innerColor: string;
4
+ outerColor: string;
5
+ }): React.JSX.Element;
@@ -0,0 +1,4 @@
1
+ import React from "react";
2
+ export declare function ShutterButtonSpinnerIcon(props: {
3
+ color: string;
4
+ }): React.JSX.Element;
@@ -0,0 +1,10 @@
1
+ import React from "react";
2
+ declare class Props {
3
+ color: string;
4
+ maxWidth: string;
5
+ maxHeight: string;
6
+ paddingTop: number;
7
+ paddingBottom: number;
8
+ }
9
+ export declare function TheHand(props: Props): React.JSX.Element;
10
+ export {};
@@ -0,0 +1,16 @@
1
+ import React from "react";
2
+ import { DocumentScanningFlow } from "../../configuration/document/DocumentScanningFlow";
3
+ import ScanbotSDK from "../../../scanbot-sdk";
4
+ import { DocumentQuality } from "../../../core/bridge/compiled/DocumentQualityAnalyzerTypes";
5
+ import { DocumentDetectionUIResult, RtuDocumentDetectionResultPromise } from "../model/document-detection-ui-result";
6
+ declare class Props {
7
+ croppedDetectionResult: RtuDocumentDetectionResultPromise;
8
+ visible: boolean;
9
+ configuration: DocumentScanningFlow;
10
+ sdk: ScanbotSDK;
11
+ onAccept: (detectionResult: DocumentDetectionUIResult, quality: DocumentQuality | null) => void;
12
+ onReject: () => void;
13
+ onError: (error: Error) => void;
14
+ }
15
+ export declare function AcknowledgmentScreenController(props: Props): React.JSX.Element;
16
+ export {};