@netceterapx/click-to-pay-sdk 2.7.0 → 2.7.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/build/click-to-pay-sdk.es.js +820 -751
- package/build/click-to-pay-sdk.js +1 -1
- package/index.d.ts +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -300,6 +300,11 @@ export declare enum ButtonStyle {
|
|
|
300
300
|
OUTLINED = "OUTLINED"
|
|
301
301
|
}
|
|
302
302
|
|
|
303
|
+
declare enum ButtonTextCase {
|
|
304
|
+
CAPITALIZE = "capitalize",
|
|
305
|
+
UPPERCASE = "uppercase"
|
|
306
|
+
}
|
|
307
|
+
|
|
303
308
|
export declare interface Card {
|
|
304
309
|
primaryAccountNumber: string;
|
|
305
310
|
panExpirationMonth: string;
|
|
@@ -808,6 +813,7 @@ export declare type UICustomizations = {
|
|
|
808
813
|
fontFamily?: string;
|
|
809
814
|
buttonAndInputRadius?: string;
|
|
810
815
|
cardItemRadius?: string;
|
|
816
|
+
buttonTextCase?: ButtonTextCase;
|
|
811
817
|
};
|
|
812
818
|
|
|
813
819
|
export declare enum VisaAuthenticationReasonEnum {
|
package/package.json
CHANGED