@regulaforensics/ui-components 7.4.82-rc → 7.5.84-nightly

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
@@ -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> {
@@ -258,6 +267,16 @@ declare interface iLightsLabelProps {
258
267
  children: ReactNode;
259
268
  }
260
269
 
270
+ declare interface ILinkArrowProps extends HTMLAttributes<HTMLSpanElement> {
271
+ size?: number;
272
+ fillColor?: string;
273
+ }
274
+
275
+ declare interface ILinkProps extends HTMLAttributes<HTMLDivElement> {
276
+ href: string;
277
+ target?: string;
278
+ }
279
+
261
280
  declare const Image_2: ForwardRefExoticComponent<IImageProps & RefAttributes<HTMLDivElement>>;
262
281
  export { Image_2 as Image }
263
282
 
@@ -309,6 +328,8 @@ declare interface IMatch extends FC {
309
328
  getIRVisibilityStatus: typeof getIRVisibilityStatus;
310
329
  AuthenticityTextCheckReference: typeof AuthenticityTextCheckReference;
311
330
  getAuthenticityTextCheckReference: typeof getAuthenticityTextCheckReference;
331
+ GroupDescription: typeof GroupDescription;
332
+ getGroupDescription: typeof getGroupDescription;
312
333
  }
313
334
 
314
335
  declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
@@ -447,6 +468,10 @@ declare const LCID: FC<iLcidProps>;
447
468
 
448
469
  declare const LightsLabel: FC<iLightsLabelProps>;
449
470
 
471
+ export declare const Link: FC<ILinkProps>;
472
+
473
+ declare const LinkArrow: FC<ILinkArrowProps>;
474
+
450
475
  export declare const Logs: () => JSX_2.Element | null;
451
476
 
452
477
  declare const Magnifier: FC<IMagnifierProps>;