@regulaforensics/idv-capture-web 3.2.261-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 CHANGED
@@ -17,7 +17,7 @@
17
17
 
18
18
  The available component is `<idv-flow>`.
19
19
 
20
- The component is based on WebAssembly (compiled from our core C++ code and wrapped with JavaScript). The same code is used across all SDK packages, ensuring consistency between platforms.
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
- constructor();
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;