@regulaforensics/ui-components 0.0.22 → 0.0.24

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
@@ -58,6 +58,8 @@ declare const getGraphicFieldType: (input: any) => string | number;
58
58
 
59
59
  declare const getImageQualityCheckTypeLabel: (input: any) => string | number;
60
60
 
61
+ declare const getIRVisibilityStatus: (input: any) => string | number;
62
+
61
63
  declare const getLCID: (input: any) => string | number;
62
64
 
63
65
  declare const getLightsLabel: (input: any) => string | number;
@@ -224,6 +226,10 @@ declare interface iImageQualityCheckTypeLabelProps {
224
226
  children: ReactNode;
225
227
  }
226
228
 
229
+ declare interface iIRVisibilityStatusProps {
230
+ children: ReactNode;
231
+ }
232
+
227
233
  declare interface IJsonViewerProps {
228
234
  data: any;
229
235
  }
@@ -281,6 +287,8 @@ declare interface IMatch extends FC {
281
287
  getVisualFieldType: typeof getVisualFieldType;
282
288
  LCID: typeof LCID;
283
289
  getLCID: typeof getLCID;
290
+ IRVisibilityStatus: typeof IRVisibilityStatus;
291
+ getIRVisibilityStatus: typeof getIRVisibilityStatus;
284
292
  }
285
293
 
286
294
  declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
@@ -325,6 +333,8 @@ declare interface iRfidDataFileTypeProps {
325
333
  children: ReactNode;
326
334
  }
327
335
 
336
+ declare const IRVisibilityStatus: FC<iIRVisibilityStatusProps>;
337
+
328
338
  declare interface IScrollProps extends HTMLAttributes<HTMLDivElement> {
329
339
  maxHeight?: number;
330
340
  }