@regulaforensics/ui-components 0.0.8 → 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
@@ -15,10 +15,12 @@ declare const ClosedEye: FC<IClosedEyeProps>;
15
15
 
16
16
  export declare const Collapse: FC<ICollapseProps>;
17
17
 
18
- export declare const Container: FC<IContainerProps>;
18
+ 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>;
@@ -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;
@@ -58,9 +60,10 @@ export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
58
60
 
59
61
  export declare const Icon: IIcon;
60
62
 
61
- declare interface IContainerProps extends HTMLAttributes<HTMLElement> {
62
- response: ProcessResponse;
63
- request?: any;
63
+ declare const Icon_2: FC<HTMLAttributes<HTMLSpanElement>>;
64
+
65
+ declare interface IContainer extends FC {
66
+ Icon: typeof Icon_2;
64
67
  }
65
68
 
66
69
  declare interface ICopyProps extends HTMLAttributes<HTMLSpanElement> {
@@ -68,6 +71,11 @@ declare interface ICopyProps extends HTMLAttributes<HTMLSpanElement> {
68
71
  fillColor?: string;
69
72
  }
70
73
 
74
+ declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
75
+ response: ProcessResponse;
76
+ request?: any;
77
+ }
78
+
71
79
  declare interface IDownloadProps extends HTMLAttributes<HTMLSpanElement> {
72
80
  size?: number;
73
81
  fillColor?: string;