@regulaforensics/ui-components 7.3.31-nightly → 7.3.33-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
@@ -34,6 +34,8 @@ declare const Copy: FC<ICopyProps>;
34
34
 
35
35
  declare const Cross: FC<ICrossProps>;
36
36
 
37
+ export declare const DefaultImage: FC<IDefaultImageProps>;
38
+
37
39
  export declare const DocReaderContainer: FC<IDocReaderContainerProps>;
38
40
 
39
41
  declare const Download: FC<IDownloadProps>;
@@ -171,6 +173,10 @@ declare interface ICrossProps extends HTMLAttributes<HTMLSpanElement> {
171
173
  fillColor?: string;
172
174
  }
173
175
 
176
+ declare interface IDefaultImageProps extends HTMLAttributes<HTMLDivElement> {
177
+ type?: ImageType;
178
+ }
179
+
174
180
  declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
175
181
  response: unknown;
176
182
  request?: any;
@@ -257,6 +263,8 @@ export { Image_2 as Image }
257
263
 
258
264
  declare const ImageQualityCheckTypeLabel: FC<iImageQualityCheckTypeLabelProps>;
259
265
 
266
+ declare type ImageType = 'photo' | 'passport' | 'id-card';
267
+
260
268
  declare interface IMagnifierProps extends HTMLAttributes<HTMLSpanElement> {
261
269
  size?: number;
262
270
  fillColor?: string;