react-native-kalapa-ekyc 1.2.1 → 1.2.3
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 +5 -0
- package/android/build.gradle +1 -1
- package/ios/KalapaEkyc.m +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,11 @@ Complete guide for integrating Kalapa eKYC functionality into your React Native
|
|
|
4
4
|
---
|
|
5
5
|
## Changelog
|
|
6
6
|
|
|
7
|
+
### 1.2.3
|
|
8
|
+
- **Android**: Optimize UI / UX in NFC step
|
|
9
|
+
### 1.2.2
|
|
10
|
+
- **iOS**: Maintain UI config
|
|
11
|
+
- **Android**: Maintain / Optimize NFC step
|
|
7
12
|
### 1.2.1
|
|
8
13
|
- **successColor / failureColor**: Now can be configured via sdkConfig
|
|
9
14
|
### 1.2.0
|
package/android/build.gradle
CHANGED
package/ios/KalapaEkyc.m
CHANGED
|
@@ -39,11 +39,11 @@ RCT_EXPORT_METHOD(start:(NSString *)session
|
|
|
39
39
|
withColor:themeColor];
|
|
40
40
|
|
|
41
41
|
KLPAppearance *klpAppearance = [[[[[[[KLPAppearance Builder]
|
|
42
|
+
withTheme:theme]
|
|
42
43
|
withLanguage:language]
|
|
43
44
|
withMainColor:mainColor]
|
|
44
45
|
withBackgroundColor:backgroundColor]
|
|
45
46
|
withMainTextColor:mainTextColor]
|
|
46
|
-
withTheme:theme]
|
|
47
47
|
withBtnTextColor:btnTextColor];
|
|
48
48
|
|
|
49
49
|
KLPConfig *klpConfig = [self configureKLPWithSession:session
|