@regulaforensics/ui-components 9.7.1084-nightly → 9.7.1086-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 +2 -2
- package/dist/core/index.d.ts +12 -0
- package/dist/core/index.js +280 -255
- package/dist/main/index.cjs +2 -2
- package/dist/main/index.d.ts +12 -0
- package/dist/main/index.js +280 -255
- package/package.json +1 -1
package/dist/main/index.d.ts
CHANGED
|
@@ -3477,6 +3477,8 @@ declare interface IDetailsProps {
|
|
|
3477
3477
|
scrollToResult?: boolean;
|
|
3478
3478
|
/** Full-screen photo display */
|
|
3479
3479
|
imageViewer?: boolean;
|
|
3480
|
+
/** Displaying a button for downloading an image. */
|
|
3481
|
+
downloadImage?: boolean;
|
|
3480
3482
|
}
|
|
3481
3483
|
|
|
3482
3484
|
/**
|
|
@@ -3528,6 +3530,7 @@ declare interface iDocumentImagesProps {
|
|
|
3528
3530
|
initialLight?: number;
|
|
3529
3531
|
onPageChanged?: (page: number) => void;
|
|
3530
3532
|
onLightChanged?: (light: number) => void;
|
|
3533
|
+
downloadImage?: boolean;
|
|
3531
3534
|
}
|
|
3532
3535
|
|
|
3533
3536
|
declare interface iDocumentTabsProps {
|
|
@@ -3539,6 +3542,7 @@ declare interface iDocumentTabsProps {
|
|
|
3539
3542
|
onScrollTop?: (position: TTabScrollState) => void;
|
|
3540
3543
|
openFields?: Partial<TOpenFieldsState>;
|
|
3541
3544
|
onOpenFieldsChange?: (fields: TOpenFieldsState) => void;
|
|
3545
|
+
downloadImage?: boolean;
|
|
3542
3546
|
}
|
|
3543
3547
|
|
|
3544
3548
|
declare interface iDocumentTypeProps {
|
|
@@ -3650,6 +3654,8 @@ declare interface iGraphicFieldTypeProps {
|
|
|
3650
3654
|
declare interface IGraphicsProps {
|
|
3651
3655
|
/** Full-screen photo display */
|
|
3652
3656
|
imageViewer?: boolean;
|
|
3657
|
+
/** Displaying a button for downloading an image. */
|
|
3658
|
+
downloadImage?: boolean;
|
|
3653
3659
|
}
|
|
3654
3660
|
|
|
3655
3661
|
declare interface iGroupDescriptionProps {
|
|
@@ -3778,6 +3784,8 @@ export declare interface iImagesResultContainer extends aContainer, ImagesItem {
|
|
|
3778
3784
|
declare interface IInfoProps {
|
|
3779
3785
|
/** Full-screen photo display */
|
|
3780
3786
|
imageViewer?: boolean;
|
|
3787
|
+
/** Displaying a button for downloading an image. */
|
|
3788
|
+
downloadImage?: boolean;
|
|
3781
3789
|
}
|
|
3782
3790
|
|
|
3783
3791
|
declare interface iIRVisibilityStatusProps {
|
|
@@ -4376,6 +4384,8 @@ declare interface IPersonInfoProps {
|
|
|
4376
4384
|
className?: string;
|
|
4377
4385
|
/** Full-screen photo display */
|
|
4378
4386
|
imageViewer?: boolean;
|
|
4387
|
+
/** Displaying a button for downloading an image. */
|
|
4388
|
+
downloadImage?: boolean;
|
|
4379
4389
|
}
|
|
4380
4390
|
|
|
4381
4391
|
/**
|
|
@@ -4403,6 +4413,8 @@ declare interface iPortraitComparisonSourceProps {
|
|
|
4403
4413
|
declare interface IPortraitsComparisonProps {
|
|
4404
4414
|
/** Full-screen photo display */
|
|
4405
4415
|
imageViewer?: boolean;
|
|
4416
|
+
/** Displaying a button for downloading an image. */
|
|
4417
|
+
downloadImage?: boolean;
|
|
4406
4418
|
}
|
|
4407
4419
|
|
|
4408
4420
|
declare interface IQuestionProps extends HTMLAttributes<HTMLSpanElement> {
|