@regulaforensics/ui-components 0.0.15 → 0.0.17
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 +138 -3
- package/dist/index.js +14668 -12833
- package/dist/style.css +1 -1
- package/package.json +9 -9
package/dist/index.d.ts
CHANGED
|
@@ -12,10 +12,18 @@ export declare const About: FC<IAboutProps>;
|
|
|
12
12
|
|
|
13
13
|
declare const Arrow: FC<IArrowProps>;
|
|
14
14
|
|
|
15
|
+
declare const Authenticity: FC<iAuthenticityProps>;
|
|
16
|
+
|
|
17
|
+
declare const AuthenticityLabel: FC<iAuthenticityLabelProps>;
|
|
18
|
+
|
|
15
19
|
declare const Block: FC<IBlockProps>;
|
|
16
20
|
|
|
17
21
|
declare const Brackets: FC<IBracketsProps>;
|
|
18
22
|
|
|
23
|
+
declare const CheckDiagnose: FC<iCheckDiagnoseProps>;
|
|
24
|
+
|
|
25
|
+
declare const CheckResultVerification: FC<iCheckResultVerificationProps>;
|
|
26
|
+
|
|
19
27
|
declare const ClosedEye: FC<IClosedEyeProps>;
|
|
20
28
|
|
|
21
29
|
export declare const Collapse: FC<ICollapseProps>;
|
|
@@ -32,6 +40,36 @@ declare const Download: FC<IDownloadProps>;
|
|
|
32
40
|
|
|
33
41
|
declare const Eye: FC<IEyeProps>;
|
|
34
42
|
|
|
43
|
+
declare const FieldName: FC<iFieldNameProps>;
|
|
44
|
+
|
|
45
|
+
declare const getAuthenticity: (input: any) => string;
|
|
46
|
+
|
|
47
|
+
declare const getAuthenticityLabel: (input: any) => string;
|
|
48
|
+
|
|
49
|
+
declare const getCheckDiagnose: (input: any) => string;
|
|
50
|
+
|
|
51
|
+
declare const getCheckResultVerification: (input: any) => string;
|
|
52
|
+
|
|
53
|
+
declare const getFieldName: (input: any) => string;
|
|
54
|
+
|
|
55
|
+
declare const getImageQualityCheckTypeLabel: (input: any) => string;
|
|
56
|
+
|
|
57
|
+
declare const getLightsLabel: (input: any) => string;
|
|
58
|
+
|
|
59
|
+
declare const getOpticalStatusField: (input: any) => string;
|
|
60
|
+
|
|
61
|
+
declare const getPortraitComparisonSource: (input: any) => string;
|
|
62
|
+
|
|
63
|
+
declare const getRfidDataFileType: (input: any) => string;
|
|
64
|
+
|
|
65
|
+
declare const getSecurityFeatureTypeLabel: (input: any) => string;
|
|
66
|
+
|
|
67
|
+
declare const getSex: (input: any) => string;
|
|
68
|
+
|
|
69
|
+
declare const getSource: (input: any) => string;
|
|
70
|
+
|
|
71
|
+
declare const getSourceDescription: (input: any) => string;
|
|
72
|
+
|
|
35
73
|
export declare const Graphics: () => JSX_2.Element;
|
|
36
74
|
|
|
37
75
|
declare interface IAboutProps {
|
|
@@ -46,6 +84,14 @@ declare interface IArrowProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
46
84
|
fillColor?: string;
|
|
47
85
|
}
|
|
48
86
|
|
|
87
|
+
declare interface iAuthenticityLabelProps {
|
|
88
|
+
children: ReactNode;
|
|
89
|
+
}
|
|
90
|
+
|
|
91
|
+
declare interface iAuthenticityProps {
|
|
92
|
+
children: ReactNode;
|
|
93
|
+
}
|
|
94
|
+
|
|
49
95
|
declare interface IBlockProps extends HTMLAttributes<HTMLDivElement> {
|
|
50
96
|
width?: number | string;
|
|
51
97
|
height?: number | string;
|
|
@@ -57,13 +103,21 @@ declare interface IBracketsProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
57
103
|
fillColor?: string;
|
|
58
104
|
}
|
|
59
105
|
|
|
106
|
+
declare interface iCheckDiagnoseProps {
|
|
107
|
+
children: ReactNode;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
declare interface iCheckResultVerificationProps {
|
|
111
|
+
children: ReactNode;
|
|
112
|
+
}
|
|
113
|
+
|
|
60
114
|
declare interface IClosedEyeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
61
115
|
size?: number;
|
|
62
116
|
fillColor?: string;
|
|
63
117
|
}
|
|
64
118
|
|
|
65
119
|
export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
66
|
-
name:
|
|
120
|
+
name: ReactNode;
|
|
67
121
|
collapse?: boolean;
|
|
68
122
|
value?: string | number | JSX_3.Element;
|
|
69
123
|
status?: eCheckResult;
|
|
@@ -108,6 +162,10 @@ declare interface IEyeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
108
162
|
fillColor?: string;
|
|
109
163
|
}
|
|
110
164
|
|
|
165
|
+
declare interface iFieldNameProps {
|
|
166
|
+
children: ReactNode;
|
|
167
|
+
}
|
|
168
|
+
|
|
111
169
|
export declare interface IH1Props extends HTMLAttributes<HTMLTitleElement> {
|
|
112
170
|
textAlign?: 'center' | 'right' | 'left';
|
|
113
171
|
uppercase?: boolean;
|
|
@@ -145,20 +203,57 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
145
203
|
magnifierHeight?: number;
|
|
146
204
|
}
|
|
147
205
|
|
|
206
|
+
declare interface iImageQualityCheckTypeLabelProps {
|
|
207
|
+
children: ReactNode;
|
|
208
|
+
}
|
|
209
|
+
|
|
148
210
|
declare interface IJsonViewerProps {
|
|
149
211
|
data: any;
|
|
150
212
|
}
|
|
151
213
|
|
|
214
|
+
declare interface iLightsLabelProps {
|
|
215
|
+
children: ReactNode;
|
|
216
|
+
}
|
|
217
|
+
|
|
152
218
|
declare const Image_2: FC<IImageProps>;
|
|
153
219
|
export { Image_2 as Image }
|
|
154
220
|
|
|
221
|
+
declare const ImageQualityCheckTypeLabel: FC<iImageQualityCheckTypeLabelProps>;
|
|
222
|
+
|
|
155
223
|
declare interface IMagnifierProps extends HTMLAttributes<HTMLSpanElement> {
|
|
156
224
|
size?: number;
|
|
157
225
|
fillColor?: string;
|
|
158
226
|
}
|
|
159
227
|
|
|
160
228
|
declare interface IMatch extends FC {
|
|
229
|
+
Authenticity: typeof Authenticity;
|
|
230
|
+
getAuthenticity: typeof getAuthenticity;
|
|
231
|
+
AuthenticityLabel: typeof AuthenticityLabel;
|
|
232
|
+
getAuthenticityLabel: typeof getAuthenticityLabel;
|
|
233
|
+
CheckDiagnose: typeof CheckDiagnose;
|
|
234
|
+
getCheckDiagnose: typeof getCheckDiagnose;
|
|
235
|
+
CheckResultVerification: typeof CheckResultVerification;
|
|
236
|
+
getCheckResultVerification: typeof getCheckResultVerification;
|
|
237
|
+
FieldName: typeof FieldName;
|
|
238
|
+
getFieldName: typeof getFieldName;
|
|
239
|
+
ImageQualityCheckTypeLabel: typeof ImageQualityCheckTypeLabel;
|
|
240
|
+
getImageQualityCheckTypeLabel: typeof getImageQualityCheckTypeLabel;
|
|
241
|
+
LightsLabel: typeof LightsLabel;
|
|
242
|
+
getLightsLabel: typeof getLightsLabel;
|
|
161
243
|
OpticalStatusField: typeof OpticalStatusField;
|
|
244
|
+
getOpticalStatusField: typeof getOpticalStatusField;
|
|
245
|
+
RfidDataFileType: typeof RfidDataFileType;
|
|
246
|
+
getRfidDataFileType: typeof getRfidDataFileType;
|
|
247
|
+
SecurityFeatureTypeLabel: typeof SecurityFeatureTypeLabel;
|
|
248
|
+
getSecurityFeatureTypeLabel: typeof getSecurityFeatureTypeLabel;
|
|
249
|
+
Sex: typeof Sex;
|
|
250
|
+
getSex: typeof getSex;
|
|
251
|
+
Source: typeof Source;
|
|
252
|
+
getSource: typeof getSource;
|
|
253
|
+
PortraitComparisonSource: typeof PortraitComparisonSource;
|
|
254
|
+
getPortraitComparisonSource: typeof getPortraitComparisonSource;
|
|
255
|
+
SourceDescription: typeof SourceDescription;
|
|
256
|
+
getSourceDescription: typeof getSourceDescription;
|
|
162
257
|
}
|
|
163
258
|
|
|
164
259
|
declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
@@ -173,7 +268,7 @@ declare interface INotVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
173
268
|
fillColor?: string;
|
|
174
269
|
}
|
|
175
270
|
|
|
176
|
-
declare interface
|
|
271
|
+
declare interface iOpticalStatusFieldProps {
|
|
177
272
|
children: ReactNode;
|
|
178
273
|
}
|
|
179
274
|
|
|
@@ -181,6 +276,10 @@ export declare interface IPopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
181
276
|
modal: ReactNode;
|
|
182
277
|
}
|
|
183
278
|
|
|
279
|
+
declare interface iPortraitComparisonSourceProps {
|
|
280
|
+
children: ReactNode;
|
|
281
|
+
}
|
|
282
|
+
|
|
184
283
|
declare interface IQuestionProps extends HTMLAttributes<HTMLSpanElement> {
|
|
185
284
|
size?: number;
|
|
186
285
|
fillColor?: string;
|
|
@@ -191,10 +290,30 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
191
290
|
fillColor?: string;
|
|
192
291
|
}
|
|
193
292
|
|
|
293
|
+
declare interface iRfidDataFileTypeProps {
|
|
294
|
+
children: ReactNode;
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
declare interface iSecurityFeatureTypeLabelProps {
|
|
298
|
+
children: ReactNode;
|
|
299
|
+
}
|
|
300
|
+
|
|
301
|
+
declare interface iSexProps {
|
|
302
|
+
children: ReactNode;
|
|
303
|
+
}
|
|
304
|
+
|
|
194
305
|
export declare interface ISkeleton extends FC {
|
|
195
306
|
Block: typeof Block;
|
|
196
307
|
}
|
|
197
308
|
|
|
309
|
+
declare interface iSourceDescriptionProps {
|
|
310
|
+
children: ReactNode;
|
|
311
|
+
}
|
|
312
|
+
|
|
313
|
+
declare interface iSourceProps {
|
|
314
|
+
children: ReactNode;
|
|
315
|
+
}
|
|
316
|
+
|
|
198
317
|
declare interface IStatusProps {
|
|
199
318
|
additionalFields?: Array<{
|
|
200
319
|
name: string;
|
|
@@ -247,6 +366,8 @@ declare interface IZipProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
247
366
|
|
|
248
367
|
export declare const JsonViewer: FC<IJsonViewerProps>;
|
|
249
368
|
|
|
369
|
+
declare const LightsLabel: FC<iLightsLabelProps>;
|
|
370
|
+
|
|
250
371
|
export declare const Logs: () => JSX_2.Element | null;
|
|
251
372
|
|
|
252
373
|
declare const Magnifier: FC<IMagnifierProps>;
|
|
@@ -257,7 +378,7 @@ declare const Menu: FC<IMenuProps>;
|
|
|
257
378
|
|
|
258
379
|
declare const NotVerified: FC<INotVerifiedProps>;
|
|
259
380
|
|
|
260
|
-
declare const OpticalStatusField: FC<
|
|
381
|
+
declare const OpticalStatusField: FC<iOpticalStatusFieldProps>;
|
|
261
382
|
|
|
262
383
|
export declare const Overall: () => JSX_2.Element | null;
|
|
263
384
|
|
|
@@ -265,6 +386,10 @@ export declare const PersonInfo: () => JSX_2.Element | null;
|
|
|
265
386
|
|
|
266
387
|
export declare const Popover: FC<IPopoverProps>;
|
|
267
388
|
|
|
389
|
+
declare const PortraitComparisonSource: FC<iPortraitComparisonSourceProps>;
|
|
390
|
+
|
|
391
|
+
export declare const PortraitsComparison: () => JSX_2.Element | null;
|
|
392
|
+
|
|
268
393
|
declare const Question: ForwardRefExoticComponent<IQuestionProps & RefAttributes<HTMLSpanElement>>;
|
|
269
394
|
|
|
270
395
|
declare const Refresh: FC<IRefreshProps>;
|
|
@@ -275,10 +400,20 @@ export declare const ResponseViewer: () => JSX_2.Element | null;
|
|
|
275
400
|
|
|
276
401
|
export declare const Rfid: () => JSX_2.Element | null;
|
|
277
402
|
|
|
403
|
+
declare const RfidDataFileType: FC<iRfidDataFileTypeProps>;
|
|
404
|
+
|
|
405
|
+
declare const SecurityFeatureTypeLabel: FC<iSecurityFeatureTypeLabelProps>;
|
|
406
|
+
|
|
407
|
+
declare const Sex: FC<iSexProps>;
|
|
408
|
+
|
|
278
409
|
declare type Size = '20x135' | '18x135' | '16x100' | '14x135' | '12x160' | '12x140' | '15x135' | '10x140' | '14x115';
|
|
279
410
|
|
|
280
411
|
export declare const Skeleton: ISkeleton;
|
|
281
412
|
|
|
413
|
+
declare const Source: FC<iSourceProps>;
|
|
414
|
+
|
|
415
|
+
declare const SourceDescription: FC<iSourceDescriptionProps>;
|
|
416
|
+
|
|
282
417
|
export declare const Status: FC<IStatusProps>;
|
|
283
418
|
|
|
284
419
|
export declare const StatusLoader: () => JSX_2.Element;
|