react-native-kalapa-ekyc 1.2.1 → 1.2.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/README.md +3 -0
- package/ios/KalapaEkyc.m +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,6 +4,9 @@ Complete guide for integrating Kalapa eKYC functionality into your React Native
|
|
|
4
4
|
---
|
|
5
5
|
## Changelog
|
|
6
6
|
|
|
7
|
+
### 1.2.2
|
|
8
|
+
- **iOS**: Maintain UI config
|
|
9
|
+
- **Android**: Maintain / Optimize NFC step
|
|
7
10
|
### 1.2.1
|
|
8
11
|
- **successColor / failureColor**: Now can be configured via sdkConfig
|
|
9
12
|
### 1.2.0
|
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
|