@regulaforensics/ui-components 8.3.548-nightly → 8.3.551-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 CHANGED
@@ -14,6 +14,9 @@ import { TDetectResponse } from '@regulaforensics/facesdk-webclient';
14
14
  /** Displays the document processing time and additional fields. */
15
15
  export declare const About: FC<IAboutProps>;
16
16
 
17
+ /** Display warning messages that require attention. */
18
+ export declare const Alert: FC<IAlertProps>;
19
+
17
20
  /** Arrow icon */
18
21
  declare const Arrow: FC<IArrowProps>;
19
22
 
@@ -155,6 +158,15 @@ declare interface IAboutProps {
155
158
  }>;
156
159
  }
157
160
 
161
+ export declare interface IAlertProps extends HTMLAttributes<HTMLDivElement> {
162
+ /** Alert content. */
163
+ children: ReactNode;
164
+ /** Data attributes. */
165
+ dataAttributes?: {
166
+ [key: string]: string;
167
+ };
168
+ }
169
+
158
170
  declare interface IArrowProps extends HTMLAttributes<HTMLSpanElement> {
159
171
  /** Icon fill color. */
160
172
  fillColor?: string;
@@ -787,7 +799,7 @@ declare const SecurityFeatureTypeLabel: FC<iSecurityFeatureTypeLabelProps>;
787
799
 
788
800
  declare const Sex: FC<iSexProps>;
789
801
 
790
- declare type Size = '20x135' | '18x135' | '16x100' | '14x135' | '12x160' | '12x140' | '15x135' | '10x140' | '14x115';
802
+ declare type Size = '10x140' | '12x140' | '12x160' | '14x115' | '14x135' | '14x157' | '15x135' | '16x100' | '18x135' | '20x135';
791
803
 
792
804
  export declare const Skeleton: ISkeleton;
793
805