@regulaforensics/ui-components 7.4.97-rc → 7.4.216
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 +55 -14
- package/dist/index.js +26300 -36304
- package/dist/style.css +9 -1
- package/package.json +26 -23
package/dist/index.d.ts
CHANGED
|
@@ -1,17 +1,16 @@
|
|
|
1
1
|
import { eCheckResult } from '@regulaforensics/document-reader-typings';
|
|
2
|
+
import { eRfidApplicationType } from '@regulaforensics/document-reader-typings';
|
|
2
3
|
import { FC } from 'react';
|
|
3
|
-
import
|
|
4
|
+
import { ForwardRefExoticComponent } from 'react';
|
|
4
5
|
import { HTMLAttributes } from 'react';
|
|
5
|
-
import
|
|
6
|
+
import { JSX as JSX_2 } from 'react/jsx-runtime';
|
|
6
7
|
import { ReactNode } from 'react';
|
|
7
|
-
import
|
|
8
|
+
import { RefAttributes } from 'react';
|
|
8
9
|
|
|
9
10
|
export declare const About: FC<IAboutProps>;
|
|
10
11
|
|
|
11
12
|
declare const Arrow: FC<IArrowProps>;
|
|
12
13
|
|
|
13
|
-
declare const Authenticity: FC<iAuthenticityProps>;
|
|
14
|
-
|
|
15
14
|
declare const AuthenticityLabel: FC<iAuthenticityLabelProps>;
|
|
16
15
|
|
|
17
16
|
declare const AuthenticityTextCheckReference: FC<iAuthenticityTextCheckReferenceProps>;
|
|
@@ -49,8 +48,6 @@ export declare enum eInfoTabID {
|
|
|
49
48
|
|
|
50
49
|
declare const Eye: FC<IEyeProps>;
|
|
51
50
|
|
|
52
|
-
declare const getAuthenticity: (input: any) => string | number;
|
|
53
|
-
|
|
54
51
|
declare const getAuthenticityLabel: (input: any) => string | number;
|
|
55
52
|
|
|
56
53
|
declare const getAuthenticityTextCheckReference: (input: any) => string | number;
|
|
@@ -61,6 +58,8 @@ declare const getCheckResultVerification: (input: any) => string;
|
|
|
61
58
|
|
|
62
59
|
declare const getGraphicFieldType: (input: any) => string | number;
|
|
63
60
|
|
|
61
|
+
declare const getGroupDescription: (input: any) => string;
|
|
62
|
+
|
|
64
63
|
declare const getImageQualityCheckTypeLabel: (input: any) => string | number;
|
|
65
64
|
|
|
66
65
|
declare const getIRVisibilityStatus: (input: any) => string | number;
|
|
@@ -73,6 +72,10 @@ declare const getOpticalStatusField: (input: any) => string;
|
|
|
73
72
|
|
|
74
73
|
declare const getPortraitComparisonSource: (input: any) => string | number;
|
|
75
74
|
|
|
75
|
+
declare const getRfidApplicationDescription: (input: eRfidApplicationType) => string;
|
|
76
|
+
|
|
77
|
+
declare const getRfidApplicationType: (input: eRfidApplicationType) => string | eRfidApplicationType;
|
|
78
|
+
|
|
76
79
|
declare const getRfidCertificateType: (input: any) => string | number;
|
|
77
80
|
|
|
78
81
|
declare const getRfidDataFileType: (input: any) => string | number;
|
|
@@ -91,6 +94,8 @@ declare const GraphicFieldType: FC<iGraphicFieldTypeProps>;
|
|
|
91
94
|
|
|
92
95
|
export declare const Graphics: () => JSX_2.Element | null;
|
|
93
96
|
|
|
97
|
+
declare const GroupDescription: FC<iGroupDescriptionProps>;
|
|
98
|
+
|
|
94
99
|
declare interface IAboutProps {
|
|
95
100
|
additionalFields?: Array<{
|
|
96
101
|
name: string;
|
|
@@ -107,10 +112,6 @@ declare interface iAuthenticityLabelProps {
|
|
|
107
112
|
children: ReactNode;
|
|
108
113
|
}
|
|
109
114
|
|
|
110
|
-
declare interface iAuthenticityProps {
|
|
111
|
-
children: ReactNode;
|
|
112
|
-
}
|
|
113
|
-
|
|
114
115
|
declare interface iAuthenticityTextCheckReferenceProps {
|
|
115
116
|
children: ReactNode;
|
|
116
117
|
}
|
|
@@ -197,6 +198,10 @@ declare interface iGraphicFieldTypeProps {
|
|
|
197
198
|
children: ReactNode;
|
|
198
199
|
}
|
|
199
200
|
|
|
201
|
+
declare interface iGroupDescriptionProps {
|
|
202
|
+
children: ReactNode;
|
|
203
|
+
}
|
|
204
|
+
|
|
200
205
|
export declare interface IH1Props extends HTMLAttributes<HTMLTitleElement> {
|
|
201
206
|
textAlign?: 'center' | 'right' | 'left';
|
|
202
207
|
uppercase?: boolean;
|
|
@@ -221,6 +226,7 @@ declare interface IIcon extends FC {
|
|
|
221
226
|
Magnifier: typeof Magnifier;
|
|
222
227
|
Download: typeof Download;
|
|
223
228
|
Cross: typeof Cross;
|
|
229
|
+
LinkArrow: typeof LinkArrow;
|
|
224
230
|
}
|
|
225
231
|
|
|
226
232
|
declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -236,6 +242,7 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
236
242
|
magnifierImg?: string;
|
|
237
243
|
previewImg?: string;
|
|
238
244
|
downloadImg?: string;
|
|
245
|
+
magnifierImgBorderRadius?: number;
|
|
239
246
|
}
|
|
240
247
|
|
|
241
248
|
declare interface iImageQualityCheckTypeLabelProps {
|
|
@@ -258,6 +265,16 @@ declare interface iLightsLabelProps {
|
|
|
258
265
|
children: ReactNode;
|
|
259
266
|
}
|
|
260
267
|
|
|
268
|
+
declare interface ILinkArrowProps extends HTMLAttributes<HTMLSpanElement> {
|
|
269
|
+
size?: number;
|
|
270
|
+
fillColor?: string;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
declare interface ILinkProps extends HTMLAttributes<HTMLDivElement> {
|
|
274
|
+
href: string;
|
|
275
|
+
target?: string;
|
|
276
|
+
}
|
|
277
|
+
|
|
261
278
|
declare const Image_2: ForwardRefExoticComponent<IImageProps & RefAttributes<HTMLDivElement>>;
|
|
262
279
|
export { Image_2 as Image }
|
|
263
280
|
|
|
@@ -271,8 +288,6 @@ declare interface IMagnifierProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
271
288
|
}
|
|
272
289
|
|
|
273
290
|
declare interface IMatch extends FC {
|
|
274
|
-
Authenticity: typeof Authenticity;
|
|
275
|
-
getAuthenticity: typeof getAuthenticity;
|
|
276
291
|
AuthenticityLabel: typeof AuthenticityLabel;
|
|
277
292
|
getAuthenticityLabel: typeof getAuthenticityLabel;
|
|
278
293
|
CheckDiagnose: typeof CheckDiagnose;
|
|
@@ -309,6 +324,12 @@ declare interface IMatch extends FC {
|
|
|
309
324
|
getIRVisibilityStatus: typeof getIRVisibilityStatus;
|
|
310
325
|
AuthenticityTextCheckReference: typeof AuthenticityTextCheckReference;
|
|
311
326
|
getAuthenticityTextCheckReference: typeof getAuthenticityTextCheckReference;
|
|
327
|
+
GroupDescription: typeof GroupDescription;
|
|
328
|
+
getGroupDescription: typeof getGroupDescription;
|
|
329
|
+
RfidApplicationType: typeof RfidApplicationType;
|
|
330
|
+
getRfidApplicationType: typeof getRfidApplicationType;
|
|
331
|
+
RfidApplicationDescription: typeof RfidApplicationDescription;
|
|
332
|
+
getRfidApplicationDescription: typeof getRfidApplicationDescription;
|
|
312
333
|
}
|
|
313
334
|
|
|
314
335
|
declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
@@ -350,6 +371,18 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
350
371
|
fillColor?: string;
|
|
351
372
|
}
|
|
352
373
|
|
|
374
|
+
declare interface IRequestViewerProps {
|
|
375
|
+
title?: string;
|
|
376
|
+
}
|
|
377
|
+
|
|
378
|
+
declare interface iRfidApplicationDescriptionProps {
|
|
379
|
+
children: eRfidApplicationType;
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
declare interface iRfidApplicationTypeProps {
|
|
383
|
+
children: eRfidApplicationType;
|
|
384
|
+
}
|
|
385
|
+
|
|
353
386
|
declare interface iRfidCertificateTypeProps {
|
|
354
387
|
children: ReactNode;
|
|
355
388
|
}
|
|
@@ -447,6 +480,10 @@ declare const LCID: FC<iLcidProps>;
|
|
|
447
480
|
|
|
448
481
|
declare const LightsLabel: FC<iLightsLabelProps>;
|
|
449
482
|
|
|
483
|
+
export declare const Link: FC<ILinkProps>;
|
|
484
|
+
|
|
485
|
+
declare const LinkArrow: FC<ILinkArrowProps>;
|
|
486
|
+
|
|
450
487
|
export declare const Logs: () => JSX_2.Element | null;
|
|
451
488
|
|
|
452
489
|
declare const Magnifier: FC<IMagnifierProps>;
|
|
@@ -473,12 +510,16 @@ declare const Question: ForwardRefExoticComponent<IQuestionProps & RefAttributes
|
|
|
473
510
|
|
|
474
511
|
declare const Refresh: FC<IRefreshProps>;
|
|
475
512
|
|
|
476
|
-
export declare const RequestViewer:
|
|
513
|
+
export declare const RequestViewer: FC<IRequestViewerProps>;
|
|
477
514
|
|
|
478
515
|
export declare const ResponseViewer: () => JSX_2.Element | null;
|
|
479
516
|
|
|
480
517
|
export declare const Rfid: () => JSX_2.Element | null;
|
|
481
518
|
|
|
519
|
+
declare const RfidApplicationDescription: FC<iRfidApplicationDescriptionProps>;
|
|
520
|
+
|
|
521
|
+
declare const RfidApplicationType: FC<iRfidApplicationTypeProps>;
|
|
522
|
+
|
|
482
523
|
declare const RfidCertificateType: FC<iRfidCertificateTypeProps>;
|
|
483
524
|
|
|
484
525
|
declare const RfidDataFileType: FC<iRfidDataFileTypeProps>;
|