@regulaforensics/ui-components 0.0.11 → 0.0.12

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
@@ -8,6 +8,8 @@ import { ProcessResponse } from '@regulaforensics/document-reader-typings';
8
8
  import { ReactNode } from 'react';
9
9
  import { RefAttributes } from 'react';
10
10
 
11
+ export declare const About: FC<IAboutProps>;
12
+
11
13
  declare const Arrow: FC<IArrowProps>;
12
14
 
13
15
  declare const Block: FC<IBlockProps>;
@@ -30,6 +32,13 @@ declare const Eye: FC<IEyeProps>;
30
32
 
31
33
  export declare const Graphics: () => JSX_2.Element;
32
34
 
35
+ declare interface IAboutProps {
36
+ additionalFields?: Array<{
37
+ name: string;
38
+ value: string | number;
39
+ }>;
40
+ }
41
+
33
42
  declare interface IArrowProps extends HTMLAttributes<HTMLSpanElement> {
34
43
  size?: number;
35
44
  fillColor?: string;
@@ -225,6 +234,10 @@ declare const Menu: FC<IMenuProps>;
225
234
 
226
235
  declare const NotVerified: FC<INotVerifiedProps>;
227
236
 
237
+ export declare const Overall: () => JSX_2.Element | null;
238
+
239
+ export declare const PersonInfo: () => JSX_2.Element | null;
240
+
228
241
  export declare const Popover: FC<IPopoverProps>;
229
242
 
230
243
  declare const Question: ForwardRefExoticComponent<IQuestionProps & RefAttributes<HTMLSpanElement>>;
@@ -256,6 +269,8 @@ export declare const Title: FC<IH1Props>;
256
269
 
257
270
  declare const Unknown: FC<IUnknownProps>;
258
271
 
272
+ export declare const Verifications: () => JSX_2.Element | null;
273
+
259
274
  declare const Verified: FC<IVerifiedProps>;
260
275
 
261
276
  declare const Warning: FC<IWarningProps>;