@regulaforensics/idv-gui 3.9.456-nightly → 3.9.460-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
@@ -382,6 +382,7 @@ declare type UICameraScreenClientConfig = {
382
382
  header?: UIInfoHeaderView;
383
383
  footer?: UIInfoFooterView;
384
384
  backgroundColor?: string;
385
+ backgroundImage?: UIImage;
385
386
  buttons?: UIButton[];
386
387
  selectionLimit?: number;
387
388
  };
@@ -423,6 +424,7 @@ declare type UIDeviceTransferScreenClientConfig = {
423
424
  buttons?: UIButton[];
424
425
  footer?: UIInfoFooterView;
425
426
  backgroundColor?: string;
427
+ backgroundImage?: UIImage;
426
428
  qr?: {
427
429
  color?: string;
428
430
  };
@@ -496,6 +498,7 @@ declare type UIGalleryScreenClientConfig = {
496
498
  header?: UIInfoHeaderView;
497
499
  footer?: UIInfoFooterView;
498
500
  backgroundColor?: string;
501
+ backgroundImage?: UIImage;
499
502
  buttons?: UIButton[];
500
503
  selectionLimit?: number;
501
504
  };
@@ -526,6 +529,7 @@ declare type UIGeolocationScreenClientConfig = {
526
529
  buttons?: UIButton[];
527
530
  footer?: UIInfoFooterView;
528
531
  backgroundColor?: string;
532
+ backgroundImage?: UIImage;
529
533
  popups: [UIGeolocationPopupSystemRestrictedOnly];
530
534
  askEveryTime?: boolean;
531
535
  };
@@ -566,6 +570,7 @@ declare type UIInfoDetailsScreenClientConfig = {
566
570
  buttons?: UIButton[];
567
571
  footer?: UIInfoFooterView;
568
572
  backgroundColor?: string;
573
+ backgroundImage?: UIImage;
569
574
  };
570
575
 
571
576
  declare type UIInfoFooterView = {
@@ -584,6 +589,7 @@ declare type UIInfoScreenClientConfig = {
584
589
  buttons?: UIButton[];
585
590
  footer?: UIInfoFooterView;
586
591
  backgroundColor?: string;
592
+ backgroundImage?: UIImage;
587
593
  };
588
594
 
589
595
  declare type UILabel = {
@@ -645,6 +651,7 @@ declare type UIProgressScreenClientConfig = {
645
651
  progressView?: UIProgressView;
646
652
  footer?: UIInfoFooterView;
647
653
  backgroundColor?: string;
654
+ backgroundImage?: UIImage;
648
655
  };
649
656
 
650
657
  declare type UIProgressView = {
@@ -661,6 +668,7 @@ declare type UIQuestionsScreenClientConfig = {
661
668
  backgroundColor?: string;
662
669
  };
663
670
  backgroundColor?: string;
671
+ backgroundImage?: UIImage;
664
672
  cornerRadius?: number;
665
673
  };
666
674
 
@@ -691,6 +699,7 @@ declare type UIScaffoldContainer = {
691
699
  mainColumn?: UIColumn;
692
700
  bottomColumn?: UIColumn;
693
701
  backgroundColor?: string;
702
+ backgroundImage?: UIImage;
694
703
  cornerRadius?: number;
695
704
  };
696
705
 
@@ -729,6 +738,7 @@ declare type UIStatusScreenClientConfig = {
729
738
  buttons?: UIButton[];
730
739
  footer?: UIInfoFooterView;
731
740
  backgroundColor?: string;
741
+ backgroundImage?: UIImage;
732
742
  };
733
743
 
734
744
  declare type UITextField = UILabel & {
@@ -752,6 +762,7 @@ declare type UIUploadFilesScreenClientConfig = {
752
762
  buttons?: UIButton[];
753
763
  footer?: UIInfoFooterView;
754
764
  backgroundColor?: string;
765
+ backgroundImage?: UIImage;
755
766
  popups?: [UIFileUploadPopupNoFilesOnly, UIFileUploadPopupFilesLimitExceededOnly];
756
767
  settings: {
757
768
  supportedFileFormats: string[];