@regulaforensics/ui-components 0.0.19 → 0.0.20
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 +25 -11
- package/dist/index.js +17438 -17225
- package/dist/style.css +1 -1
- package/package.json +13 -13
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
|
|
69
|
+
declare const getRfidCertificateType: (input: any) => string | number;
|
|
70
70
|
|
|
71
|
-
declare const
|
|
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,7 @@ export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
136
138
|
shift?: number;
|
|
137
139
|
nested?: boolean;
|
|
138
140
|
selected?: boolean;
|
|
141
|
+
onOpen?: (isOpen: boolean) => void;
|
|
139
142
|
}
|
|
140
143
|
|
|
141
144
|
export declare const Icon: IIcon;
|
|
@@ -211,6 +214,9 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
211
214
|
zoomLevel?: number;
|
|
212
215
|
magnifierWidth?: number;
|
|
213
216
|
magnifierHeight?: number;
|
|
217
|
+
magnifierImg?: string;
|
|
218
|
+
previewImg?: string;
|
|
219
|
+
downloadImg?: string;
|
|
214
220
|
}
|
|
215
221
|
|
|
216
222
|
declare interface iImageQualityCheckTypeLabelProps {
|
|
@@ -256,6 +262,8 @@ declare interface IMatch extends FC {
|
|
|
256
262
|
getLightsLabel: typeof getLightsLabel;
|
|
257
263
|
OpticalStatusField: typeof OpticalStatusField;
|
|
258
264
|
getOpticalStatusField: typeof getOpticalStatusField;
|
|
265
|
+
RfidCertificateType: typeof RfidCertificateType;
|
|
266
|
+
getRfidCertificateType: typeof getRfidCertificateType;
|
|
259
267
|
RfidDataFileType: typeof RfidDataFileType;
|
|
260
268
|
getRfidDataFileType: typeof getRfidDataFileType;
|
|
261
269
|
SecurityFeatureTypeLabel: typeof SecurityFeatureTypeLabel;
|
|
@@ -308,6 +316,10 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
308
316
|
fillColor?: string;
|
|
309
317
|
}
|
|
310
318
|
|
|
319
|
+
declare interface iRfidCertificateTypeProps {
|
|
320
|
+
children: ReactNode;
|
|
321
|
+
}
|
|
322
|
+
|
|
311
323
|
declare interface iRfidDataFileTypeProps {
|
|
312
324
|
children: ReactNode;
|
|
313
325
|
}
|
|
@@ -430,6 +442,8 @@ export declare const ResponseViewer: () => JSX_2.Element | null;
|
|
|
430
442
|
|
|
431
443
|
export declare const Rfid: () => JSX_2.Element | null;
|
|
432
444
|
|
|
445
|
+
declare const RfidCertificateType: FC<iRfidCertificateTypeProps>;
|
|
446
|
+
|
|
433
447
|
declare const RfidDataFileType: FC<iRfidDataFileTypeProps>;
|
|
434
448
|
|
|
435
449
|
export declare const Scroll: FC<IScrollProps>;
|