@regulaforensics/ui-components 0.0.11 → 0.0.13
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 +25 -0
- package/dist/index.js +11512 -10978
- package/dist/style.css +1 -1
- package/package.json +16 -16
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>;
|
|
@@ -22,6 +24,8 @@ export declare const Container: IContainer;
|
|
|
22
24
|
|
|
23
25
|
declare const Copy: FC<ICopyProps>;
|
|
24
26
|
|
|
27
|
+
declare const Cross: FC<ICrossProps>;
|
|
28
|
+
|
|
25
29
|
export declare const DocReaderContainer: FC<IDocReaderContainerProps>;
|
|
26
30
|
|
|
27
31
|
declare const Download: FC<IDownloadProps>;
|
|
@@ -30,6 +34,13 @@ declare const Eye: FC<IEyeProps>;
|
|
|
30
34
|
|
|
31
35
|
export declare const Graphics: () => JSX_2.Element;
|
|
32
36
|
|
|
37
|
+
declare interface IAboutProps {
|
|
38
|
+
additionalFields?: Array<{
|
|
39
|
+
name: string;
|
|
40
|
+
value: string | number;
|
|
41
|
+
}>;
|
|
42
|
+
}
|
|
43
|
+
|
|
33
44
|
declare interface IArrowProps extends HTMLAttributes<HTMLSpanElement> {
|
|
34
45
|
size?: number;
|
|
35
46
|
fillColor?: string;
|
|
@@ -55,6 +66,7 @@ export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
55
66
|
name: string | number | JSX_3.Element;
|
|
56
67
|
value?: string | number | JSX_3.Element;
|
|
57
68
|
status?: eCheckResult;
|
|
69
|
+
open?: boolean;
|
|
58
70
|
children: ReactNode;
|
|
59
71
|
shift?: number;
|
|
60
72
|
nested?: boolean;
|
|
@@ -73,6 +85,11 @@ declare interface ICopyProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
73
85
|
fillColor?: string;
|
|
74
86
|
}
|
|
75
87
|
|
|
88
|
+
declare interface ICrossProps extends HTMLAttributes<HTMLSpanElement> {
|
|
89
|
+
size?: number;
|
|
90
|
+
fillColor?: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
76
93
|
declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
|
|
77
94
|
response: ProcessResponse;
|
|
78
95
|
request?: any;
|
|
@@ -111,6 +128,7 @@ declare interface IIcon extends FC {
|
|
|
111
128
|
Zip: typeof Zip;
|
|
112
129
|
Magnifier: typeof Magnifier;
|
|
113
130
|
Download: typeof Download;
|
|
131
|
+
Cross: typeof Cross;
|
|
114
132
|
}
|
|
115
133
|
|
|
116
134
|
declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -118,6 +136,7 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
118
136
|
alt: string;
|
|
119
137
|
download?: boolean;
|
|
120
138
|
magnifier?: boolean;
|
|
139
|
+
viewer?: boolean;
|
|
121
140
|
zoomLevel?: number;
|
|
122
141
|
magnifierWidth?: number;
|
|
123
142
|
magnifierHeight?: number;
|
|
@@ -225,6 +244,10 @@ declare const Menu: FC<IMenuProps>;
|
|
|
225
244
|
|
|
226
245
|
declare const NotVerified: FC<INotVerifiedProps>;
|
|
227
246
|
|
|
247
|
+
export declare const Overall: () => JSX_2.Element | null;
|
|
248
|
+
|
|
249
|
+
export declare const PersonInfo: () => JSX_2.Element | null;
|
|
250
|
+
|
|
228
251
|
export declare const Popover: FC<IPopoverProps>;
|
|
229
252
|
|
|
230
253
|
declare const Question: ForwardRefExoticComponent<IQuestionProps & RefAttributes<HTMLSpanElement>>;
|
|
@@ -256,6 +279,8 @@ export declare const Title: FC<IH1Props>;
|
|
|
256
279
|
|
|
257
280
|
declare const Unknown: FC<IUnknownProps>;
|
|
258
281
|
|
|
282
|
+
export declare const Verifications: () => JSX_2.Element | null;
|
|
283
|
+
|
|
259
284
|
declare const Verified: FC<IVerifiedProps>;
|
|
260
285
|
|
|
261
286
|
declare const Warning: FC<IWarningProps>;
|