@eka-care/abha-stg 0.1.97 → 0.1.99
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 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -59,7 +59,7 @@ Add the following HTML and script tags to your webpage:
|
|
|
59
59
|
theme:{
|
|
60
60
|
// if you want to customise sdk theme/colors
|
|
61
61
|
// pass the colors of your organisation design system
|
|
62
|
-
}
|
|
62
|
+
},
|
|
63
63
|
// data object
|
|
64
64
|
data: {
|
|
65
65
|
// pass the required data as per the flow
|
|
@@ -500,7 +500,7 @@ window.initAbhaApp({
|
|
|
500
500
|
clientId: "ext",
|
|
501
501
|
theme: {
|
|
502
502
|
primary: {
|
|
503
|
-
brand: '<
|
|
503
|
+
brand: '<your_org_primary_color', // brand color
|
|
504
504
|
},
|
|
505
505
|
semantic: {
|
|
506
506
|
error: '<your_semantic_error_color>',
|
|
@@ -534,7 +534,7 @@ window.initAbhaApp({
|
|
|
534
534
|
},
|
|
535
535
|
onSuccess: (params) => { /* ... */ },
|
|
536
536
|
onError: (params) => { /* ... */ }
|
|
537
|
-
...
|
|
537
|
+
// ... other methods of initAbhaApp fn
|
|
538
538
|
});
|
|
539
539
|
```
|
|
540
540
|
|