@techlabi/kycrazy-ui-kit 0.55.0 → 0.56.0-beta.2

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,18 +1,5 @@
1
1
  # Changelog
2
2
 
3
- ## 0.55.0
4
-
5
- ### Features
6
-
7
- - Added Average Transaction Size to Company Activity (KYB)
8
- - Replaced Annual Sales Volume with Monthly Sales Volume (KYB)
9
-
10
- ## 0.54.0
11
-
12
- ### Fixes
13
-
14
- - Export unified CSS bundle for cross-project compatibility
15
-
16
3
  ## 0.53.0
17
4
 
18
5
  ### Features
package/README.md CHANGED
@@ -34,8 +34,6 @@ Mobile-first design, multi-language support, and instant pass/fail results keep
34
34
 
35
35
  ## 📖 Usage
36
36
 
37
- Important: this package ships a precompiled stylesheet. Import the compiled CSS from the package in your consumer app, then import the component JS. This ensures Tailwind utilities and any third‑party CSS used by the components are applied correctly.
38
-
39
37
  ```tsx
40
38
  import '@techlabi/kycrazy-ui-kit/style.css';
41
39
  import KYCrazy from '@techlabi/kycrazy-ui-kit';
@@ -47,18 +45,12 @@ function App() {
47
45
  apiKey="ak_test_0987654321zyxwvutsrqponmlkjihgfedcba"
48
46
  apiEndpoint="http://localhost:8080"
49
47
  isKYB={true}
50
- userEmail={user.email}
51
- userId={user.id}
48
+ userEmail={user.email};
49
+ userId={user.id};
52
50
  fullName={user.fullName} // optional
53
- hideCompanyActivity={true} // optional
54
- hideQuestionary={true} // optional
55
- companyDocumentsTypes={[
56
- 'bank_statement',
57
- 'company_structure',
58
- 'certificate_of_registration',
59
- 'business_license',
60
- 'void_cheque',
61
- ]} // optional
51
+ hideCompanyActivity={true}; // optional
52
+ hideQuestionary={true}; // optional
53
+ companyDocumentsTypes={['bank_statement', 'company_structure', 'certificate_of_registration','business_license', 'void_cheque']} // optional
62
54
  onComplete={(token: string, data: KYCRequestData | KYBRequestData) => {}}
63
55
  onDoneClick={() => {}}
64
56
  />