gbc-kyc-kit 1.0.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/README.md +29 -0
- package/dist/gbc-test-2.es.js +23864 -0
- package/dist/gbc-test-2.umd.js +1236 -0
- package/dist/style.css +6 -0
- package/package.json +96 -0
package/README.md
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
## KYC Kit
|
|
2
|
+
|
|
3
|
+
Components to make a complete secure onboarding
|
|
4
|
+
|
|
5
|
+
## Instalación
|
|
6
|
+
|
|
7
|
+
- Run `npm i gbc-test-2`
|
|
8
|
+
or
|
|
9
|
+
- Run `yarn add gbc-test-2`
|
|
10
|
+
|
|
11
|
+
- Add import '../node_modules/kyc-kit-test/dist/style.css' in main.jsx
|
|
12
|
+
|
|
13
|
+
## Document Reader Component
|
|
14
|
+
|
|
15
|
+
import {DRC} from "kyc-kit-test"
|
|
16
|
+
|
|
17
|
+
Props Available:
|
|
18
|
+
|
|
19
|
+
- mode: string 'dark' || 'light' default is 'light'
|
|
20
|
+
- loader: bool default is false
|
|
21
|
+
|
|
22
|
+
## Liveness Component
|
|
23
|
+
|
|
24
|
+
import {LCC} from "kyc-kit"
|
|
25
|
+
|
|
26
|
+
Props Available:
|
|
27
|
+
|
|
28
|
+
- mode: string 'dark' || 'light' default is 'light'
|
|
29
|
+
- loader: bool default is false
|