@regulaforensics/vp-frontend-face-components 6.4.1624-nightly → 6.4.1626-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
@@ -221,21 +221,44 @@ declare enum ResponseCode {
221
221
  export { }
222
222
 
223
223
 
224
+
224
225
  declare global {
226
+ const FACE_WASM_S3_PATH: string;
227
+
228
+ namespace React.JSX {
229
+ interface IntrinsicElements {
230
+ 'face-liveness': React.DetailedHTMLProps<
231
+ IFaceLiveness & React.HTMLAttributes<FaceLivenessWebComponent>,
232
+ FaceLivenessWebComponent
233
+ >;
234
+ 'face-capture': React.DetailedHTMLProps<
235
+ IFaceDetection & React.HTMLAttributes<FaceDetectionWebComponent>,
236
+ FaceDetectionWebComponent
237
+ >;
238
+ 'fullscreen-container': React.DetailedHTMLProps<
239
+ React.HTMLAttributes<FullScreenContainer>,
240
+ FullScreenContainer
241
+ >;
242
+ }
243
+ }
244
+
225
245
  interface HTMLElementEventMap {
226
246
  'face-liveness': CustomEvent<FaceLivenessDetailType>;
227
247
  'face-capture': CustomEvent<FaceCaptureDetailType>;
228
248
  }
229
249
  }
230
250
 
231
-
232
- declare namespace v3 {
233
- var DNS: string;
234
- var URL: string;
251
+ declare global {
252
+ const VERSION: string;
253
+ const ENV: string;
235
254
  }
236
255
 
256
+ declare module 'react' {
257
+ interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
258
+ part?: string;
259
+ }
237
260
 
238
- declare namespace v5 {
239
- var DNS: string;
240
- var URL: string;
261
+ interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
262
+ part?: string;
263
+ }
241
264
  }