@regulaforensics/ui-components 7.5.179-nightly → 7.5.187-nightly

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
@@ -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';
@@ -71,6 +72,10 @@ declare const getOpticalStatusField: (input: any) => string;
71
72
 
72
73
  declare const getPortraitComparisonSource: (input: any) => string | number;
73
74
 
75
+ declare const getRfidApplicationDescription: (input: eRfidApplicationType) => string;
76
+
77
+ declare const getRfidApplicationType: (input: eRfidApplicationType) => string | eRfidApplicationType;
78
+
74
79
  declare const getRfidCertificateType: (input: any) => string | number;
75
80
 
76
81
  declare const getRfidDataFileType: (input: any) => string | number;
@@ -321,6 +326,10 @@ declare interface IMatch extends FC {
321
326
  getAuthenticityTextCheckReference: typeof getAuthenticityTextCheckReference;
322
327
  GroupDescription: typeof GroupDescription;
323
328
  getGroupDescription: typeof getGroupDescription;
329
+ RfidApplicationType: typeof RfidApplicationType;
330
+ getRfidApplicationType: typeof getRfidApplicationType;
331
+ RfidApplicationDescription: typeof RfidApplicationDescription;
332
+ getRfidApplicationDescription: typeof getRfidApplicationDescription;
324
333
  }
325
334
 
326
335
  declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
@@ -362,6 +371,14 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
362
371
  fillColor?: string;
363
372
  }
364
373
 
374
+ declare interface iRfidApplicationDescriptionProps {
375
+ children: eRfidApplicationType;
376
+ }
377
+
378
+ declare interface iRfidApplicationTypeProps {
379
+ children: eRfidApplicationType;
380
+ }
381
+
365
382
  declare interface iRfidCertificateTypeProps {
366
383
  children: ReactNode;
367
384
  }
@@ -495,6 +512,10 @@ export declare const ResponseViewer: () => JSX_2.Element | null;
495
512
 
496
513
  export declare const Rfid: () => JSX_2.Element | null;
497
514
 
515
+ declare const RfidApplicationDescription: FC<iRfidApplicationDescriptionProps>;
516
+
517
+ declare const RfidApplicationType: FC<iRfidApplicationTypeProps>;
518
+
498
519
  declare const RfidCertificateType: FC<iRfidCertificateTypeProps>;
499
520
 
500
521
  declare const RfidDataFileType: FC<iRfidDataFileTypeProps>;