@regulaforensics/ui-components 7.7.412-nightly → 7.7.415-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/core/index.cjs +13 -13
- package/dist/core/index.js +7200 -7154
- package/dist/index.d.ts +28 -3
- package/dist/main/index.cjs +14 -14
- package/dist/main/index.js +7200 -7154
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -137,7 +137,7 @@ declare const getVisualFieldType: (input: any) => string | number;
|
|
|
137
137
|
declare const GraphicFieldType: FC<iGraphicFieldTypeProps>;
|
|
138
138
|
|
|
139
139
|
/** The images contained in the response. */
|
|
140
|
-
export declare const Graphics:
|
|
140
|
+
export declare const Graphics: FC<IGraphicsProps>;
|
|
141
141
|
|
|
142
142
|
declare const GroupDescription: FC<iGroupDescriptionProps>;
|
|
143
143
|
|
|
@@ -260,10 +260,12 @@ declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
|
|
|
260
260
|
}
|
|
261
261
|
|
|
262
262
|
declare interface iDocumentImagesProps {
|
|
263
|
+
imageViewer?: boolean;
|
|
263
264
|
className?: string;
|
|
264
265
|
}
|
|
265
266
|
|
|
266
267
|
declare interface iDocumentTabsProps {
|
|
268
|
+
imageViewer?: boolean;
|
|
267
269
|
className?: string;
|
|
268
270
|
}
|
|
269
271
|
|
|
@@ -304,6 +306,11 @@ declare interface iGraphicFieldTypeProps {
|
|
|
304
306
|
children: ReactNode;
|
|
305
307
|
}
|
|
306
308
|
|
|
309
|
+
declare interface IGraphicsProps {
|
|
310
|
+
/** Full-screen photo display */
|
|
311
|
+
imageViewer?: boolean;
|
|
312
|
+
}
|
|
313
|
+
|
|
307
314
|
declare interface iGroupDescriptionProps {
|
|
308
315
|
children: ReactNode;
|
|
309
316
|
}
|
|
@@ -368,6 +375,11 @@ declare interface iImageQualityCheckTypeLabelProps {
|
|
|
368
375
|
children: ReactNode;
|
|
369
376
|
}
|
|
370
377
|
|
|
378
|
+
declare interface IInfoProps {
|
|
379
|
+
/** Full-screen photo display */
|
|
380
|
+
imageViewer?: boolean;
|
|
381
|
+
}
|
|
382
|
+
|
|
371
383
|
declare interface iIRVisibilityStatusProps {
|
|
372
384
|
children: ReactNode;
|
|
373
385
|
}
|
|
@@ -472,7 +484,7 @@ declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
472
484
|
size?: number;
|
|
473
485
|
}
|
|
474
486
|
|
|
475
|
-
export declare const Info: FC
|
|
487
|
+
export declare const Info: FC<IInfoProps>;
|
|
476
488
|
|
|
477
489
|
declare interface INotVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
|
|
478
490
|
/** Icon fill color. */
|
|
@@ -490,6 +502,8 @@ declare interface IPersonInfoProps {
|
|
|
490
502
|
showPortrait?: boolean;
|
|
491
503
|
/** Component class name. */
|
|
492
504
|
className?: string;
|
|
505
|
+
/** Full-screen photo display */
|
|
506
|
+
imageViewer?: boolean;
|
|
493
507
|
}
|
|
494
508
|
|
|
495
509
|
export declare interface IPopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -503,6 +517,11 @@ declare interface iPortraitComparisonSourceProps {
|
|
|
503
517
|
children: ReactNode;
|
|
504
518
|
}
|
|
505
519
|
|
|
520
|
+
declare interface IPortraitsComparisonProps {
|
|
521
|
+
/** Full-screen photo display */
|
|
522
|
+
imageViewer?: boolean;
|
|
523
|
+
}
|
|
524
|
+
|
|
506
525
|
declare interface IQuestionProps extends HTMLAttributes<HTMLSpanElement> {
|
|
507
526
|
/** Icon fill color. */
|
|
508
527
|
fillColor?: string;
|
|
@@ -586,6 +605,10 @@ declare interface IStatusProps {
|
|
|
586
605
|
name: string;
|
|
587
606
|
value: string | number;
|
|
588
607
|
}>;
|
|
608
|
+
/** Scroll to the selected result. */
|
|
609
|
+
scrollToResult?: boolean;
|
|
610
|
+
/** Full-screen photo display */
|
|
611
|
+
imageViewer?: boolean;
|
|
589
612
|
}
|
|
590
613
|
|
|
591
614
|
export declare interface iTabItem {
|
|
@@ -634,6 +657,8 @@ declare interface IVerificationsProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
634
657
|
type?: 'list' | 'collapse';
|
|
635
658
|
/** Expand the list if there are errors. Only for type === 'collapse'. */
|
|
636
659
|
openOnError?: boolean;
|
|
660
|
+
/** Scroll to the selected result. */
|
|
661
|
+
scrollToResult?: boolean;
|
|
637
662
|
}
|
|
638
663
|
|
|
639
664
|
declare interface IVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
|
|
@@ -702,7 +727,7 @@ export declare const Popover: FC<IPopoverProps>;
|
|
|
702
727
|
declare const PortraitComparisonSource: FC<iPortraitComparisonSourceProps>;
|
|
703
728
|
|
|
704
729
|
/** Portraits comparison. */
|
|
705
|
-
export declare const PortraitsComparison:
|
|
730
|
+
export declare const PortraitsComparison: FC<IPortraitsComparisonProps>;
|
|
706
731
|
|
|
707
732
|
/** Question icon. */
|
|
708
733
|
declare const Question: ForwardRefExoticComponent<IQuestionProps & RefAttributes<HTMLSpanElement>>;
|