@regulaforensics/vp-frontend-document-components 8.2.2329-rc → 8.2.2330-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 +39 -2
- package/dist/main.iife.js +22 -22
- package/dist/main.js +1200 -1200
- 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,28 @@ 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
|
+
|
|
606
|
+
namespace React.JSX {
|
|
607
|
+
interface IntrinsicElements {
|
|
608
|
+
'document-reader': React.DetailedHTMLProps<
|
|
609
|
+
IDocumentReader & React.HTMLAttributes<DocumentReaderWebComponent>,
|
|
610
|
+
DocumentReaderWebComponent
|
|
611
|
+
>;
|
|
612
|
+
'camera-snapshot': React.DetailedHTMLProps<
|
|
613
|
+
ICameraSnapshot & React.HTMLAttributes<DocumentReaderCaptureWebComponent>,
|
|
614
|
+
DocumentReaderCaptureWebComponent
|
|
615
|
+
>;
|
|
616
|
+
'fullscreen-container': React.DetailedHTMLProps<
|
|
617
|
+
React.HTMLAttributes<FullScreenContainer>,
|
|
618
|
+
FullScreenContainer
|
|
619
|
+
>;
|
|
620
|
+
}
|
|
621
|
+
}
|
|
622
|
+
|
|
601
623
|
interface HTMLElementEventMap {
|
|
602
624
|
'document-reader': CustomEvent<DocumentReaderDetailType | TransactionEvent>;
|
|
603
625
|
'camera-snapshot': CustomEvent<CameraSnapshotDetailType>;
|
|
@@ -607,3 +629,18 @@ declare global {
|
|
|
607
629
|
RegulaDocumentSDK: DocumentReaderService;
|
|
608
630
|
}
|
|
609
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
|
+
}
|