@getyoti/react-face-capture 2.8.1 → 2.9.0
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/CHANGELOG.md +43 -0
- package/README.md +25 -7
- package/index.d.ts +1 -0
- package/index.js +11 -11
- package/index.js.LICENSE.txt +3 -3
- package/package.json +4 -3
- package/vanilla/index.js +14 -14
- package/vanilla/index.js.LICENSE.txt +4 -4
- package/vanilla/index.js.map +1 -1
package/index.js.LICENSE.txt
CHANGED
|
@@ -263,7 +263,7 @@ THE SOFTWARE.
|
|
|
263
263
|
|
|
264
264
|
|
|
265
265
|
Name: use-sync-external-store
|
|
266
|
-
Version: 1.
|
|
266
|
+
Version: 1.6.0
|
|
267
267
|
License: MIT
|
|
268
268
|
Private: false
|
|
269
269
|
Description: Backwards compatible shim for React's useSyncExternalStore. Works with any React that supports hooks.
|
|
@@ -273,7 +273,7 @@ License Copyright:
|
|
|
273
273
|
|
|
274
274
|
MIT License
|
|
275
275
|
|
|
276
|
-
Copyright (c)
|
|
276
|
+
Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
277
277
|
|
|
278
278
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
279
279
|
of this software and associated documentation files (the "Software"), to deal
|
|
@@ -336,7 +336,7 @@ SOFTWARE.
|
|
|
336
336
|
|
|
337
337
|
|
|
338
338
|
Name: use-isomorphic-layout-effect
|
|
339
|
-
Version: 1.1
|
|
339
|
+
Version: 1.2.1
|
|
340
340
|
License: MIT
|
|
341
341
|
Private: false
|
|
342
342
|
Description: A React helper hook for scheduling a layout effect with a fallback to a regular effect for environments where layout effects should not be used (such as server-side rendering).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@getyoti/react-face-capture",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.9.0",
|
|
4
4
|
"description": "Face capture module to collect picture and data for Yoti AI API",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"typings": "index.d.ts",
|
|
@@ -11,12 +11,13 @@
|
|
|
11
11
|
"@xstate/react": "3.2.2",
|
|
12
12
|
"classnames": "2.2.6",
|
|
13
13
|
"face-api.js": "0.22.0",
|
|
14
|
+
"normalize.css": "8.0.1",
|
|
14
15
|
"prop-types": "15.7.2",
|
|
15
16
|
"xstate": "4.37.2"
|
|
16
17
|
},
|
|
17
18
|
"peerDependencies": {
|
|
18
|
-
"react": ">=16.14.0
|
|
19
|
-
"react-dom": ">=16.14.0
|
|
19
|
+
"react": ">=16.14.0 <=18.3.1",
|
|
20
|
+
"react-dom": ">=16.14.0 <=18.3.1"
|
|
20
21
|
},
|
|
21
22
|
"browser": {
|
|
22
23
|
"crypto": false,
|