@regulaforensics/ui-components 7.5.172-nightly → 7.5.173-rc
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 +8312 -8262
- package/package.json +19 -21
package/dist/index.d.ts
CHANGED
|
@@ -10,6 +10,8 @@ export declare const About: FC<IAboutProps>;
|
|
|
10
10
|
|
|
11
11
|
declare const Arrow: FC<IArrowProps>;
|
|
12
12
|
|
|
13
|
+
declare const Authenticity: FC<iAuthenticityProps>;
|
|
14
|
+
|
|
13
15
|
declare const AuthenticityLabel: FC<iAuthenticityLabelProps>;
|
|
14
16
|
|
|
15
17
|
declare const AuthenticityTextCheckReference: FC<iAuthenticityTextCheckReferenceProps>;
|
|
@@ -47,6 +49,8 @@ export declare enum eInfoTabID {
|
|
|
47
49
|
|
|
48
50
|
declare const Eye: FC<IEyeProps>;
|
|
49
51
|
|
|
52
|
+
declare const getAuthenticity: (input: any) => string | number;
|
|
53
|
+
|
|
50
54
|
declare const getAuthenticityLabel: (input: any) => string | number;
|
|
51
55
|
|
|
52
56
|
declare const getAuthenticityTextCheckReference: (input: any) => string | number;
|
|
@@ -107,6 +111,10 @@ declare interface iAuthenticityLabelProps {
|
|
|
107
111
|
children: ReactNode;
|
|
108
112
|
}
|
|
109
113
|
|
|
114
|
+
declare interface iAuthenticityProps {
|
|
115
|
+
children: ReactNode;
|
|
116
|
+
}
|
|
117
|
+
|
|
110
118
|
declare interface iAuthenticityTextCheckReferenceProps {
|
|
111
119
|
children: ReactNode;
|
|
112
120
|
}
|
|
@@ -283,6 +291,8 @@ declare interface IMagnifierProps extends HTMLAttributes<HTMLSpanElement> {
|
|
|
283
291
|
}
|
|
284
292
|
|
|
285
293
|
declare interface IMatch extends FC {
|
|
294
|
+
Authenticity: typeof Authenticity;
|
|
295
|
+
getAuthenticity: typeof getAuthenticity;
|
|
286
296
|
AuthenticityLabel: typeof AuthenticityLabel;
|
|
287
297
|
getAuthenticityLabel: typeof getAuthenticityLabel;
|
|
288
298
|
CheckDiagnose: typeof CheckDiagnose;
|