@regulaforensics/ui-components 7.4.97-rc → 7.4.107

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
@@ -1,10 +1,10 @@
1
1
  import { eCheckResult } from '@regulaforensics/document-reader-typings';
2
2
  import { FC } from 'react';
3
- import type { ForwardRefExoticComponent } from 'react';
3
+ import { ForwardRefExoticComponent } from 'react';
4
4
  import { HTMLAttributes } from 'react';
5
- import type { JSX as JSX_2 } from 'react/jsx-runtime';
5
+ import { JSX as JSX_2 } from 'react/jsx-runtime';
6
6
  import { ReactNode } from 'react';
7
- import type { RefAttributes } from 'react';
7
+ import { RefAttributes } from 'react';
8
8
 
9
9
  export declare const About: FC<IAboutProps>;
10
10
 
@@ -61,6 +61,8 @@ declare const getCheckResultVerification: (input: any) => string;
61
61
 
62
62
  declare const getGraphicFieldType: (input: any) => string | number;
63
63
 
64
+ declare const getGroupDescription: (input: any) => string;
65
+
64
66
  declare const getImageQualityCheckTypeLabel: (input: any) => string | number;
65
67
 
66
68
  declare const getIRVisibilityStatus: (input: any) => string | number;
@@ -91,6 +93,8 @@ declare const GraphicFieldType: FC<iGraphicFieldTypeProps>;
91
93
 
92
94
  export declare const Graphics: () => JSX_2.Element | null;
93
95
 
96
+ declare const GroupDescription: FC<iGroupDescriptionProps>;
97
+
94
98
  declare interface IAboutProps {
95
99
  additionalFields?: Array<{
96
100
  name: string;
@@ -197,6 +201,10 @@ declare interface iGraphicFieldTypeProps {
197
201
  children: ReactNode;
198
202
  }
199
203
 
204
+ declare interface iGroupDescriptionProps {
205
+ children: ReactNode;
206
+ }
207
+
200
208
  export declare interface IH1Props extends HTMLAttributes<HTMLTitleElement> {
201
209
  textAlign?: 'center' | 'right' | 'left';
202
210
  uppercase?: boolean;
@@ -221,6 +229,7 @@ declare interface IIcon extends FC {
221
229
  Magnifier: typeof Magnifier;
222
230
  Download: typeof Download;
223
231
  Cross: typeof Cross;
232
+ LinkArrow: typeof LinkArrow;
224
233
  }
225
234
 
226
235
  declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
@@ -236,6 +245,7 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
236
245
  magnifierImg?: string;
237
246
  previewImg?: string;
238
247
  downloadImg?: string;
248
+ magnifierImgBorderRadius?: number;
239
249
  }
240
250
 
241
251
  declare interface iImageQualityCheckTypeLabelProps {
@@ -258,6 +268,16 @@ declare interface iLightsLabelProps {
258
268
  children: ReactNode;
259
269
  }
260
270
 
271
+ declare interface ILinkArrowProps extends HTMLAttributes<HTMLSpanElement> {
272
+ size?: number;
273
+ fillColor?: string;
274
+ }
275
+
276
+ declare interface ILinkProps extends HTMLAttributes<HTMLDivElement> {
277
+ href: string;
278
+ target?: string;
279
+ }
280
+
261
281
  declare const Image_2: ForwardRefExoticComponent<IImageProps & RefAttributes<HTMLDivElement>>;
262
282
  export { Image_2 as Image }
263
283
 
@@ -309,6 +329,8 @@ declare interface IMatch extends FC {
309
329
  getIRVisibilityStatus: typeof getIRVisibilityStatus;
310
330
  AuthenticityTextCheckReference: typeof AuthenticityTextCheckReference;
311
331
  getAuthenticityTextCheckReference: typeof getAuthenticityTextCheckReference;
332
+ GroupDescription: typeof GroupDescription;
333
+ getGroupDescription: typeof getGroupDescription;
312
334
  }
313
335
 
314
336
  declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
@@ -447,6 +469,10 @@ declare const LCID: FC<iLcidProps>;
447
469
 
448
470
  declare const LightsLabel: FC<iLightsLabelProps>;
449
471
 
472
+ export declare const Link: FC<ILinkProps>;
473
+
474
+ declare const LinkArrow: FC<ILinkArrowProps>;
475
+
450
476
  export declare const Logs: () => JSX_2.Element | null;
451
477
 
452
478
  declare const Magnifier: FC<IMagnifierProps>;