@regulaforensics/ui-components 0.0.7 → 0.0.8
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 +10 -14
- package/dist/index.js +11870 -13115
- package/dist/style.css +1 -1
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -15,7 +15,7 @@ declare const ClosedEye: FC<IClosedEyeProps>;
|
|
|
15
15
|
|
|
16
16
|
export declare const Collapse: FC<ICollapseProps>;
|
|
17
17
|
|
|
18
|
-
export declare const Container:
|
|
18
|
+
export declare const Container: FC<IContainerProps>;
|
|
19
19
|
|
|
20
20
|
declare const Copy: FC<ICopyProps>;
|
|
21
21
|
|
|
@@ -23,7 +23,7 @@ declare const Download: FC<IDownloadProps>;
|
|
|
23
23
|
|
|
24
24
|
declare const Eye: FC<IEyeProps>;
|
|
25
25
|
|
|
26
|
-
export declare const Graphics: () => JSX_2.Element
|
|
26
|
+
export declare const Graphics: () => JSX_2.Element;
|
|
27
27
|
|
|
28
28
|
declare interface IArrowProps extends HTMLAttributes<HTMLSpanElement> {
|
|
29
29
|
size?: number;
|
|
@@ -58,10 +58,9 @@ export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
58
58
|
|
|
59
59
|
export declare const Icon: IIcon;
|
|
60
60
|
|
|
61
|
-
declare
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
Icon: typeof Icon_2;
|
|
61
|
+
declare interface IContainerProps extends HTMLAttributes<HTMLElement> {
|
|
62
|
+
response: ProcessResponse;
|
|
63
|
+
request?: any;
|
|
65
64
|
}
|
|
66
65
|
|
|
67
66
|
declare interface ICopyProps extends HTMLAttributes<HTMLSpanElement> {
|
|
@@ -131,7 +130,7 @@ declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
131
130
|
fillColor?: string;
|
|
132
131
|
}
|
|
133
132
|
|
|
134
|
-
export declare const Info: () => JSX_2.Element
|
|
133
|
+
export declare const Info: () => JSX_2.Element;
|
|
135
134
|
|
|
136
135
|
declare interface INotVerifiedProps extends HTMLAttributes<HTMLSpanElement> {
|
|
137
136
|
size?: number;
|
|
@@ -152,10 +151,6 @@ declare interface IRefreshProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
152
151
|
fillColor?: string;
|
|
153
152
|
}
|
|
154
153
|
|
|
155
|
-
declare interface IResponseContainerProps extends HTMLAttributes<HTMLElement> {
|
|
156
|
-
response: ProcessResponse;
|
|
157
|
-
}
|
|
158
|
-
|
|
159
154
|
export declare interface ISkeleton extends FC {
|
|
160
155
|
Block: typeof Block;
|
|
161
156
|
}
|
|
@@ -177,7 +172,6 @@ export declare interface ITabsProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
177
172
|
}
|
|
178
173
|
|
|
179
174
|
export declare interface ITextProps extends HTMLAttributes<HTMLSpanElement> {
|
|
180
|
-
textAlign?: 'center' | 'right' | 'left';
|
|
181
175
|
uppercase?: boolean;
|
|
182
176
|
children?: ReactNode;
|
|
183
177
|
size?: Size;
|
|
@@ -205,6 +199,8 @@ declare interface IZipProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
205
199
|
|
|
206
200
|
export declare const JsonViewer: FC<IJsonViewerProps>;
|
|
207
201
|
|
|
202
|
+
export declare const Logs: () => JSX_2.Element | null;
|
|
203
|
+
|
|
208
204
|
declare const Magnifier: FC<IMagnifierProps>;
|
|
209
205
|
|
|
210
206
|
declare const Menu: FC<IMenuProps>;
|
|
@@ -217,13 +213,13 @@ declare const Question: FC<IQuestionProps>;
|
|
|
217
213
|
|
|
218
214
|
declare const Refresh: FC<IRefreshProps>;
|
|
219
215
|
|
|
220
|
-
export declare const
|
|
216
|
+
export declare const RequestViewer: () => JSX_2.Element | null;
|
|
221
217
|
|
|
222
218
|
export declare const ResponseViewer: () => JSX_2.Element | null;
|
|
223
219
|
|
|
224
220
|
export declare const Rfid: () => JSX_2.Element | null;
|
|
225
221
|
|
|
226
|
-
declare type Size = '20x135' | '18x135' | '16x100' | '14x135' | '12x160' | '12x140' | '15x135' | '10x140';
|
|
222
|
+
declare type Size = '20x135' | '18x135' | '16x100' | '14x135' | '12x160' | '12x140' | '15x135' | '10x140' | '14x115';
|
|
227
223
|
|
|
228
224
|
export declare const Skeleton: ISkeleton;
|
|
229
225
|
|