scanbot-web-sdk 6.0.0-dev.5 → 7.0.0-dev.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.
Files changed (281) 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/BarcodeDocumentTypes.d.ts +14 -13
  4. package/@types/core/bridge/compiled/BarcodeScannerTypes.d.ts +25 -14
  5. package/@types/core/bridge/compiled/BarcodeTypes.d.ts +58 -56
  6. package/@types/core/bridge/compiled/CheckScannerTypes.d.ts +67 -0
  7. package/@types/core/bridge/compiled/CommonFieldType.d.ts +29 -28
  8. package/@types/core/bridge/compiled/CreditCardTypes.d.ts +35 -33
  9. package/@types/core/bridge/compiled/DocumentDataExtractorConfigurationTypes.d.ts +148 -0
  10. package/@types/core/bridge/compiled/DocumentDataExtractorTypes.d.ts +90 -0
  11. package/@types/core/bridge/compiled/DocumentQualityAnalyzerTypes.d.ts +28 -23
  12. package/@types/core/bridge/compiled/{DocumentDetectorTypes.d.ts → DocumentScannerTypes.d.ts} +49 -47
  13. package/@types/core/bridge/compiled/{EhicTypes.d.ts → EuropeanHealthInsuranceCardTypes.d.ts} +51 -108
  14. package/@types/core/bridge/compiled/FrameAccumulationTypes.d.ts +37 -14
  15. package/@types/core/bridge/compiled/GenericDocument.d.ts +17 -17
  16. package/@types/core/bridge/compiled/Geometry.d.ts +2 -2
  17. package/@types/core/bridge/compiled/ImageTypes.d.ts +1 -0
  18. package/@types/core/bridge/compiled/LicensePlateScannerTypes.d.ts +20 -19
  19. package/@types/core/bridge/compiled/MedicalCertificateTypes.d.ts +108 -105
  20. package/@types/core/bridge/compiled/MrzTypes.d.ts +73 -0
  21. package/@types/core/bridge/compiled/ParametricFilters.d.ts +4 -3
  22. package/@types/core/bridge/compiled/{PdfConfig.d.ts → PdfConfigurationTypes.d.ts} +48 -45
  23. package/@types/core/bridge/compiled/{GenericTextLineScannerTypes.d.ts → TextPatternScannerTypes.d.ts} +23 -22
  24. package/@types/core/bridge/compiled/TiffTypes.d.ts +48 -50
  25. package/@types/core/bridge/worker-bridge.d.ts +488 -364
  26. package/@types/core/worker/ScanbotSDK.Core.d.ts +21 -21
  27. package/@types/core-types.d.ts +10 -12
  28. package/@types/cropping-view.d.ts +8 -4
  29. package/@types/document-data-extractor-view.d.ts +22 -0
  30. package/@types/document-scanner-view.d.ts +16 -7
  31. package/@types/index.d.ts +36 -23
  32. package/@types/interfaces/i-cropping-view-handle.d.ts +2 -0
  33. package/@types/interfaces/i-document-data-extractor-scanner-handle.d.ts +3 -0
  34. package/@types/interfaces/{i-text-data-scanner-handle.d.ts → i-text-pattern-scanner-handle.d.ts} +1 -1
  35. package/@types/model/configuration/barcode-scanner-configuration.d.ts +1 -0
  36. package/@types/model/configuration/cropping-view-configuration.d.ts +1 -0
  37. package/@types/model/configuration/document-data-extractor-configuration.d.ts +9 -0
  38. package/@types/model/configuration/document-scanner-configuration.d.ts +8 -4
  39. package/@types/model/configuration/initialization-options.d.ts +1 -2
  40. package/@types/model/configuration/mrz-scanner-configuration.d.ts +4 -4
  41. package/@types/model/configuration/selection-overlay-configuration.d.ts +5 -0
  42. package/@types/model/configuration/text-pattern-scanner-configuration.d.ts +9 -0
  43. package/@types/model/configuration/view-finder-scanner-configuration.d.ts +2 -1
  44. package/@types/model/configuration/vin-scanner-configuration.d.ts +3 -3
  45. package/@types/scanbot-sdk.d.ts +269 -205
  46. package/@types/scanner-view.d.ts +2 -0
  47. package/@types/service/document-data-extractor.d.ts +13 -0
  48. package/@types/service/ocr-engine.d.ts +3 -3
  49. package/@types/service/pdf-generator.d.ts +6 -1
  50. package/@types/service/simple-mrz-recognizer.d.ts +4 -4
  51. package/@types/service/storage/indexed-db/sb-indexed-db.d.ts +60 -0
  52. package/@types/service/storage/local/sb-local-storage.d.ts +11 -0
  53. package/@types/service/storage/sb-storage.d.ts +33 -0
  54. package/@types/service/storage/utils/create-worker-vite.d.ts +1 -0
  55. package/@types/service/storage/utils/create-worker.d.ts +1 -0
  56. package/@types/service/storage/utils/sb-storage-error.d.ts +5 -0
  57. package/@types/service/storage/utils/sb-storage-utils.d.ts +10 -0
  58. package/@types/service/text-pattern-scanner.d.ts +14 -0
  59. package/@types/service/tiff-generator.d.ts +7 -4
  60. package/@types/{text-data-scanner-view.d.ts → text-pattern-scanner-view.d.ts} +9 -9
  61. package/@types/ui2/{controllers → barcode/controllers}/barcode-scanner-controller.d.ts +1 -1
  62. package/@types/ui2/{controllers → barcode/controllers}/multiple-scanning-mode-controller.d.ts +1 -1
  63. package/@types/ui2/{controllers → barcode/controllers}/single-scanning-mode-controller.d.ts +1 -1
  64. package/@types/ui2/{model → barcode/model}/counted-barcodes.d.ts +2 -2
  65. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/expected-barcode-mapper.d.ts +2 -2
  66. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/i-barcode-mapper.d.ts +2 -2
  67. package/@types/ui2/{utils → barcode/utils}/barcode-mapper/user-barcode-mapper.d.ts +1 -1
  68. package/@types/ui2/{utils → barcode/utils}/camera-config.d.ts +2 -2
  69. package/@types/ui2/{utils → barcode/utils}/styled-badge.d.ts +3 -1
  70. package/@types/ui2/{utils → barcode/utils}/styled-box.d.ts +1 -1
  71. package/@types/ui2/barcode/utils/styled-button.d.ts +14 -0
  72. package/@types/ui2/{utils → barcode/utils}/useScanningViewSize.d.ts +1 -1
  73. package/@types/ui2/{views → barcode/views}/action-button/action-button-container.d.ts +3 -3
  74. package/@types/ui2/{views → barcode/views}/action-button/action-button.d.ts +1 -1
  75. package/@types/ui2/{views → barcode/views}/ar/ar-badge.d.ts +2 -2
  76. package/@types/ui2/{views → barcode/views}/ar/ar-overlay-barcode-info.d.ts +2 -2
  77. package/@types/ui2/{views → barcode/views}/ar/vertical-positions.d.ts +2 -2
  78. package/@types/ui2/{views → barcode/views}/barcode-info/barcode-info.d.ts +1 -1
  79. package/@types/ui2/{views → barcode/views}/barcode-scanner.d.ts +8 -8
  80. package/@types/ui2/{views → barcode/views}/camera-permission-denied.d.ts +1 -1
  81. package/@types/ui2/{views → barcode/views}/dialog/barcode-info-dialog.d.ts +1 -1
  82. package/@types/ui2/{views → barcode/views}/dialog/barcode-mapping-error-dialog.d.ts +1 -1
  83. package/@types/ui2/{views → barcode/views}/dialog/base/confirmation-dialog.d.ts +1 -1
  84. package/@types/ui2/{views → barcode/views}/dialog/base/styled-dialog.d.ts +1 -0
  85. package/@types/ui2/{views → barcode/views}/dialog/count-edit-dialog.d.ts +1 -1
  86. package/@types/ui2/{views → barcode/views}/dialog/find-and-pick-submit-dialog.d.ts +1 -1
  87. package/@types/ui2/{views → barcode/views}/drawer/barcode-result-drawer.d.ts +1 -1
  88. package/@types/ui2/{views → barcode/views}/drawer/barcode-result-sidebar.d.ts +1 -1
  89. package/@types/ui2/{views → barcode/views}/drawer/counting-button.d.ts +1 -1
  90. package/@types/ui2/{views → barcode/views}/drawer/hooks/use-drag-listener.d.ts +1 -1
  91. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-drawer-empty-state.d.ts +1 -1
  92. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-list-item.d.ts +1 -1
  93. package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-list.d.ts +1 -1
  94. package/@types/ui2/{views → barcode/views}/drawer/subviews/drawer-header-content.d.ts +1 -1
  95. package/@types/ui2/{views → barcode/views}/drawer/subviews/swipe-underlay.d.ts +1 -1
  96. package/@types/ui2/{views → barcode/views}/form/dialog-button.d.ts +4 -1
  97. package/@types/ui2/{views → barcode/views}/navigation-bar.d.ts +1 -1
  98. package/@types/ui2/{views → barcode/views}/styled-text.d.ts +2 -1
  99. package/@types/ui2/configuration/DocumentQualityAnalyzerTypes.d.ts +1 -0
  100. package/@types/ui2/configuration/DocumentScannerTypes.d.ts +1 -0
  101. package/@types/ui2/configuration/Geometry.d.ts +1 -1
  102. package/@types/ui2/configuration/ParametricFilters.d.ts +1 -0
  103. package/@types/ui2/configuration/{ActionBarConfiguration.d.ts → barcode/ActionBarConfiguration.d.ts} +1 -1
  104. package/@types/ui2/configuration/{ArTrackingOverlayConfiguration.d.ts → barcode/ArTrackingOverlayConfiguration.d.ts} +1 -1
  105. package/@types/ui2/configuration/{BarcodeInfoMapping.d.ts → barcode/BarcodeInfoMapping.d.ts} +1 -1
  106. package/@types/ui2/configuration/{BarcodeRecognizerConfiguration.d.ts → barcode/BarcodeRecognizerConfiguration.d.ts} +3 -3
  107. package/@types/ui2/configuration/{BarcodeScannerConfiguration.d.ts → barcode/BarcodeScannerConfiguration.d.ts} +1 -1
  108. package/@types/ui2/configuration/barcode/BarcodeScannerTypes.d.ts +2 -0
  109. package/@types/ui2/configuration/{BarcodeScannerUIResult.d.ts → barcode/BarcodeScannerUIResult.d.ts} +1 -1
  110. package/@types/ui2/configuration/{BarcodeTextLocalization.d.ts → barcode/BarcodeTextLocalization.d.ts} +1 -1
  111. package/@types/ui2/configuration/barcode/BarcodeTypes.d.ts +1 -0
  112. package/@types/ui2/configuration/{CameraConfiguration.d.ts → barcode/CameraConfiguration.d.ts} +1 -1
  113. package/@types/ui2/configuration/{CameraPermission.d.ts → barcode/CameraPermission.d.ts} +1 -1
  114. package/@types/ui2/configuration/{Common.d.ts → barcode/Common.d.ts} +1 -1
  115. package/@types/ui2/configuration/barcode/CommonFieldType.d.ts +1 -0
  116. package/@types/ui2/configuration/{FindAndPickScanningModeUseCase.d.ts → barcode/FindAndPickScanningModeUseCase.d.ts} +1 -1
  117. package/@types/ui2/configuration/barcode/GenericDocument.d.ts +1 -0
  118. package/@types/ui2/configuration/barcode/Geometry.d.ts +1 -0
  119. package/@types/ui2/configuration/{MultipleScanningModeUseCase.d.ts → barcode/MultipleScanningModeUseCase.d.ts} +1 -1
  120. package/@types/ui2/configuration/{ScanbotAlertDialog.d.ts → barcode/ScanbotAlertDialog.d.ts} +1 -1
  121. package/@types/ui2/configuration/{SingleScanningModeUseCase.d.ts → barcode/SingleScanningModeUseCase.d.ts} +1 -1
  122. package/@types/ui2/configuration/{TopBarConfiguration.d.ts → barcode/TopBarConfiguration.d.ts} +1 -1
  123. package/@types/ui2/configuration/{UserGuidanceConfiguration.d.ts → barcode/UserGuidanceConfiguration.d.ts} +1 -1
  124. package/@types/ui2/configuration/{ViewFinderConfiguration.d.ts → barcode/ViewFinderConfiguration.d.ts} +1 -1
  125. package/@types/ui2/configuration/common/ActionBarConfiguration.d.ts +42 -0
  126. package/@types/ui2/configuration/common/CameraConfiguration.d.ts +60 -0
  127. package/@types/ui2/configuration/common/CameraPermission.d.ts +62 -0
  128. package/@types/ui2/configuration/common/Common.d.ts +467 -0
  129. package/@types/ui2/configuration/common/NavigationBarConfiguration.d.ts +11 -0
  130. package/@types/ui2/configuration/common/ScanbotAlertDialog.d.ts +74 -0
  131. package/@types/ui2/configuration/common/TopBarConfiguration.d.ts +55 -0
  132. package/@types/ui2/configuration/common/UserGuidanceConfiguration.d.ts +64 -0
  133. package/@types/ui2/configuration/common/ViewFinderConfiguration.d.ts +93 -0
  134. package/@types/ui2/configuration/document/AcknowledgementScreenConfiguration.d.ts +125 -0
  135. package/@types/ui2/configuration/document/CameraScreenConfiguration.d.ts +659 -0
  136. package/@types/ui2/configuration/document/CroppingConfiguration.d.ts +1 -0
  137. package/@types/ui2/configuration/document/CroppingResult.d.ts +1 -0
  138. package/@types/ui2/configuration/document/CroppingScreenConfiguration.d.ts +141 -0
  139. package/@types/ui2/configuration/document/CroppingTextLocalization.d.ts +1 -0
  140. package/@types/ui2/configuration/document/DocumentScannerCameraConfiguration.d.ts +60 -0
  141. package/@types/ui2/configuration/document/DocumentScannerGuidanceVisibility.d.ts +11 -0
  142. package/@types/ui2/configuration/document/DocumentScannerOutputSettings.d.ts +38 -0
  143. package/@types/ui2/configuration/document/DocumentScannerScreens.d.ts +26 -0
  144. package/@types/ui2/configuration/document/DocumentScannerTextLocalization.d.ts +608 -0
  145. package/@types/ui2/configuration/document/DocumentScannerUIResult.d.ts +5 -0
  146. package/@types/ui2/configuration/document/DocumentScannerUserGuidance.d.ts +99 -0
  147. package/@types/ui2/configuration/document/DocumentScanningFlow.d.ts +91 -0
  148. package/@types/ui2/configuration/document/IntroductionScreenConfiguration.d.ts +188 -0
  149. package/@types/ui2/configuration/document/ReorderPagesScreenConfiguration.d.ts +1 -0
  150. package/@types/ui2/configuration/document/ReviewScreenConfiguration.d.ts +372 -0
  151. package/@types/ui2/configuration/native/DocumentData.d.ts +37 -0
  152. package/@types/ui2/configuration/native/PageData.d.ts +58 -0
  153. package/@types/ui2/configuration/native/PageImageSource.d.ts +13 -0
  154. package/@types/ui2/configuration/utils.d.ts +8 -0
  155. package/@types/ui2/configuration.d.ts +46 -21
  156. package/@types/ui2/document/assets/auto-capture-disabled-icon.d.ts +4 -0
  157. package/@types/ui2/document/assets/auto-capture-icon.d.ts +4 -0
  158. package/@types/ui2/document/assets/captured-circle-icon.d.ts +5 -0
  159. package/@types/ui2/document/assets/delete-icon.d.ts +4 -0
  160. package/@types/ui2/document/assets/file-add-icon.d.ts +4 -0
  161. package/@types/ui2/document/assets/image-error-icon.d.ts +5 -0
  162. package/@types/ui2/document/assets/image-retake.d.ts +4 -0
  163. package/@types/ui2/document/assets/loading-spinner-icon.d.ts +2 -0
  164. package/@types/ui2/document/assets/shutter-button-auto-icon.d.ts +4 -0
  165. package/@types/ui2/document/assets/shutter-button-manual-icon.d.ts +5 -0
  166. package/@types/ui2/document/assets/shutter-button-spinner-icon.d.ts +4 -0
  167. package/@types/ui2/document/assets/the-hand.d.ts +10 -0
  168. package/@types/ui2/document/controller/acknowledgment-screen-controller.d.ts +16 -0
  169. package/@types/ui2/document/controller/camera-screen-controller.d.ts +20 -0
  170. package/@types/ui2/document/controller/cropping-screen-controller.d.ts +14 -0
  171. package/@types/ui2/document/controller/document-scanner-controller.d.ts +14 -0
  172. package/@types/ui2/document/controller/review-screen-controller.d.ts +18 -0
  173. package/@types/ui2/document/controller/zoom-screen-controller.d.ts +11 -0
  174. package/@types/ui2/document/model/document-detection-ui-result.d.ts +8 -0
  175. package/@types/ui2/document/model/sb-document.d.ts +62 -0
  176. package/@types/ui2/document/model/sb-page.d.ts +38 -0
  177. package/@types/ui2/document/model/utils/sb-document-data.d.ts +10 -0
  178. package/@types/ui2/document/model/utils/sb-page-data.d.ts +7 -0
  179. package/@types/ui2/document/utils/SBThemeProvider.d.ts +4 -0
  180. package/@types/ui2/document/utils/button-accessibility-styling.d.ts +40 -0
  181. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-confirmation.d.ts +19 -0
  182. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-fade.d.ts +9 -0
  183. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-image.d.ts +7 -0
  184. package/@types/ui2/document/views/acknowledgement-screen/acknowledgement-screen-bottom-bar.d.ts +12 -0
  185. package/@types/ui2/document/views/acknowledgement-screen/quality-insufficient-banner.d.ts +10 -0
  186. package/@types/ui2/document/views/camera-screen/bottom-bar.d.ts +33 -0
  187. package/@types/ui2/document/views/camera-screen/camera-permission-denied.d.ts +9 -0
  188. package/@types/ui2/document/views/camera-screen/camera-select-dropdown.d.ts +14 -0
  189. package/@types/ui2/document/views/camera-screen/introduction/assets/CheckIcon.d.ts +3 -0
  190. package/@types/ui2/document/views/camera-screen/introduction/assets/CreditCardsIcon.d.ts +3 -0
  191. package/@types/ui2/document/views/camera-screen/introduction/assets/DocumentsIcon.d.ts +3 -0
  192. package/@types/ui2/document/views/camera-screen/introduction/assets/IdCardsIcon.d.ts +3 -0
  193. package/@types/ui2/document/views/camera-screen/introduction/assets/MedicalCertsIcon.d.ts +3 -0
  194. package/@types/ui2/document/views/camera-screen/introduction/assets/Props.d.ts +3 -0
  195. package/@types/ui2/document/views/camera-screen/introduction/assets/ReceiptsIcon.d.ts +3 -0
  196. package/@types/ui2/document/views/camera-screen/introduction/introduction-image.d.ts +5 -0
  197. package/@types/ui2/document/views/camera-screen/introduction/introduction.d.ts +9 -0
  198. package/@types/ui2/document/views/camera-screen/preview-button.d.ts +11 -0
  199. package/@types/ui2/document/views/camera-screen/scanner-box.d.ts +21 -0
  200. package/@types/ui2/document/views/camera-screen/shutter-button.d.ts +10 -0
  201. package/@types/ui2/document/views/camera-screen/top-bar.d.ts +11 -0
  202. package/@types/ui2/document/views/camera-screen/top-user-guidance.d.ts +8 -0
  203. package/@types/ui2/document/views/camera-screen/use-document-scanner-view.d.ts +31 -0
  204. package/@types/ui2/document/views/camera-screen/user-guidance-text.d.ts +10 -0
  205. package/@types/ui2/document/views/common/alert-dialog.d.ts +11 -0
  206. package/@types/ui2/document/views/common/bar-button.d.ts +17 -0
  207. package/@types/ui2/document/views/common/common-top-bar.d.ts +12 -0
  208. package/@types/ui2/document/views/common/loading-spinner.d.ts +4 -0
  209. package/@types/ui2/document/views/common/styled-menu-item.d.ts +12 -0
  210. package/@types/ui2/document/views/common/styled-menu.d.ts +17 -0
  211. package/@types/ui2/document/views/review-screen/bottom-bar.d.ts +15 -0
  212. package/@types/ui2/document/views/review-screen/carousel-page.d.ts +13 -0
  213. package/@types/ui2/document/views/review-screen/carousel.d.ts +14 -0
  214. package/@types/ui2/document/views/review-screen/page-counter-and-zoom-button.d.ts +10 -0
  215. package/@types/ui2/document/views/review-screen/scroller-navigation-button.d.ts +11 -0
  216. package/@types/ui2/document/views/review-screen/top-bar.d.ts +11 -0
  217. package/@types/ui2/scanbot-sdk-ui.d.ts +4 -0
  218. package/@types/ui2/scanbot-ui-library.d.ts +7 -4
  219. package/@types/ui2/utils/text-styling.d.ts +8 -0
  220. package/@types/ui2/utils/use-time-since-first-render-has-passed.d.ts +1 -0
  221. package/@types/utils/constants.d.ts +0 -2
  222. package/@types/utils/dto/Frame.d.ts +2 -0
  223. package/@types/utils/image-utils.d.ts +1 -1
  224. package/@types/utils/parse-color.d.ts +9 -0
  225. package/@types/utils/react/useIsMounted.d.ts +2 -0
  226. package/@types/utils/react/usePromise.d.ts +4 -3
  227. package/@types/utils/supported-image-mime-types.d.ts +2 -0
  228. package/@types/utils/view-utils.d.ts +1 -1
  229. package/@types/view/barcode-polygon/animated-barcode-selection-overlay.d.ts +8 -2
  230. package/@types/view/polygon/document-polygon.d.ts +1 -0
  231. package/@types/worker/worker-bridge.d.ts +498 -374
  232. package/Libraries.txt +1510 -36
  233. package/bundle/ScanbotSDK.min.js +4 -4
  234. package/bundle/ScanbotSDK.ui2.min.js +18 -18
  235. package/bundle/ScanbotSDK.ui2.min.js.LICENSE.txt +10 -0
  236. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  237. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  238. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  239. package/bundle/bin/barcode-scanner/ScanbotSDK.Asm.wasm +0 -0
  240. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  241. package/bundle/bin/barcode-scanner/ScanbotSDK.Core-simd.js +1 -1
  242. package/bundle/bin/barcode-scanner/ScanbotSDK.Core.js +1 -1
  243. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.js +1 -1
  244. package/bundle/bin/complete/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  245. package/bundle/bin/complete/ScanbotSDK.Asm-simd.wasm +0 -0
  246. package/bundle/bin/complete/ScanbotSDK.Asm.wasm +0 -0
  247. package/bundle/bin/complete/ScanbotSDK.Core-simd-threads.js +1 -1
  248. package/bundle/bin/complete/ScanbotSDK.Core-simd.js +1 -1
  249. package/bundle/bin/complete/ScanbotSDK.Core.js +1 -1
  250. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.js +1 -1
  251. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd-threads.wasm +0 -0
  252. package/bundle/bin/document-scanner/ScanbotSDK.Asm-simd.wasm +0 -0
  253. package/bundle/bin/document-scanner/ScanbotSDK.Asm.wasm +0 -0
  254. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd-threads.js +1 -1
  255. package/bundle/bin/document-scanner/ScanbotSDK.Core-simd.js +1 -1
  256. package/bundle/bin/document-scanner/ScanbotSDK.Core.js +1 -1
  257. package/package.json +3 -3
  258. package/@types/core/bridge/compiled/CheckRecognizerTypes.d.ts +0 -29
  259. package/@types/core/bridge/compiled/FrameUtilities.d.ts +0 -18
  260. package/@types/core/bridge/compiled/GDRTypes.d.ts +0 -38
  261. package/@types/core/bridge/compiled/GenericDocumentRecognizerConfigs.d.ts +0 -150
  262. package/@types/core/bridge/compiled/GenericDocumentRecognizerTypes.d.ts +0 -83
  263. package/@types/core/bridge/compiled/GenericDocumentTypes.d.ts +0 -15
  264. package/@types/core/bridge/compiled/MRZTypes.d.ts +0 -52
  265. package/@types/generic-document-recognizer-view.d.ts +0 -22
  266. package/@types/interfaces/i-generic-document-recognizer-scanner-handle.d.ts +0 -3
  267. package/@types/model/configuration/generic-document-recognizer-configuration.d.ts +0 -9
  268. package/@types/model/configuration/text-data-scanner-configuration.d.ts +0 -9
  269. package/@types/service/generic-document-recognizer.d.ts +0 -13
  270. package/@types/service/text-data-recognizer.d.ts +0 -14
  271. package/@types/ui2/configuration/BarcodeScannerTypes.d.ts +0 -1
  272. package/@types/ui2/configuration/BarcodeTypes.d.ts +0 -1
  273. package/@types/ui2/configuration/CommonFieldType.d.ts +0 -1
  274. package/@types/ui2/configuration/GenericDocument.d.ts +0 -1
  275. package/@types/ui2/utils/styled-button.d.ts +0 -7
  276. /package/@types/core/bridge/compiled/{OcrElements.d.ts → OcrTypes.d.ts} +0 -0
  277. /package/@types/ui2/{utils → barcode/utils}/find-and-pick.ts/expected-barcode-counter.d.ts +0 -0
  278. /package/@types/ui2/{utils → barcode/utils}/styled-input.d.ts +0 -0
  279. /package/@types/ui2/{views → barcode/views}/drawer/subviews/barcode-drawer-header.d.ts +0 -0
  280. /package/@types/ui2/configuration/{BarcodeItemMapper.d.ts → barcode/BarcodeItemMapper.d.ts} +0 -0
  281. /package/@types/ui2/configuration/{BarcodeUseCase.d.ts → barcode/BarcodeUseCase.d.ts} +0 -0
@@ -0,0 +1,608 @@
1
+ import { DeepPartial, PartiallyConstructible } from "../utils";
2
+ /**
3
+ Configuration of all the strings for the standalone cropping screen.
4
+ */
5
+ export declare class DocumentScannerTextLocalization extends PartiallyConstructible {
6
+ /**
7
+ The title of the camera permission dialog.
8
+ @defaultValue "Camera permission denied!";
9
+ */
10
+ cameraPermissionEnableCameraTitle: string;
11
+ /**
12
+ The explanation text of the camera permission dialog.
13
+ @defaultValue "Please allow the usage of the camera to start the scanning process.";
14
+ */
15
+ cameraPermissionEnableCameraExplanation: string;
16
+ /**
17
+ The 'enable' button title of the camera permission dialog.
18
+ @defaultValue "Grant permission";
19
+ */
20
+ cameraPermissionEnableCameraButton: string;
21
+ /**
22
+ The 'close' button title of the camera permission dialog.
23
+ @defaultValue "Close";
24
+ */
25
+ cameraPermissionCloseButton: string;
26
+ /**
27
+ The 'cancel' button title, located in the top bar of the camera screen and the reorder pages screen.
28
+ @defaultValue "Cancel";
29
+ */
30
+ cameraTopBarCancelButtonTitle: string;
31
+ /**
32
+ The title of the camera screen, located in the top bar.
33
+ @defaultValue "Scan Document";
34
+ */
35
+ cameraTopBarTitle: string;
36
+ /**
37
+ The text for the static user guidance, located just below the top bar of the camera screen.
38
+ @defaultValue "Scan each page of your document.";
39
+ */
40
+ cameraTopGuidance: string;
41
+ /**
42
+ The user guidance text that is initially displayed, before a document is detected.
43
+ @defaultValue "Please hold your device over a document.";
44
+ */
45
+ cameraUserGuidanceStart: string;
46
+ /**
47
+ The user guidance text displayed when no document is found.
48
+ @defaultValue "No document found";
49
+ */
50
+ cameraUserGuidanceNoDocumentFound: string;
51
+ /**
52
+ The user guidance text displayed when a landscape document is detected when the camera is in portrait mode (and vice versa).
53
+ @defaultValue "Bad aspect ratio";
54
+ */
55
+ cameraUserGuidanceBadAspectRatio: string;
56
+ /**
57
+ The user guidance text displayed when the document pitch/skew angle is unacceptable.
58
+ @defaultValue "Bad angles";
59
+ */
60
+ cameraUserGuidanceBadAngles: string;
61
+ /**
62
+ The user guidance text displayed when the background is too noisy.
63
+ @defaultValue "Its too noisy. Try another background for the document";
64
+ */
65
+ cameraUserGuidanceTooNoisy: string;
66
+ /**
67
+ The user guidance text displayed when the document is not centered in the finder view.
68
+ @defaultValue "Document is off center";
69
+ */
70
+ cameraUserGuidanceTextHintOffCenter: string;
71
+ /**
72
+ The user guidance text displayed when the document is too far from camera.
73
+ @defaultValue "Document is too small. Move camera closer.";
74
+ */
75
+ cameraUserGuidanceTooSmall: string;
76
+ /**
77
+ The user guidance text displayed when it is too dark to capture an adequate image.
78
+ @defaultValue "Its too dark. Add more light.";
79
+ */
80
+ cameraUserGuidanceTooDark: string;
81
+ /**
82
+ The user guidance text displayed when the device is in energy saving mode. iOS only.
83
+ @defaultValue "Energy save mode is on";
84
+ */
85
+ cameraUserGuidanceEnergySaveMode: string;
86
+ /**
87
+ The user guidance text displayed when the document is ready to be captured in 'auto snapping' mode.
88
+ @defaultValue "Hold still capturing...";
89
+ */
90
+ cameraUserGuidanceReadyToCapture: string;
91
+ /**
92
+ The user guidance text displayed when the document is ready to be captured in 'manual snapping' mode.
93
+ @defaultValue "Ready to capture!";
94
+ */
95
+ cameraUserGuidanceReadyToCaptureManual: string;
96
+ /**
97
+ The 'import image' button title, located in the bottom bar of the camera screen.
98
+ @defaultValue "Import";
99
+ */
100
+ cameraImportButtonTitle: string;
101
+ /**
102
+ The 'flashlight on' button title, located in the bottom bar of the camera screen.
103
+ @defaultValue "On";
104
+ */
105
+ cameraTorchOnButtonTitle: string;
106
+ /**
107
+ The 'flashlight off' button title, located in the bottom bar of the camera screen.
108
+ @defaultValue "Off";
109
+ */
110
+ cameraTorchOffButtonTitle: string;
111
+ /**
112
+ The 'auto snapping' mode button title, located in the bottom bar of the camera screen.
113
+ @defaultValue "Auto";
114
+ */
115
+ cameraAutoSnapButtonTitle: string;
116
+ /**
117
+ The 'manual snapping' mode button title, located in the bottom bar of the camera screen.
118
+ @defaultValue "Manual";
119
+ */
120
+ cameraManualSnapButtonTitle: string;
121
+ /**
122
+ The 'preview' button title, located in the bottom bar of the camera screen. '%d' denotes the total number of captured pages.
123
+ @defaultValue "%d Pages";
124
+ */
125
+ cameraPreviewButtonTitle: string;
126
+ /**
127
+ The 'done' button title of the introduction screen, located in the top bar.
128
+ @defaultValue "Done";
129
+ */
130
+ cameraIntroDoneButton: string;
131
+ /**
132
+ The title of the introduction screen, located in the top bar.
133
+ @defaultValue "How to scan a document";
134
+ */
135
+ cameraIntroTitle: string;
136
+ /**
137
+ The subtitle of the introduction screen.
138
+ @defaultValue "Follow the steps below to create a high-quality document scan";
139
+ */
140
+ cameraIntroSubtitle: string;
141
+ /**
142
+ The first scanning step text of the introduction screen.
143
+ @defaultValue "1. Place your document on a flat surface.";
144
+ */
145
+ cameraIntroItem1: string;
146
+ /**
147
+ The second scanning step text of the introduction screen.
148
+ @defaultValue "2. Hold your phone above the document.";
149
+ */
150
+ cameraIntroItem2: string;
151
+ /**
152
+ The third scanning step text of the introduction screen.
153
+ @defaultValue "3. Follow the on-screen guidance to find the optimal position.";
154
+ */
155
+ cameraIntroItem3: string;
156
+ /**
157
+ The fourth scanning step text of the introduction screen.
158
+ @defaultValue "4. Once you reach the optimal position, you can manually scan the document or let the app scan it automatically.";
159
+ */
160
+ cameraIntroItem4: string;
161
+ /**
162
+ The progress overlay title that is displayed on the camera screen during processing.
163
+ @defaultValue "Please wait...";
164
+ */
165
+ cameraProgressOverlayTitle: string;
166
+ /**
167
+ The title of the cancel camera screen alert dialog.
168
+ @defaultValue "Cancel?";
169
+ */
170
+ cameraCancelAlertTitle: string;
171
+ /**
172
+ The subtitle of the cancel camera screen alert dialog.
173
+ @defaultValue "Canceling will delete all the pages scanned so far. Are you sure you want to cancel?";
174
+ */
175
+ cameraCancelAlertSubtitle: string;
176
+ /**
177
+ The 'no' button title of the cancel camera screen alert dialog.
178
+ @defaultValue "No";
179
+ */
180
+ cameraCancelNoButtonTitle: string;
181
+ /**
182
+ The 'yes' button title of the cancel camera screen alert dialog.
183
+ @defaultValue "Yes, Cancel";
184
+ */
185
+ cameraCancelYesButtonTitle: string;
186
+ /**
187
+ The title of the page limit reached alert dialog.
188
+ @defaultValue "You reached the limit!";
189
+ */
190
+ cameraLimitReachedAlertTitle: string;
191
+ /**
192
+ The subtitle of the page limit reached alert dialog.
193
+ @defaultValue "You have scanned the maximum number of pages and cannot add any more. Please delete at least one page to perform a new scan.";
194
+ */
195
+ cameraLimitReachedAlertSubtitle: string;
196
+ /**
197
+ The 'OK' button title of the page limit reached alert dialog.
198
+ @defaultValue "Ok";
199
+ */
200
+ cameraLimitReachedOkButtonTitle: string;
201
+ /**
202
+ The title of the camera selection menu.
203
+ @defaultValue "Select camera";
204
+ */
205
+ cameraSelectCameraMenuTitle: string;
206
+ /**
207
+ The hint text of the acknowledgement screen explaining that the quality of the scanned page is unacceptable.
208
+ @defaultValue "The quality of your scan does not seem sufficient.";
209
+ */
210
+ acknowledgementScreenBadDocumentHint: string;
211
+ /**
212
+ The 'retake' button title of the acknowledgement screen.
213
+ @defaultValue "Retake";
214
+ */
215
+ acknowledgementRetakeButtonTitle: string;
216
+ /**
217
+ The 'accept' button title of the acknowledgement screen.
218
+ @defaultValue "Use Scan";
219
+ */
220
+ acknowledgementAcceptButtonTitle: string;
221
+ /**
222
+ The title of the review screen, located in the top bar. '%d' denotes the total number of captured pages.
223
+ @defaultValue "Review (%d)";
224
+ */
225
+ reviewScreenTitle: string;
226
+ /**
227
+ The 'back' button title, located in the top bar of the review screen.
228
+ @defaultValue "Back";
229
+ */
230
+ reviewTopBarBackButtonTitle: string;
231
+ /**
232
+ The page count label text. The first occurrence of '%d' denotes the current page number, while the second occurrence of '%d' denotes the total number of captured pages.
233
+ @defaultValue "Page %d/%d";
234
+ */
235
+ reviewScreenPageCount: string;
236
+ /**
237
+ The 'add' button title, located in the bottom bar of the review screen.
238
+ @defaultValue "Add";
239
+ */
240
+ reviewScreenAddButtonTitle: string;
241
+ /**
242
+ The 'retake' button title, located in the bottom bar of the review screen.
243
+ @defaultValue "Retake";
244
+ */
245
+ reviewScreenRetakeButtonTitle: string;
246
+ /**
247
+ The 'crop' button title, located in the bottom bar of the review screen.
248
+ @defaultValue "Crop";
249
+ */
250
+ reviewScreenCropButtonTitle: string;
251
+ /**
252
+ The 'rotate' button title, located in the bottom bar of the review screen.
253
+ @defaultValue "Rotate";
254
+ */
255
+ reviewScreenRotateButtonTitle: string;
256
+ /**
257
+ The 'delete' button title, located in the bottom bar of the review screen.
258
+ @defaultValue "Delete";
259
+ */
260
+ reviewScreenDeleteButtonTitle: string;
261
+ /**
262
+ The 'submit' button title, located in the bottom bar of the review screen.
263
+ @defaultValue "Submit";
264
+ */
265
+ reviewScreenSubmitButtonTitle: string;
266
+ /**
267
+ The 'delete all' menu button title, accessed via the 'more' button of the review screen.
268
+ @defaultValue "Delete all";
269
+ */
270
+ reviewScreenDeleteAllButtonTitle: string;
271
+ /**
272
+ The 'reorder pages' menu button title, accessed via the 'more' button of the review screen.
273
+ @defaultValue "Reorder pages";
274
+ */
275
+ reviewScreenReorderPagesButtonTitle: string;
276
+ /**
277
+ The 'close' button title of the zoom overlay for the review screen.
278
+ @defaultValue "Close";
279
+ */
280
+ zoomOverlayCancelButtonText: string;
281
+ /**
282
+ The title of the delete page alert dialog for the review screen.
283
+ @defaultValue "Delete page?";
284
+ */
285
+ reviewDeletePageAlertTitle: string;
286
+ /**
287
+ The title of the delete all pages alert dialog for the review screen.
288
+ @defaultValue "Delete all?";
289
+ */
290
+ reviewDeleteAllPagesAlertTitle: string;
291
+ /**
292
+ The subtitle of the delete page alert dialog for the review screen.
293
+ @defaultValue "Are you sure you want to delete the page?";
294
+ */
295
+ reviewDeletePageAlertSubTitle: string;
296
+ /**
297
+ The subtitle of the delete all pages alert dialog for the review screen.
298
+ @defaultValue "Are you sure you want to delete all pages?";
299
+ */
300
+ reviewDeleteAllPagesAlertSubtitle: string;
301
+ /**
302
+ The 'confirm' button title of the delete page alert dialog for the review screen.
303
+ @defaultValue "Yes, Delete";
304
+ */
305
+ reviewDeletePageAlertConfirmButtonTitle: string;
306
+ /**
307
+ The 'confirm' button title of the delete all pages alert dialog for the review screen.
308
+ @defaultValue "Yes, Delete all";
309
+ */
310
+ reviewDeleteAllPagesAlertDeleteButtonTitle: string;
311
+ /**
312
+ The 'delete and retake' button title of the delete page alert dialog for the review screen.
313
+ @defaultValue "Delete and Retake";
314
+ */
315
+ reviewDeletePageAlertDeleteRetakeButtonTitle: string;
316
+ /**
317
+ The 'cancel' button title of the delete page alert dialog for the review screen.
318
+ @defaultValue "Cancel";
319
+ */
320
+ reviewDeletePageAlertCancelButtonTitle: string;
321
+ /**
322
+ The 'cancel' button title of the delete all pages alert dialog for the review screen.
323
+ @defaultValue "Cancel";
324
+ */
325
+ reviewDeleteAllPagesAlertCancelButtonTitle: string;
326
+ /**
327
+ The title of the reorder pages screen, located in the top bar.
328
+ @defaultValue "Reorder Pages";
329
+ */
330
+ reorderPageTitle: string;
331
+ /**
332
+ The text for the static user guidance, located just below the top bar of the reorder pages screen.
333
+ @defaultValue "Drag pages to reorder";
334
+ */
335
+ reorderPageGuidanceTitle: string;
336
+ /**
337
+ The title below each page object of the reorder pages screen. '%d' denotes the current page number.
338
+ @defaultValue "%d";
339
+ */
340
+ reorderPageText: string;
341
+ /**
342
+ The 'confirm' button title, located in the top bar of the reorder pages screen.
343
+ @defaultValue "Done";
344
+ */
345
+ reorderTopBarConfirmButtonTitle: string;
346
+ /**
347
+ The 'cancel' button title, located in the top bar of the reorder pages screen.
348
+ @defaultValue "Cancel";
349
+ */
350
+ reorderTopBarCancelButtonTitle: string;
351
+ /**
352
+ The 'confirm' button title, located in the top bar of the cropping screen.
353
+ @defaultValue "Done";
354
+ */
355
+ croppingTopBarConfirmButtonTitle: string;
356
+ /**
357
+ The 'cancel' button title, located in the top bar of the cropping screen.
358
+ @defaultValue "Cancel";
359
+ */
360
+ croppingTopBarCancelButtonTitle: string;
361
+ /**
362
+ The 'detect document' button title, located in the bottom bar of the cropping screen.
363
+ @defaultValue "Detect";
364
+ */
365
+ croppingDetectButtonTitle: string;
366
+ /**
367
+ The 'rotate page' button title, located in the bottom bar of the cropping screen.
368
+ @defaultValue "Rotate";
369
+ */
370
+ croppingRotateButtonTitle: string;
371
+ /**
372
+ The 'reset detection' button title, located in the bottom bar of the cropping screen.
373
+ @defaultValue "Reset";
374
+ */
375
+ croppingResetButtonTitle: string;
376
+ /**
377
+ The title of the cropping screen, located in the top bar.
378
+ @defaultValue "Crop";
379
+ */
380
+ croppingScreenTitle: string;
381
+ /**
382
+ The accessibility hint for the 'enable' button of the camera permission dialog.
383
+ @defaultValue "Tap to grant camera permission";
384
+ */
385
+ accessibilityDescriptionCameraPermissionEnableCameraButton: string;
386
+ /**
387
+ The accessibility hint for the 'close' button of the camera permission dialog.
388
+ @defaultValue "Close screen without granting permission";
389
+ */
390
+ accessibilityDescriptionCameraPermissionCloseButton: string;
391
+ /**
392
+ The accessibility hint for the 'introduction' button, located in the top bar of the camera screen.
393
+ @defaultValue "Tap to open introduction screen";
394
+ */
395
+ accessibilityDescriptionCameraTopBarIntroButton: string;
396
+ /**
397
+ The accessibility hint for the 'cancel' button, located in the top bar of the camera screen.
398
+ @defaultValue "Tap to close scanner screen";
399
+ */
400
+ accessibilityDescriptionCameraTopBarCancelButton: string;
401
+ /**
402
+ The accessibility hint for the 'import image' button, located in the bottom bar of the camera screen.
403
+ @defaultValue "Tap to import image";
404
+ */
405
+ accessibilityDescriptionCameraImportButton: string;
406
+ /**
407
+ The accessibility hint for the 'flashlight on' button, located in the bottom bar of the camera screen.
408
+ @defaultValue "Tap to disable torch";
409
+ */
410
+ accessibilityDescriptionCameraTorchOnButton: string;
411
+ /**
412
+ The accessibility hint for the 'flashlight off' button, located in the bottom bar of the camera screen.
413
+ @defaultValue "Tap to enable torch";
414
+ */
415
+ accessibilityDescriptionCameraTorchOffButton: string;
416
+ /**
417
+ The accessibility hint for the 'shutter' button, located in the bottom bar of the camera screen.
418
+ @defaultValue "Tap to take image";
419
+ */
420
+ accessibilityDescriptionCameraShutterButton: string;
421
+ /**
422
+ The accessibility hint for the 'auto snapping' mode button, located in the bottom bar of the camera screen.
423
+ @defaultValue "Tap to enable manual snapping mode";
424
+ */
425
+ accessibilityDescriptionCameraAutoSnapButton: string;
426
+ /**
427
+ The accessibility hint for the 'manual snapping' mode button, located in the bottom bar of the camera screen.
428
+ @defaultValue "Tap to enable auto snapping mode";
429
+ */
430
+ accessibilityDescriptionCameraManualSnapButton: string;
431
+ /**
432
+ The accessibility hint for the 'preview' button, located in the bottom bar of the camera screen.
433
+ @defaultValue "Tap to preview scanned pages";
434
+ */
435
+ accessibilityDescriptionCameraPreviewButton: string;
436
+ /**
437
+ The accessibility hint for the 'done' button of the introduction screen.
438
+ @defaultValue "Tap to close introduction screen";
439
+ */
440
+ accessibilityDescriptionCameraIntroDoneButton: string;
441
+ /**
442
+ The accessibility hint for the 'select camera' button, located in the top bar of the camera screen.
443
+ @defaultValue "Tap to open camera selection menu";
444
+ */
445
+ accessibilityDescriptionCameraSelectButton: string;
446
+ /**
447
+ The accessibility hint for the 'select camera' menu item, accessed via the top bar button on the camera screen.
448
+ @defaultValue "Tap to select camera";
449
+ */
450
+ accessibilityDescriptionCameraSelectMenuItem: string;
451
+ /**
452
+ The accessibility hint for the 'retake' button of the acknowledgement screen.
453
+ @defaultValue "Tap to retake the image";
454
+ */
455
+ accessibilityDescriptionAcknowledgementRetakeButton: string;
456
+ /**
457
+ The accessibility hint for the 'accept' button of the acknowledgement screen.
458
+ @defaultValue "Tap to accept the image regarding the quality";
459
+ */
460
+ accessibilityDescriptionAcknowledgementAcceptButton: string;
461
+ /**
462
+ The accessibility hint for the 'confirm' button, located in the top bar of the cropping screen.
463
+ @defaultValue "Tap to apply changes";
464
+ */
465
+ accessibilityDescriptionCroppingTopBarConfirmButton: string;
466
+ /**
467
+ The accessibility hint for the 'cancel' button, located in the top bar of the cropping screen.
468
+ @defaultValue "Tap to close screen without applying changes";
469
+ */
470
+ accessibilityDescriptionCroppingTopBarCancelButton: string;
471
+ /**
472
+ The accessibility hint for the 'detect document' button, located in the bottom bar of the cropping screen.
473
+ @defaultValue "Tap to detect document on the image";
474
+ */
475
+ accessibilityDescriptionCroppingDetectButton: string;
476
+ /**
477
+ The accessibility hint for the 'rotate page' button, located in the bottom bar of the cropping screen.
478
+ @defaultValue "Tap to rotate document";
479
+ */
480
+ accessibilityDescriptionCroppingRotateButton: string;
481
+ /**
482
+ The accessibility hint for the 'reset detection' button, located in the bottom bar of the cropping screen.
483
+ @defaultValue "Tap to reset document contour to whole image";
484
+ */
485
+ accessibilityDescriptionCroppingResetButton: string;
486
+ /**
487
+ The accessibility hint for the 'confirm' button, located in the top bar of the reorder pages screen.
488
+ @defaultValue "Tap to apply changes";
489
+ */
490
+ accessibilityDescriptionReorderTopBarConfirmButton: string;
491
+ /**
492
+ The accessibility hint for the 'cancel' button, located in the top bar of the reorder pages screen.
493
+ @defaultValue "Tap to close screen without applying changes";
494
+ */
495
+ accessibilityDescriptionReorderTopBarCancelButton: string;
496
+ /**
497
+ The accessibility hint for the 'next page' button of the review screen.
498
+ @defaultValue "Tap to switch to the new page";
499
+ */
500
+ accessibilityDescriptionReviewNextPageButton: string;
501
+ /**
502
+ The accessibility hint for the 'previous page' button of the review screen.
503
+ @defaultValue "Tap to switch to the previous page";
504
+ */
505
+ accessibilityDescriptionReviewPreviousPageButton: string;
506
+ /**
507
+ The accessibility hint for the 'add' button, located in the bottom bar of the review screen.
508
+ @defaultValue "Tap to Add new page";
509
+ */
510
+ accessibilityDescriptionReviewAddButton: string;
511
+ /**
512
+ The accessibility hint for the 'retake' button, located in the bottom bar of the review screen.
513
+ @defaultValue "Tap to Retake current selected page";
514
+ */
515
+ accessibilityDescriptionReviewRetakeButton: string;
516
+ /**
517
+ The accessibility hint for the 'crop' button, located in the bottom bar of the review screen.
518
+ @defaultValue "Tap to Crop selected page";
519
+ */
520
+ accessibilityDescriptionReviewCropButton: string;
521
+ /**
522
+ The accessibility hint for the 'rotate' button, located in the bottom bar of the review screen.
523
+ @defaultValue "Tap to Rotate selected page clockwise";
524
+ */
525
+ accessibilityDescriptionReviewRotateButton: string;
526
+ /**
527
+ The accessibility hint for the 'delete' button, located in the bottom bar of the review screen.
528
+ @defaultValue "Tap to Delete selected page";
529
+ */
530
+ accessibilityDescriptionReviewDeleteButton: string;
531
+ /**
532
+ The accessibility hint for the 'submit' button, located in the bottom bar of the review screen.
533
+ @defaultValue "Tap to Submit document";
534
+ */
535
+ accessibilityDescriptionReviewSubmitButton: string;
536
+ /**
537
+ The accessibility hint for the 'more' button, located in the top bar of the review screen.
538
+ @defaultValue "Tap to show additional options";
539
+ */
540
+ accessibilityDescriptionReviewMoreButton: string;
541
+ /**
542
+ The accessibility hint for the 'delete all' menu button, accessed via the 'more' button of the review screen.
543
+ @defaultValue "Tap to Delete all pages";
544
+ */
545
+ accessibilityDescriptionReviewDeleteAllButton: string;
546
+ /**
547
+ The accessibility hint for the 'reorder pages' menu button, accessed via the 'more' button of the review screen.
548
+ @defaultValue "Tap to Reorder pages";
549
+ */
550
+ accessibilityDescriptionReviewReorderPagesButton: string;
551
+ /**
552
+ The accessibility hint for the 'close' button of the zoom overlay for the review screen.
553
+ @defaultValue "Tap to Close zoom overlay";
554
+ */
555
+ accessibilityDescriptionZoomOverlayCancelButton: string;
556
+ /**
557
+ The accessibility hint for the 'zoom' button of the review screen.
558
+ @defaultValue "Tap to open zoom overlay for selected page";
559
+ */
560
+ accessibilityDescriptionReviewZoomButton: string;
561
+ /**
562
+ The accessibility hint for the 'back' button, located in the top bar of the review screen.
563
+ @defaultValue "Tap to Close review screen";
564
+ */
565
+ accessibilityDescriptionReviewTopBarBackButton: string;
566
+ /**
567
+ The accessibility hint for the 'confirm' button of the delete page alert dialog for the review screen.
568
+ @defaultValue "Tap to Delete page";
569
+ */
570
+ accessibilityDescriptionReviewDeletePageAlertConfirmButton: string;
571
+ /**
572
+ The accessibility hint for the 'confirm' button of the delete all pages alert dialog for the review screen.
573
+ @defaultValue "Tap to Delete all pages";
574
+ */
575
+ accessibilityDescriptionReviewDeleteAllPagesAlertDeleteButton: string;
576
+ /**
577
+ The accessibility hint for the 'delete and retake' button of the delete page alert dialog for the review screen.
578
+ @defaultValue "Tap to Delete page and Retake it";
579
+ */
580
+ accessibilityDescriptionReviewDeletePageAlertDeleteRetakeButton: string;
581
+ /**
582
+ The accessibility hint for the 'cancel' button of the delete page alert dialog for the review screen.
583
+ @defaultValue "Tap to Cancel operation";
584
+ */
585
+ accessibilityDescriptionReviewDeletePageAlertCancelButton: string;
586
+ /**
587
+ The accessibility hint for the 'cancel' button of the delete all pages alert dialog for the review screen.
588
+ @defaultValue "Tap to Cancel operation";
589
+ */
590
+ accessibilityDescriptionReviewDeleteAllPagesAlertCancelButton: string;
591
+ /**
592
+ The accessibility hint for the 'OK' button of the page limit reached alert dialog.
593
+ @defaultValue "Tap to close alert dialog";
594
+ */
595
+ accessibilityDescriptionCameraLimitReachedOkButton: string;
596
+ /**
597
+ The accessibility hint for the 'yes' button of the cancel camera screen alert dialog.
598
+ @defaultValue "Tap to cancel document";
599
+ */
600
+ accessibilityDescriptionCameraCancelYesButton: string;
601
+ /**
602
+ The accessibility hint for the 'no' button of the cancel camera screen alert dialog.
603
+ @defaultValue "Tap to close alert dialog";
604
+ */
605
+ accessibilityDescriptionCameraCancelNoButton: string;
606
+ /** @param source {@displayType `DeepPartial<DocumentScannerTextLocalization>`} */
607
+ constructor(source?: DeepPartial<DocumentScannerTextLocalization>);
608
+ }
@@ -0,0 +1,5 @@
1
+ import { SBDocument } from "../../document/model/sb-document";
2
+ export declare class DocumentScannerUIResult {
3
+ readonly document: SBDocument;
4
+ constructor(document: SBDocument);
5
+ }