@regulaforensics/ui-components 0.0.19 → 0.0.21

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
@@ -46,29 +46,31 @@ export declare enum eInfoTabID {
46
46
 
47
47
  declare const Eye: FC<IEyeProps>;
48
48
 
49
- declare const getAuthenticity: (input: any) => string;
49
+ declare const getAuthenticity: (input: any) => string | number;
50
50
 
51
- declare const getAuthenticityLabel: (input: any) => string;
51
+ declare const getAuthenticityLabel: (input: any) => string | number;
52
52
 
53
- declare const getCheckDiagnose: (input: any) => string;
53
+ declare const getCheckDiagnose: (input: any) => string | number;
54
54
 
55
55
  declare const getCheckResultVerification: (input: any) => string;
56
56
 
57
- declare const getGraphicFieldType: (input: any) => string;
57
+ declare const getGraphicFieldType: (input: any) => string | number;
58
58
 
59
- declare const getImageQualityCheckTypeLabel: (input: any) => string;
59
+ declare const getImageQualityCheckTypeLabel: (input: any) => string | number;
60
60
 
61
- declare const getLCID: (input: any) => string;
61
+ declare const getLCID: (input: any) => string | number;
62
62
 
63
- declare const getLightsLabel: (input: any) => string;
63
+ declare const getLightsLabel: (input: any) => string | number;
64
64
 
65
65
  declare const getOpticalStatusField: (input: any) => string;
66
66
 
67
- declare const getPortraitComparisonSource: (input: any) => string;
67
+ declare const getPortraitComparisonSource: (input: any) => string | number;
68
68
 
69
- declare const getRfidDataFileType: (input: any) => string;
69
+ declare const getRfidCertificateType: (input: any) => string | number;
70
70
 
71
- declare const getSecurityFeatureTypeLabel: (input: any) => string;
71
+ declare const getRfidDataFileType: (input: any) => string | number;
72
+
73
+ declare const getSecurityFeatureTypeLabel: (input: any) => string | number;
72
74
 
73
75
  declare const getSex: (input: any) => string;
74
76
 
@@ -76,7 +78,7 @@ declare const getSource: (input: any) => string;
76
78
 
77
79
  declare const getSourceDescription: (input: any) => string;
78
80
 
79
- declare const getVisualFieldType: (input: any) => string;
81
+ declare const getVisualFieldType: (input: any) => string | number;
80
82
 
81
83
  declare const GraphicFieldType: FC<iGraphicFieldTypeProps>;
82
84
 
@@ -136,6 +138,8 @@ export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
136
138
  shift?: number;
137
139
  nested?: boolean;
138
140
  selected?: boolean;
141
+ onOpen?: (isOpen: boolean) => void;
142
+ preview?: ReactNode;
139
143
  }
140
144
 
141
145
  export declare const Icon: IIcon;
@@ -211,6 +215,9 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
211
215
  zoomLevel?: number;
212
216
  magnifierWidth?: number;
213
217
  magnifierHeight?: number;
218
+ magnifierImg?: string;
219
+ previewImg?: string;
220
+ downloadImg?: string;
214
221
  }
215
222
 
216
223
  declare interface iImageQualityCheckTypeLabelProps {
@@ -256,6 +263,8 @@ declare interface IMatch extends FC {
256
263
  getLightsLabel: typeof getLightsLabel;
257
264
  OpticalStatusField: typeof OpticalStatusField;
258
265
  getOpticalStatusField: typeof getOpticalStatusField;
266
+ RfidCertificateType: typeof RfidCertificateType;
267
+ getRfidCertificateType: typeof getRfidCertificateType;
259
268
  RfidDataFileType: typeof RfidDataFileType;
260
269
  getRfidDataFileType: typeof getRfidDataFileType;
261
270
  SecurityFeatureTypeLabel: typeof SecurityFeatureTypeLabel;
@@ -308,6 +317,10 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
308
317
  fillColor?: string;
309
318
  }
310
319
 
320
+ declare interface iRfidCertificateTypeProps {
321
+ children: ReactNode;
322
+ }
323
+
311
324
  declare interface iRfidDataFileTypeProps {
312
325
  children: ReactNode;
313
326
  }
@@ -430,6 +443,8 @@ export declare const ResponseViewer: () => JSX_2.Element | null;
430
443
 
431
444
  export declare const Rfid: () => JSX_2.Element | null;
432
445
 
446
+ declare const RfidCertificateType: FC<iRfidCertificateTypeProps>;
447
+
433
448
  declare const RfidDataFileType: FC<iRfidDataFileTypeProps>;
434
449
 
435
450
  export declare const Scroll: FC<IScrollProps>;