@regulaforensics/ui-components 1.1.1 → 1.3.0
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 +19895 -18911
- package/dist/style.css +1 -1
- package/package.json +12 -11
package/dist/index.d.ts
CHANGED
|
@@ -15,6 +15,8 @@ declare const Authenticity: FC<iAuthenticityProps>;
|
|
|
15
15
|
|
|
16
16
|
declare const AuthenticityLabel: FC<iAuthenticityLabelProps>;
|
|
17
17
|
|
|
18
|
+
declare const AuthenticityTextCheckReference: FC<iAuthenticityTextCheckReferenceProps>;
|
|
19
|
+
|
|
18
20
|
declare const Block: FC<IBlockProps>;
|
|
19
21
|
|
|
20
22
|
declare const Brackets: FC<IBracketsProps>;
|
|
@@ -50,6 +52,8 @@ declare const getAuthenticity: (input: any) => string | number;
|
|
|
50
52
|
|
|
51
53
|
declare const getAuthenticityLabel: (input: any) => string | number;
|
|
52
54
|
|
|
55
|
+
declare const getAuthenticityTextCheckReference: (input: any) => string | number;
|
|
56
|
+
|
|
53
57
|
declare const getCheckDiagnose: (input: any) => string | number;
|
|
54
58
|
|
|
55
59
|
declare const getCheckResultVerification: (input: any) => string;
|
|
@@ -106,6 +110,10 @@ declare interface iAuthenticityProps {
|
|
|
106
110
|
children: ReactNode;
|
|
107
111
|
}
|
|
108
112
|
|
|
113
|
+
declare interface iAuthenticityTextCheckReferenceProps {
|
|
114
|
+
children: ReactNode;
|
|
115
|
+
}
|
|
116
|
+
|
|
109
117
|
declare interface IBlockProps extends HTMLAttributes<HTMLDivElement> {
|
|
110
118
|
width?: number | string;
|
|
111
119
|
height?: number | string;
|
|
@@ -291,6 +299,8 @@ declare interface IMatch extends FC {
|
|
|
291
299
|
getLCID: typeof getLCID;
|
|
292
300
|
IRVisibilityStatus: typeof IRVisibilityStatus;
|
|
293
301
|
getIRVisibilityStatus: typeof getIRVisibilityStatus;
|
|
302
|
+
AuthenticityTextCheckReference: typeof AuthenticityTextCheckReference;
|
|
303
|
+
getAuthenticityTextCheckReference: typeof getAuthenticityTextCheckReference;
|
|
294
304
|
}
|
|
295
305
|
|
|
296
306
|
declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|