@regulaforensics/vp-frontend-face-components 6.4.1625-nightly → 6.4.1627-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 +43 -0
- package/dist/main.iife.js +2 -2
- package/dist/main.js +7 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
@@ -219,3 +219,46 @@ declare enum ResponseCode {
|
|
219
219
|
}
|
220
220
|
|
221
221
|
export { }
|
222
|
+
|
223
|
+
|
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
|
+
|
245
|
+
interface HTMLElementEventMap {
|
246
|
+
'face-liveness': CustomEvent<FaceLivenessDetailType>;
|
247
|
+
'face-capture': CustomEvent<FaceCaptureDetailType>;
|
248
|
+
}
|
249
|
+
}
|
250
|
+
|
251
|
+
declare global {
|
252
|
+
const VERSION: string;
|
253
|
+
const ENV: string;
|
254
|
+
}
|
255
|
+
|
256
|
+
declare module 'react' {
|
257
|
+
interface HTMLAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
258
|
+
part?: string;
|
259
|
+
}
|
260
|
+
|
261
|
+
interface SVGAttributes<T> extends AriaAttributes, DOMAttributes<T> {
|
262
|
+
part?: string;
|
263
|
+
}
|
264
|
+
}
|