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