@regulaforensics/ui-components 0.0.13 → 0.0.15
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 +15 -0
- package/dist/index.js +16490 -13216
- package/dist/style.css +1 -1
- package/package.json +21 -13
package/dist/index.d.ts
CHANGED
|
@@ -64,12 +64,14 @@ declare interface IClosedEyeProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
64
64
|
|
|
65
65
|
export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
66
66
|
name: string | number | JSX_3.Element;
|
|
67
|
+
collapse?: boolean;
|
|
67
68
|
value?: string | number | JSX_3.Element;
|
|
68
69
|
status?: eCheckResult;
|
|
69
70
|
open?: boolean;
|
|
70
71
|
children: ReactNode;
|
|
71
72
|
shift?: number;
|
|
72
73
|
nested?: boolean;
|
|
74
|
+
selected?: boolean;
|
|
73
75
|
}
|
|
74
76
|
|
|
75
77
|
export declare const Icon: IIcon;
|
|
@@ -93,6 +95,7 @@ declare interface ICrossProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
93
95
|
declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
|
|
94
96
|
response: ProcessResponse;
|
|
95
97
|
request?: any;
|
|
98
|
+
language?: string;
|
|
96
99
|
}
|
|
97
100
|
|
|
98
101
|
declare interface IDownloadProps extends HTMLAttributes<HTMLSpanElement> {
|
|
@@ -154,6 +157,10 @@ declare interface IMagnifierProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
154
157
|
fillColor?: string;
|
|
155
158
|
}
|
|
156
159
|
|
|
160
|
+
declare interface IMatch extends FC {
|
|
161
|
+
OpticalStatusField: typeof OpticalStatusField;
|
|
162
|
+
}
|
|
163
|
+
|
|
157
164
|
declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
158
165
|
size?: number;
|
|
159
166
|
fillColor?: string;
|
|
@@ -166,6 +173,10 @@ declare interface INotVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
166
173
|
fillColor?: string;
|
|
167
174
|
}
|
|
168
175
|
|
|
176
|
+
declare interface IOpticalStatusFieldProps {
|
|
177
|
+
children: ReactNode;
|
|
178
|
+
}
|
|
179
|
+
|
|
169
180
|
export declare interface IPopoverProps extends HTMLAttributes<HTMLDivElement> {
|
|
170
181
|
modal: ReactNode;
|
|
171
182
|
}
|
|
@@ -240,10 +251,14 @@ export declare const Logs: () => JSX_2.Element | null;
|
|
|
240
251
|
|
|
241
252
|
declare const Magnifier: FC<IMagnifierProps>;
|
|
242
253
|
|
|
254
|
+
export declare const Match: IMatch;
|
|
255
|
+
|
|
243
256
|
declare const Menu: FC<IMenuProps>;
|
|
244
257
|
|
|
245
258
|
declare const NotVerified: FC<INotVerifiedProps>;
|
|
246
259
|
|
|
260
|
+
declare const OpticalStatusField: FC<IOpticalStatusFieldProps>;
|
|
261
|
+
|
|
247
262
|
export declare const Overall: () => JSX_2.Element | null;
|
|
248
263
|
|
|
249
264
|
export declare const PersonInfo: () => JSX_2.Element | null;
|