@regulaforensics/vp-frontend-document-components 7.6.2174-nightly → 7.6.2176-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 +50 -0
- package/dist/main.iife.js +2 -2
- package/dist/main.js +325 -325
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -605,3 +605,53 @@ export declare interface WidthAndHeight {
|
|
|
605
605
|
export * from "@regulaforensics/document-reader-webclient";
|
|
606
606
|
|
|
607
607
|
export { }
|
|
608
|
+
|
|
609
|
+
|
|
610
|
+
|
|
611
|
+
declare global {
|
|
612
|
+
const UI_COMPONENTS_VERSION: string;
|
|
613
|
+
const DOC_WASM_S3_PATH: string;
|
|
614
|
+
const DOCUMENT_API: string;
|
|
615
|
+
const LICENSE: string | undefined;
|
|
616
|
+
|
|
617
|
+
namespace React.JSX {
|
|
618
|
+
interface IntrinsicElements {
|
|
619
|
+
'document-reader': React.DetailedHTMLProps<
|
|
620
|
+
IDocumentReader & React.HTMLAttributes<DocumentReaderWebComponent>,
|
|
621
|
+
DocumentReaderWebComponent
|
|
622
|
+
>;
|
|
623
|
+
'camera-snapshot': React.DetailedHTMLProps<
|
|
624
|
+
ICameraSnapshot & React.HTMLAttributes<DocumentReaderCaptureWebComponent>,
|
|
625
|
+
DocumentReaderCaptureWebComponent
|
|
626
|
+
>;
|
|
627
|
+
'fullscreen-container': React.DetailedHTMLProps<
|
|
628
|
+
React.HTMLAttributes<FullScreenContainer>,
|
|
629
|
+
FullScreenContainer
|
|
630
|
+
>;
|
|
631
|
+
}
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
interface HTMLElementEventMap {
|
|
635
|
+
'document-reader': CustomEvent<DocumentReaderDetailType | TransactionEvent>;
|
|
636
|
+
'camera-snapshot': CustomEvent<CameraSnapshotDetailType>;
|
|
637
|
+
}
|
|
638
|
+
|
|
639
|
+
interface Window {
|
|
640
|
+
RegulaDocumentSDK: DocumentReaderService;
|
|
641
|
+
}
|
|
642
|
+
}
|
|
643
|
+
|
|
644
|
+
declare global {
|
|
645
|
+
const VERSION: string;
|
|
646
|
+
const ENV: string;
|
|
647
|
+
}
|
|
648
|
+
|
|
649
|
+
declare module 'react' {
|
|
650
|
+
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
651
|
+
part?: string;
|
|
652
|
+
}
|
|
653
|
+
|
|
654
|
+
interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
|
655
|
+
part?: string;
|
|
656
|
+
}
|
|
657
|
+
}
|