@regulaforensics/ui-components 7.3.68-nightly → 7.4.70-nightly
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 +16687 -16559
- package/dist/style.css +1 -1
- package/package.json +4 -4
package/dist/index.d.ts
CHANGED
|
@@ -61,6 +61,8 @@ declare const getCheckResultVerification: (input: any) => string;
|
|
|
61
61
|
|
|
62
62
|
declare const getGraphicFieldType: (input: any) => string | number;
|
|
63
63
|
|
|
64
|
+
declare const getGroupDescription: (input: any) => string;
|
|
65
|
+
|
|
64
66
|
declare const getImageQualityCheckTypeLabel: (input: any) => string | number;
|
|
65
67
|
|
|
66
68
|
declare const getIRVisibilityStatus: (input: any) => string | number;
|
|
@@ -91,6 +93,8 @@ declare const GraphicFieldType: FC<iGraphicFieldTypeProps>;
|
|
|
91
93
|
|
|
92
94
|
export declare const Graphics: () => JSX_2.Element | null;
|
|
93
95
|
|
|
96
|
+
declare const GroupDescription: FC<iGroupDescriptionProps>;
|
|
97
|
+
|
|
94
98
|
declare interface IAboutProps {
|
|
95
99
|
additionalFields?: Array<{
|
|
96
100
|
name: string;
|
|
@@ -197,6 +201,10 @@ declare interface iGraphicFieldTypeProps {
|
|
|
197
201
|
children: ReactNode;
|
|
198
202
|
}
|
|
199
203
|
|
|
204
|
+
declare interface iGroupDescriptionProps {
|
|
205
|
+
children: ReactNode;
|
|
206
|
+
}
|
|
207
|
+
|
|
200
208
|
export declare interface IH1Props extends HTMLAttributes<HTMLTitleElement> {
|
|
201
209
|
textAlign?: 'center' | 'right' | 'left';
|
|
202
210
|
uppercase?: boolean;
|
|
@@ -309,6 +317,8 @@ declare interface IMatch extends FC {
|
|
|
309
317
|
getIRVisibilityStatus: typeof getIRVisibilityStatus;
|
|
310
318
|
AuthenticityTextCheckReference: typeof AuthenticityTextCheckReference;
|
|
311
319
|
getAuthenticityTextCheckReference: typeof getAuthenticityTextCheckReference;
|
|
320
|
+
GroupDescription: typeof GroupDescription;
|
|
321
|
+
getGroupDescription: typeof getGroupDescription;
|
|
312
322
|
}
|
|
313
323
|
|
|
314
324
|
declare interface IMenuProps extends HTMLAttributes<HTMLSpanElement> {
|