@regulaforensics/vp-frontend-document-components 8.2.2326-rc → 8.2.2328-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 +26 -2
- package/dist/main.iife.js +3 -3
- package/dist/main.js +5 -5
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -3,7 +3,7 @@ import { GetTransactionsByTagResponse } from '@regulaforensics/document-reader-w
|
|
|
3
3
|
import { Light } from '@regulaforensics/document-reader-webclient';
|
|
4
4
|
import { ProcessParams } from '@regulaforensics/document-reader-webclient';
|
|
5
5
|
import { ProcessResponse } from '@regulaforensics/document-reader-webclient';
|
|
6
|
-
import {
|
|
6
|
+
import { Response as Response_2 } from '@regulaforensics/document-reader-webclient';
|
|
7
7
|
import { TransactionInfo } from '@regulaforensics/document-reader-webclient';
|
|
8
8
|
|
|
9
9
|
export declare interface BaseRequest {
|
|
@@ -218,7 +218,7 @@ export declare type DocumentReaderProcessParam = Pick<ProcessParams, 'generateNu
|
|
|
218
218
|
};
|
|
219
219
|
};
|
|
220
220
|
|
|
221
|
-
export declare type DocumentReaderResponseType =
|
|
221
|
+
export declare type DocumentReaderResponseType = Response_2;
|
|
222
222
|
|
|
223
223
|
export declare class DocumentReaderService {
|
|
224
224
|
private _worker;
|
|
@@ -598,6 +598,11 @@ export { }
|
|
|
598
598
|
|
|
599
599
|
|
|
600
600
|
declare global {
|
|
601
|
+
const UI_COMPONENTS_VERSION: string;
|
|
602
|
+
const DOC_WASM_S3_PATH: string;
|
|
603
|
+
const DOCUMENT_API: string;
|
|
604
|
+
const LICENSE: string | undefined;
|
|
605
|
+
|
|
601
606
|
namespace React.JSX {
|
|
602
607
|
interface IntrinsicElements {
|
|
603
608
|
'document-reader': React.DetailedHTMLProps<
|
|
@@ -608,6 +613,10 @@ declare global {
|
|
|
608
613
|
ICameraSnapshot & React.HTMLAttributes<DocumentReaderCaptureWebComponent>,
|
|
609
614
|
DocumentReaderCaptureWebComponent
|
|
610
615
|
>;
|
|
616
|
+
'fullscreen-container': React.DetailedHTMLProps<
|
|
617
|
+
React.HTMLAttributes<FullScreenContainer>,
|
|
618
|
+
FullScreenContainer
|
|
619
|
+
>;
|
|
611
620
|
}
|
|
612
621
|
}
|
|
613
622
|
|
|
@@ -620,3 +629,18 @@ declare global {
|
|
|
620
629
|
RegulaDocumentSDK: DocumentReaderService;
|
|
621
630
|
}
|
|
622
631
|
}
|
|
632
|
+
|
|
633
|
+
declare global {
|
|
634
|
+
const VERSION: string;
|
|
635
|
+
const ENV: string;
|
|
636
|
+
}
|
|
637
|
+
|
|
638
|
+
declare module 'react' {
|
|
639
|
+
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
640
|
+
part?: string;
|
|
641
|
+
}
|
|
642
|
+
|
|
643
|
+
interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
644
|
+
part?: string;
|
|
645
|
+
}
|
|
646
|
+
}
|