@regulaforensics/ui-components 7.4.107 → 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 +26 -11
- package/dist/index.js +17040 -17183
- package/dist/style.css +1 -1
- package/package.json +22 -20
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import { eCheckResult } from '@regulaforensics/document-reader-typings';
|
|
2
|
+
import { eRfidApplicationType } from '@regulaforensics/document-reader-typings';
|
|
2
3
|
import { FC } from 'react';
|
|
3
4
|
import { ForwardRefExoticComponent } from 'react';
|
|
4
5
|
import { HTMLAttributes } from 'react';
|
|
@@ -10,8 +11,6 @@ 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;
|
|
@@ -75,6 +72,10 @@ declare const getOpticalStatusField: (input: any) => string;
|
|
|
75
72
|
|
|
76
73
|
declare const getPortraitComparisonSource: (input: any) => string | number;
|
|
77
74
|
|
|
75
|
+
declare const getRfidApplicationDescription: (input: eRfidApplicationType) => string;
|
|
76
|
+
|
|
77
|
+
declare const getRfidApplicationType: (input: eRfidApplicationType) => string | eRfidApplicationType;
|
|
78
|
+
|
|
78
79
|
declare const getRfidCertificateType: (input: any) => string | number;
|
|
79
80
|
|
|
80
81
|
declare const getRfidDataFileType: (input: any) => string | number;
|
|
@@ -111,10 +112,6 @@ declare interface iAuthenticityLabelProps {
|
|
|
111
112
|
children: ReactNode;
|
|
112
113
|
}
|
|
113
114
|
|
|
114
|
-
declare interface iAuthenticityProps {
|
|
115
|
-
children: ReactNode;
|
|
116
|
-
}
|
|
117
|
-
|
|
118
115
|
declare interface iAuthenticityTextCheckReferenceProps {
|
|
119
116
|
children: ReactNode;
|
|
120
117
|
}
|
|
@@ -291,8 +288,6 @@ declare interface IMagnifierProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
291
288
|
}
|
|
292
289
|
|
|
293
290
|
declare interface IMatch extends FC {
|
|
294
|
-
Authenticity: typeof Authenticity;
|
|
295
|
-
getAuthenticity: typeof getAuthenticity;
|
|
296
291
|
AuthenticityLabel: typeof AuthenticityLabel;
|
|
297
292
|
getAuthenticityLabel: typeof getAuthenticityLabel;
|
|
298
293
|
CheckDiagnose: typeof CheckDiagnose;
|
|
@@ -331,6 +326,10 @@ declare interface IMatch extends FC {
|
|
|
331
326
|
getAuthenticityTextCheckReference: typeof getAuthenticityTextCheckReference;
|
|
332
327
|
GroupDescription: typeof GroupDescription;
|
|
333
328
|
getGroupDescription: typeof getGroupDescription;
|
|
329
|
+
RfidApplicationType: typeof RfidApplicationType;
|
|
330
|
+
getRfidApplicationType: typeof getRfidApplicationType;
|
|
331
|
+
RfidApplicationDescription: typeof RfidApplicationDescription;
|
|
332
|
+
getRfidApplicationDescription: typeof getRfidApplicationDescription;
|
|
334
333
|
}
|
|
335
334
|
|
|
336
335
|
declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
@@ -372,6 +371,18 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
372
371
|
fillColor?: string;
|
|
373
372
|
}
|
|
374
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
|
+
|
|
375
386
|
declare interface iRfidCertificateTypeProps {
|
|
376
387
|
children: ReactNode;
|
|
377
388
|
}
|
|
@@ -499,12 +510,16 @@ declare const Question: ForwardRefExoticComponent<IQuestionProps & RefAttributes
|
|
|
499
510
|
|
|
500
511
|
declare const Refresh: FC<IRefreshProps>;
|
|
501
512
|
|
|
502
|
-
export declare const RequestViewer:
|
|
513
|
+
export declare const RequestViewer: FC<IRequestViewerProps>;
|
|
503
514
|
|
|
504
515
|
export declare const ResponseViewer: () => JSX_2.Element | null;
|
|
505
516
|
|
|
506
517
|
export declare const Rfid: () => JSX_2.Element | null;
|
|
507
518
|
|
|
519
|
+
declare const RfidApplicationDescription: FC<iRfidApplicationDescriptionProps>;
|
|
520
|
+
|
|
521
|
+
declare const RfidApplicationType: FC<iRfidApplicationTypeProps>;
|
|
522
|
+
|
|
508
523
|
declare const RfidCertificateType: FC<iRfidCertificateTypeProps>;
|
|
509
524
|
|
|
510
525
|
declare const RfidDataFileType: FC<iRfidDataFileTypeProps>;
|