@regulaforensics/ui-components 7.6.293-nightly → 7.6.294-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 +7 -2
- package/dist/index.js +3916 -3883
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -329,6 +329,11 @@ declare interface iImageQualityCheckTypeLabelProps {
|
|
|
329
329
|
children: ReactNode;
|
|
330
330
|
}
|
|
331
331
|
|
|
332
|
+
declare interface IInfoProps {
|
|
333
|
+
/** Additional content above the results */
|
|
334
|
+
additionalResultsContent?: ReactNode;
|
|
335
|
+
}
|
|
336
|
+
|
|
332
337
|
declare interface iIRVisibilityStatusProps {
|
|
333
338
|
children: ReactNode;
|
|
334
339
|
}
|
|
@@ -434,7 +439,7 @@ declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
434
439
|
}
|
|
435
440
|
|
|
436
441
|
/** Document images and document processing results. */
|
|
437
|
-
export declare const Info:
|
|
442
|
+
export declare const Info: FC<IInfoProps>;
|
|
438
443
|
|
|
439
444
|
declare interface INotVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
|
|
440
445
|
/** Icon fill color. */
|
|
@@ -576,7 +581,7 @@ declare interface IUnknownProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
576
581
|
size?: number;
|
|
577
582
|
}
|
|
578
583
|
|
|
579
|
-
declare interface IVerificationsProps {
|
|
584
|
+
declare interface IVerificationsProps extends HTMLAttributes<HTMLDivElement> {
|
|
580
585
|
/** Component style type. */
|
|
581
586
|
type?: 'list' | 'collapse';
|
|
582
587
|
}
|