@techlabi/kycrazy-ui-kit 0.39.0 → 0.41.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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.41.0
4
+
5
+ ### Features
6
+
7
+ - make Business Questionnaire step configurable (on/off)
8
+
9
+ ## 0.40.0
10
+
11
+ ### Fixes
12
+
13
+ - fix infinite loading in KYC
14
+
3
15
  ## 0.39.0
4
16
 
5
17
  ### Fixes
package/README.md CHANGED
@@ -45,12 +45,9 @@ function App() {
45
45
  apiKey="ak_test_0987654321zyxwvutsrqponmlkjihgfedcba"
46
46
  apiEndpoint="http://localhost:8080"
47
47
  isKYB={true}
48
- onComplete={(token: string, data: KYCRequestData | KYBRequestData) => {
49
-
50
- }}
51
- onDoneClick={() => {
52
-
53
- }}
48
+ onComplete={(token: string, data: KYCRequestData | KYBRequestData) => {}}
49
+ onDoneClick={() => {}}
50
+ userEmail={user.email}
54
51
  />
55
52
  </div>
56
53
  );