@regulaforensics/vp-frontend-document-components 7.5.1937-nightly → 7.5.1938-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/README.md CHANGED
@@ -1047,7 +1047,7 @@ See all component's settings and attributes in the following table.
1047
1047
  | **cameraFrame** | | Show the capture frame. | boolean | `true` | `true`, `false` | `document-reader` |
1048
1048
  | **captureButtonDelay** | | Show the capture button after delay. | number | `undefined` | `any number` | `document-reader` |
1049
1049
  | **nonce** | | Sets the unique nonce value to maintain the CSP policy. | string | `undefined` | `unique nonce value` | `document-reader`, `camera-snapshot` |
1050
- | **videoRecord** | | Sets the ability to record a video of the document scanning process. If set to true it records the entire process. You can also set the recording delay and recording duration. The video will be available in the component response. | boolean or object | `undefined` | `true`, `false`, `{ delay: number, duration: number }` | `document-reader` |
1050
+ | **videoRecord** | | Sets the ability to record a video of the document scanning process. If set to true it records the entire process. You can also set the recording delay and recording duration. The video will be available in the component response. | boolean or object | `undefined` | `true`, `false`, `{ delay: number, duration: number, bitrate: number }` | `document-reader` |
1051
1051
  | **videoCaptureMotionControl** | | Enables device shaking control. | boolean | `false` | `true`, `false` | `document-reader` |
1052
1052
  | **fromCameraButton** | | Show the camera button. | boolean | `true` | `true`, `false` | `document-reader`, `camera-snapshot` |
1053
1053
  | **uploadFileButton** | | Show the files button. | boolean | `true` | `true`, `false` | `document-reader`, `camera-snapshot` |
@@ -1232,7 +1232,7 @@ See the following table with localized labels, used in the components.
1232
1232
  | **keepDeviceStill** | Hold the device still | `document-reader` |
1233
1233
  | **positionDocumentCenter** | Position the document in the center | `camera-snapshot` |
1234
1234
  | **uploadPhoto** | Upload a photo | `camera-snapshot` |
1235
- | **scanQRCode** | Scan QR code | `document-reader` |
1235
+ | **switchToMobile** | Switch to mobile | `document-reader` |
1236
1236
  | **openPhoneCamera** | Open the camera on your mobile device, scan the QR code, and follow the link | `document-reader` |
1237
1237
  | **pleaseWait** | Please wait... | `document-reader` |
1238
1238
  | **mobileDevice** | Mobile device | `document-reader` |
package/dist/index.d.ts CHANGED
@@ -606,6 +606,7 @@ export declare interface VideoData {
606
606
  export declare interface VideoRecordSettings {
607
607
  delay?: number;
608
608
  duration?: number;
609
+ bitrate?: number;
609
610
  }
610
611
 
611
612
  export declare interface WidthAndHeight {
@@ -625,3 +626,15 @@ declare global {
625
626
  RegulaDocumentSDK: DocumentReaderService;
626
627
  }
627
628
  }
629
+
630
+
631
+ declare namespace v3 {
632
+ var DNS: string;
633
+ var URL: string;
634
+ }
635
+
636
+
637
+ declare namespace v5 {
638
+ var DNS: string;
639
+ var URL: string;
640
+ }