@regulaforensics/vp-frontend-face-components 7.2.1755-rc → 7.2.1757-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
@@ -230,8 +230,43 @@ export { }
230
230
 
231
231
 
232
232
  declare global {
233
+ const FACE_WASM_S3_PATH: string;
234
+ const FACE_API: string;
235
+
236
+ namespace React.JSX {
237
+ interface IntrinsicElements {
238
+ 'face-liveness': React.DetailedHTMLProps<
239
+ IFaceLiveness & React.HTMLAttributes<FaceLivenessWebComponent>,
240
+ FaceLivenessWebComponent
241
+ >;
242
+ 'face-capture': React.DetailedHTMLProps<
243
+ IFaceDetection & React.HTMLAttributes<FaceDetectionWebComponent>,
244
+ FaceDetectionWebComponent
245
+ >;
246
+ 'fullscreen-container': React.DetailedHTMLProps<
247
+ React.HTMLAttributes<FullScreenContainer>,
248
+ FullScreenContainer
249
+ >;
250
+ }
251
+ }
252
+
233
253
  interface HTMLElementEventMap {
234
254
  'face-liveness': CustomEvent<FaceLivenessDetailType>;
235
255
  'face-capture': CustomEvent<FaceCaptureDetailType>;
236
256
  }
237
257
  }
258
+
259
+ declare global {
260
+ const VERSION: string;
261
+ const ENV: string;
262
+ }
263
+
264
+ declare module 'react' {
265
+ interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
266
+ part?: string;
267
+ }
268
+
269
+ interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
270
+ part?: string;
271
+ }
272
+ }