@regulaforensics/vp-frontend-document-components 9.6.2942-rc → 9.6.2943-nightly
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +6 -1
- package/dist/main.iife.js +7 -7
- package/dist/main.js +193 -122
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -313,6 +313,7 @@ export declare interface DocumentReaderSettings extends CameraSnapshotSettings {
|
|
|
313
313
|
newLayout?: boolean;
|
|
314
314
|
processingDelay?: number;
|
|
315
315
|
manualMultipageMode?: boolean;
|
|
316
|
+
allDevicesSwitchToMobileButton?: boolean;
|
|
316
317
|
}
|
|
317
318
|
|
|
318
319
|
export declare class DocumentReaderWebComponent extends HTMLElement {
|
|
@@ -457,7 +458,9 @@ declare interface IOptions {
|
|
|
457
458
|
|
|
458
459
|
declare type Labels = 'preparingCamera' | 'timeout' | 'noFocus' | 'somethingWentWrong' | 'incorrectCameraId' | 'done' | 'cameraUnavailable' | 'versionNotSupported' | 'httpNotSupported' | 'insecurePageContext' | 'badLicense' | 'fileCorrupt' | 'largeFile' | 'placeDocumentIntoFrame' | 'holdDocumentStraight' | 'glaresOnDocument' | 'tryAgain' | 'noCameraAvailable' | 'positionDocumentCenter' | 'uploadPhoto' | 'moveCloser' | 'keepDeviceStill' | 'camera' | 'switchToMobile' | 'openPhoneCamera' | 'pleaseWait' | 'mobileDevice' | 'verifyYourIdentity' | 'fromCameraFilesMobileDesktop' | 'fromCameraFilesDesktop' | 'fromCameraMobileDesktop' | 'fromFilesMobileDesktop' | 'fromCameraDesktop' | 'fromFilesDesktop' | 'fromMobileDesktop' | 'fromCameraGalleryMobile' | 'fromGalleryMobile' | 'gallery' | 'files' | 'returnToComputer' | 'documentCaptured' | 'or' | 'continueInBrowser' | 'skip' | 'flipTheDocument' | 'tiltTheDocument';
|
|
459
460
|
|
|
460
|
-
declare type
|
|
461
|
+
declare type LanguageCodes = 'ru' | 'en' | 'de' | 'pl' | 'it' | 'hu' | 'zh' | 'sk' | 'uk' | 'fr' | 'es' | 'pt' | 'ar' | 'nl' | 'id' | 'vi' | 'ko' | 'ms' | 'ro' | 'el' | 'tr' | 'ja' | 'cs' | 'th' | 'hi' | 'bn' | 'he' | 'fi' | 'sv' | 'da' | 'hr' | 'no' | 'uz' | 'hy' | 'ky' | 'ku' | 'tg';
|
|
462
|
+
|
|
463
|
+
declare type Languages = LocalCodes | LanguageCodes;
|
|
461
464
|
|
|
462
465
|
export declare type License = {
|
|
463
466
|
license: {
|
|
@@ -477,6 +480,8 @@ export declare interface LivenessData {
|
|
|
477
480
|
lightType: Array<Light>;
|
|
478
481
|
}
|
|
479
482
|
|
|
483
|
+
declare type LocalCodes = 'ru-RU' | 'en-US' | 'de-DE' | 'pl-PL' | 'it-IT' | 'hu-HU' | 'zh-Hans' | 'zh-Hant' | 'sk-SK' | 'uk-UA' | 'fr-FR' | 'es-ES' | 'pt-PT' | 'ar-AE' | 'nl-NL' | 'id-ID' | 'vi-VN' | 'ko-KR' | 'ms-MY' | 'ro-RO' | 'el-GR' | 'tr-TR' | 'ja-JP' | 'cs-CZ' | 'th-TH' | 'hi-IN' | 'bn-BD' | 'he-IL' | 'fi-FI' | 'sv-SE' | 'da-DK' | 'hr-HR' | 'no-NO' | 'uz-Latn' | 'hy-AM' | 'ky-KG' | 'ku-Arab' | 'tg-TJ';
|
|
484
|
+
|
|
480
485
|
export declare type Locales = Languages | string;
|
|
481
486
|
|
|
482
487
|
export declare const Logger: Logger_2;
|