@regulaforensics/ui-components 0.0.12 → 0.0.13
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 -0
- package/dist/index.js +11395 -10885
- package/dist/style.css +1 -1
- package/package.json +16 -16
package/dist/index.d.ts
CHANGED
|
@@ -24,6 +24,8 @@ export declare const Container: IContainer;
|
|
|
24
24
|
|
|
25
25
|
declare const Copy: FC<ICopyProps>;
|
|
26
26
|
|
|
27
|
+
declare const Cross: FC<ICrossProps>;
|
|
28
|
+
|
|
27
29
|
export declare const DocReaderContainer: FC<IDocReaderContainerProps>;
|
|
28
30
|
|
|
29
31
|
declare const Download: FC<IDownloadProps>;
|
|
@@ -64,6 +66,7 @@ export declare interface ICollapseProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
64
66
|
name: string | number | JSX_3.Element;
|
|
65
67
|
value?: string | number | JSX_3.Element;
|
|
66
68
|
status?: eCheckResult;
|
|
69
|
+
open?: boolean;
|
|
67
70
|
children: ReactNode;
|
|
68
71
|
shift?: number;
|
|
69
72
|
nested?: boolean;
|
|
@@ -82,6 +85,11 @@ declare interface ICopyProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
82
85
|
fillColor?: string;
|
|
83
86
|
}
|
|
84
87
|
|
|
88
|
+
declare interface ICrossProps extends HTMLAttributes<HTMLSpanElement> {
|
|
89
|
+
size?: number;
|
|
90
|
+
fillColor?: string;
|
|
91
|
+
}
|
|
92
|
+
|
|
85
93
|
declare interface IDocReaderContainerProps extends HTMLAttributes<HTMLElement> {
|
|
86
94
|
response: ProcessResponse;
|
|
87
95
|
request?: any;
|
|
@@ -120,6 +128,7 @@ declare interface IIcon extends FC {
|
|
|
120
128
|
Zip: typeof Zip;
|
|
121
129
|
Magnifier: typeof Magnifier;
|
|
122
130
|
Download: typeof Download;
|
|
131
|
+
Cross: typeof Cross;
|
|
123
132
|
}
|
|
124
133
|
|
|
125
134
|
declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
@@ -127,6 +136,7 @@ declare interface IImageProps extends HTMLAttributes<HTMLDivElement> {
|
|
|
127
136
|
alt: string;
|
|
128
137
|
download?: boolean;
|
|
129
138
|
magnifier?: boolean;
|
|
139
|
+
viewer?: boolean;
|
|
130
140
|
zoomLevel?: number;
|
|
131
141
|
magnifierWidth?: number;
|
|
132
142
|
magnifierHeight?: number;
|