@regulaforensics/ui-components 0.0.12 → 0.0.14
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 +16939 -13184
- package/dist/style.css +1 -1
- package/package.json +26 -18
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export declare const Container: IContainer;
|
|
|
24
24
|
|
|
25
25
|
declare const Copy: FC<ICopyProps>;
|
|
26
26
|
|
|
27
|
+
declare const Cross: FC<ICrossProps>;
|
|
28
|
+
|
|
27
29
|
export declare const DocReaderContainer: FC<IDocReaderContainerProps>;
|
|
28
30
|
|
|
29
31
|
declare const Download: FC<IDownloadProps>;
|
|
@@ -62,11 +64,14 @@ declare interface IClosedEyeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
62
64
|
|
|
63
65
|
export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
64
66
|
name: string | number | JSX_3.Element;
|
|
67
|
+
collapse?: boolean;
|
|
65
68
|
value?: string | number | JSX_3.Element;
|
|
66
69
|
status?: eCheckResult;
|
|
70
|
+
open?: boolean;
|
|
67
71
|
children: ReactNode;
|
|
68
72
|
shift?: number;
|
|
69
73
|
nested?: boolean;
|
|
74
|
+
selected?: boolean;
|
|
70
75
|
}
|
|
71
76
|
|
|
72
77
|
export declare const Icon: IIcon;
|
|
@@ -82,9 +87,15 @@ declare interface ICopyProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
82
87
|
fillColor?: string;
|
|
83
88
|
}
|
|
84
89
|
|
|
90
|
+
declare interface ICrossProps extends HTMLAttributes<HTMLSpanElement> {
|
|
91
|
+
size?: number;
|
|
92
|
+
fillColor?: string;
|
|
93
|
+
}
|
|
94
|
+
|
|
85
95
|
declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
|
|
86
96
|
response: ProcessResponse;
|
|
87
97
|
request?: any;
|
|
98
|
+
language?: string;
|
|
88
99
|
}
|
|
89
100
|
|
|
90
101
|
declare interface IDownloadProps extends HTMLAttributes<HTMLSpanElement> {
|
|
@@ -120,6 +131,7 @@ declare interface IIcon extends FC {
|
|
|
120
131
|
Zip: typeof Zip;
|
|
121
132
|
Magnifier: typeof Magnifier;
|
|
122
133
|
Download: typeof Download;
|
|
134
|
+
Cross: typeof Cross;
|
|
123
135
|
}
|
|
124
136
|
|
|
125
137
|
declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -127,6 +139,7 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
127
139
|
alt: string;
|
|
128
140
|
download?: boolean;
|
|
129
141
|
magnifier?: boolean;
|
|
142
|
+
viewer?: boolean;
|
|
130
143
|
zoomLevel?: number;
|
|
131
144
|
magnifierWidth?: number;
|
|
132
145
|
magnifierHeight?: number;
|
|
@@ -144,6 +157,10 @@ declare interface IMagnifierProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
144
157
|
fillColor?: string;
|
|
145
158
|
}
|
|
146
159
|
|
|
160
|
+
declare interface IMatch extends FC {
|
|
161
|
+
OpticalStatusField: typeof OpticalStatusField;
|
|
162
|
+
}
|
|
163
|
+
|
|
147
164
|
declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
148
165
|
size?: number;
|
|
149
166
|
fillColor?: string;
|
|
@@ -156,6 +173,10 @@ declare interface INotVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
156
173
|
fillColor?: string;
|
|
157
174
|
}
|
|
158
175
|
|
|
176
|
+
declare interface IOpticalStatusFieldProps {
|
|
177
|
+
children: ReactNode;
|
|
178
|
+
}
|
|
179
|
+
|
|
159
180
|
export declare interface IPopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
160
181
|
modal: ReactNode;
|
|
161
182
|
}
|
|
@@ -230,10 +251,14 @@ export declare const Logs: () => JSX_2.Element | null;
|
|
|
230
251
|
|
|
231
252
|
declare const Magnifier: FC<IMagnifierProps>;
|
|
232
253
|
|
|
254
|
+
export declare const Match: IMatch;
|
|
255
|
+
|
|
233
256
|
declare const Menu: FC<IMenuProps>;
|
|
234
257
|
|
|
235
258
|
declare const NotVerified: FC<INotVerifiedProps>;
|
|
236
259
|
|
|
260
|
+
declare const OpticalStatusField: FC<IOpticalStatusFieldProps>;
|
|
261
|
+
|
|
237
262
|
export declare const Overall: () => JSX_2.Element | null;
|
|
238
263
|
|
|
239
264
|
export declare const PersonInfo: () => JSX_2.Element | null;
|