@regulaforensics/idv-capture-web 3.2.249-nightly → 3.2.251-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 CHANGED
@@ -1,5 +1,6 @@
1
1
  import { CSSResult } from 'lit';
2
2
  import { LitElement } from 'lit';
3
+ import { nothing } from 'lit';
3
4
  import { TemplateResult } from 'lit-html';
4
5
 
5
6
  export declare type ApiKeyConnectionConfig = {
@@ -500,6 +501,10 @@ declare type IdvStoreProps = {
500
501
  };
501
502
 
502
503
  export declare class IdvWebComponent extends LitElement {
504
+ private _currentProgressElement;
505
+ private _currentScreenElement;
506
+ private _currentScreenModuleId;
507
+ private _currentScreenConfig;
503
508
  static styles: CSSResult[];
504
509
  private orientation;
505
510
  store: IdvStoreProps & IdvIntegrationControllerProps & IdvBusinessLogicControllerProps;
@@ -513,7 +518,8 @@ export declare class IdvWebComponent extends LitElement {
513
518
  _isProcessingCallback: (isProcessing: boolean) => void;
514
519
  _performFromModule: (data: any) => void;
515
520
  _processingScreen(): HTMLElement | TemplateResult<1>;
516
- _currentScreen(): HTMLElement | null;
521
+ private _isTheSameModuleAndScreen;
522
+ _currentScreen(): HTMLElement | typeof nothing;
517
523
  get version(): string;
518
524
  disconnectedCallback(): void;
519
525
  render(): TemplateResult<1> | null;