@regulaforensics/ui-components 0.0.4 → 0.0.5

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
@@ -114,6 +114,10 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
114
114
  magnifierHeight?: number;
115
115
  }
116
116
 
117
+ declare interface IJsonViewerProps {
118
+ data: any;
119
+ }
120
+
117
121
  declare const Image_2: FC<IImageProps>;
118
122
  export { Image_2 as Image }
119
123
 
@@ -199,6 +203,8 @@ declare interface IZipProps extends HTMLAttributes<HTMLSpanElement> {
199
203
  fillColor?: string;
200
204
  }
201
205
 
206
+ export declare const JsonViewer: FC<IJsonViewerProps>;
207
+
202
208
  declare const Magnifier: FC<IMagnifierProps>;
203
209
 
204
210
  declare const Menu: FC<IMenuProps>;
@@ -213,7 +219,9 @@ declare const Refresh: FC<IRefreshProps>;
213
219
 
214
220
  export declare const ResponseContainer: FC<IResponseContainerProps>;
215
221
 
216
- export declare const Rfid: () => JSX_2.Element;
222
+ export declare const ResponseViewer: () => JSX_2.Element | null;
223
+
224
+ export declare const Rfid: () => JSX_2.Element | null;
217
225
 
218
226
  declare type Size = '20x135' | '18x135' | '16x100' | '14x135' | '12x160' | '12x140' | '15x135' | '10x140';
219
227