@regulaforensics/idv-capture-web 3.2.262-nightly → 3.2.263-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 +1 -1
- package/dist/index.d.ts +3 -2
- package/dist/main.iife.js +15 -15
- package/dist/main.js +189 -187
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
|
|
18
18
|
The available component is `<idv-flow>`.
|
|
19
19
|
|
|
20
|
-
The component
|
|
20
|
+
The component designed to play the idv workflow of the platform , collect data from users , and send data to the platform .
|
|
21
21
|
|
|
22
22
|
## Before You Start
|
|
23
23
|
|
package/dist/index.d.ts
CHANGED
|
@@ -537,15 +537,16 @@ export declare class IdvWebComponent extends LitElement {
|
|
|
537
537
|
private _currentScreenElement;
|
|
538
538
|
private _currentScreenModuleId;
|
|
539
539
|
private _currentScreenConfig;
|
|
540
|
-
static styles: CSSResult[];
|
|
541
540
|
private orientation;
|
|
541
|
+
private unsubscribeFromStore?;
|
|
542
|
+
static styles: CSSResult[];
|
|
542
543
|
store: IdvStoreProps & IdvIntegrationControllerProps & IdvBusinessLogicControllerProps;
|
|
543
544
|
currentScreenConfig: CurrentScreenConfig | null;
|
|
544
545
|
processingScreenFromWorkflow: WorkflowStepClientGui | null;
|
|
545
546
|
isProcessing: boolean;
|
|
546
547
|
loadedModules: [] | LoadedModule[];
|
|
547
548
|
modulesConfig: Record<string, any>;
|
|
548
|
-
|
|
549
|
+
connectedCallback(): void;
|
|
549
550
|
_listenerFromModule: (module: string, data: any) => void;
|
|
550
551
|
_isProcessingCallback: (isProcessing: boolean) => void;
|
|
551
552
|
_performFromModule: (data: any, type?: PerformType) => void;
|