@regulaforensics/ui-components 0.0.7 → 0.0.9

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
@@ -19,11 +19,13 @@ export declare const Container: IContainer;
19
19
 
20
20
  declare const Copy: FC<ICopyProps>;
21
21
 
22
+ export declare const DocReaderContainer: FC<IDocReaderContainerProps>;
23
+
22
24
  declare const Download: FC<IDownloadProps>;
23
25
 
24
26
  declare const Eye: FC<IEyeProps>;
25
27
 
26
- export declare const Graphics: () => JSX_2.Element | null;
28
+ export declare const Graphics: () => JSX_2.Element;
27
29
 
28
30
  declare interface IArrowProps extends HTMLAttributes<HTMLSpanElement> {
29
31
  size?: number;
@@ -48,9 +50,9 @@ declare interface IClosedEyeProps extends HTMLAttributes<HTMLSpanElement> {
48
50
  }
49
51
 
50
52
  export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
51
- name: string;
52
- value?: string;
53
- status: eCheckResult;
53
+ name: string | number;
54
+ value?: string | number;
55
+ status?: eCheckResult;
54
56
  children: ReactNode;
55
57
  shift?: number;
56
58
  nested?: boolean;
@@ -69,6 +71,11 @@ declare interface ICopyProps extends HTMLAttributes<HTMLSpanElement> {
69
71
  fillColor?: string;
70
72
  }
71
73
 
74
+ declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
75
+ response: ProcessResponse;
76
+ request?: any;
77
+ }
78
+
72
79
  declare interface IDownloadProps extends HTMLAttributes<HTMLSpanElement> {
73
80
  size?: number;
74
81
  fillColor?: string;
@@ -131,7 +138,7 @@ declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
131
138
  fillColor?: string;
132
139
  }
133
140
 
134
- export declare const Info: () => JSX_2.Element | null;
141
+ export declare const Info: () => JSX_2.Element;
135
142
 
136
143
  declare interface INotVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
137
144
  size?: number;
@@ -152,10 +159,6 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
152
159
  fillColor?: string;
153
160
  }
154
161
 
155
- declare interface IResponseContainerProps extends HTMLAttributes<HTMLElement> {
156
- response: ProcessResponse;
157
- }
158
-
159
162
  export declare interface ISkeleton extends FC {
160
163
  Block: typeof Block;
161
164
  }
@@ -177,7 +180,6 @@ export declare interface ITabsProps extends HTMLAttributes<HTMLDivElement> {
177
180
  }
178
181
 
179
182
  export declare interface ITextProps extends HTMLAttributes<HTMLSpanElement> {
180
- textAlign?: 'center' | 'right' | 'left';
181
183
  uppercase?: boolean;
182
184
  children?: ReactNode;
183
185
  size?: Size;
@@ -205,6 +207,8 @@ declare interface IZipProps extends HTMLAttributes<HTMLSpanElement> {
205
207
 
206
208
  export declare const JsonViewer: FC<IJsonViewerProps>;
207
209
 
210
+ export declare const Logs: () => JSX_2.Element | null;
211
+
208
212
  declare const Magnifier: FC<IMagnifierProps>;
209
213
 
210
214
  declare const Menu: FC<IMenuProps>;
@@ -217,13 +221,13 @@ declare const Question: FC<IQuestionProps>;
217
221
 
218
222
  declare const Refresh: FC<IRefreshProps>;
219
223
 
220
- export declare const ResponseContainer: FC<IResponseContainerProps>;
224
+ export declare const RequestViewer: () => JSX_2.Element | null;
221
225
 
222
226
  export declare const ResponseViewer: () => JSX_2.Element | null;
223
227
 
224
228
  export declare const Rfid: () => JSX_2.Element | null;
225
229
 
226
- declare type Size = '20x135' | '18x135' | '16x100' | '14x135' | '12x160' | '12x140' | '15x135' | '10x140';
230
+ declare type Size = '20x135' | '18x135' | '16x100' | '14x135' | '12x160' | '12x140' | '15x135' | '10x140' | '14x115';
227
231
 
228
232
  export declare const Skeleton: ISkeleton;
229
233