@globalpayments/js 4.1.15 → 4.1.17

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.
Files changed (53) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
  3. package/types/common/html-element.d.ts +1 -0
  4. package/types/internal/lib/installments/components/add-installments-options.d.ts +2 -0
  5. package/types/internal/lib/installments/contracts/constants.d.ts +1 -0
  6. package/types/internal/lib/installments/contracts/enums.d.ts +8 -3
  7. package/types/internal/lib/installments/contracts/installment-payment-method.d.ts +6 -3
  8. package/types/internal/lib/installments/contracts/installment-plans-data.d.ts +1 -5
  9. package/types/internal/lib/installments/contracts/installment-term.d.ts +7 -24
  10. package/types/internal/lib/installments/contracts/interfaces.d.ts +4 -0
  11. package/types/internal/lib/installments/templates/common.d.ts +2 -6
  12. package/types/internal/lib/installments/templates/create-installment-options.d.ts +3 -0
  13. package/types/internal/lib/installments/templates/create-installment-section.d.ts +2 -0
  14. package/types/internal/lib/installments/templates/enum.d.ts +7 -0
  15. package/types/internal/lib/styles/gp-default.d.ts +70 -0
  16. package/types/internal/lib/styles/gp-default2.d.ts +70 -0
  17. package/types/internal/lib/styles/installments/common.d.ts +70 -0
  18. package/types/internal/lib/styles/installments/default.d.ts +70 -0
  19. package/types/internal/lib/styles/installments/gp-default.d.ts +70 -0
  20. package/types/internal/lib/styles/installments/simple.d.ts +70 -0
  21. package/types/internal/lib/styles/themes/brand-themes/base/base-theme.d.ts +70 -0
  22. package/types/internal/lib/translations/cs.d.ts +8 -0
  23. package/types/internal/lib/translations/de.d.ts +8 -0
  24. package/types/internal/lib/translations/el.d.ts +8 -0
  25. package/types/internal/lib/translations/en.d.ts +8 -0
  26. package/types/internal/lib/translations/es.d.ts +8 -0
  27. package/types/internal/lib/translations/et.d.ts +8 -0
  28. package/types/internal/lib/translations/fr.d.ts +8 -0
  29. package/types/internal/lib/translations/ga.d.ts +8 -0
  30. package/types/internal/lib/translations/hr.d.ts +8 -0
  31. package/types/internal/lib/translations/hu.d.ts +8 -0
  32. package/types/internal/lib/translations/it.d.ts +8 -0
  33. package/types/internal/lib/translations/ja.d.ts +8 -0
  34. package/types/internal/lib/translations/lt.d.ts +8 -0
  35. package/types/internal/lib/translations/lv.d.ts +8 -0
  36. package/types/internal/lib/translations/mt.d.ts +8 -0
  37. package/types/internal/lib/translations/nl.d.ts +8 -0
  38. package/types/internal/lib/translations/pl.d.ts +8 -0
  39. package/types/internal/lib/translations/pt.d.ts +8 -0
  40. package/types/internal/lib/translations/ro.d.ts +8 -0
  41. package/types/internal/lib/translations/ru.d.ts +8 -0
  42. package/types/internal/lib/translations/sk.d.ts +8 -0
  43. package/types/internal/lib/translations/sl.d.ts +8 -0
  44. package/types/internal/lib/translations/sv.d.ts +8 -0
  45. package/types/internal/lib/translations/tr.d.ts +8 -0
  46. package/types/internal/lib/translations/uk.d.ts +8 -0
  47. package/types/internal/lib/translations/vi.d.ts +8 -0
  48. package/types/internal/lib/translations/zh.d.ts +8 -0
  49. package/types/lib/version.d.ts +1 -1
  50. package/types/tools/configure.d.ts +2 -0
  51. package/types/ui/form/index.d.ts +256 -54
  52. package/types/ui/iframe-field/installments/action-add.d.ts +3 -2
  53. package/types/ui/iframe-field/installments/action-get-value.d.ts +8 -0
package/README.md CHANGED
@@ -24,7 +24,7 @@ This plugin allows you to use online payments (eCommerce) features of a variety
24
24
  ## Usage
25
25
 
26
26
  ```html
27
- <script src="https://js.globalpay.com/4.1.15/globalpayments.js"></script>
27
+ <script src="https://js.globalpay.com/4.1.17/globalpayments.js"></script>
28
28
  ```
29
29
 
30
30
  > Note: Installing via NPM will only provide TypeScript types for type-checking.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalpayments/js",
3
- "version": "4.1.15",
3
+ "version": "4.1.17",
4
4
  "author": "Heartland Developer Portal <developers@heartland.us>",
5
5
  "license": "GPL-2.0",
6
6
  "repository": {
@@ -17,7 +17,7 @@
17
17
  "clean": "rimraf dist",
18
18
  "cypress:open": "cypress open",
19
19
  "format": "prettier --write config/**/* src/**/* !src/assets/**/* !test/run.sh !test/run.ps1 test/fixtures/**/*.html",
20
- "postbuild": "cross-os postbuild-cross",
20
+ "postbuild": "xcopy src\\assets dist\\ /e/y/h && node bin/replace-gp-ref.js",
21
21
  "prebuild": "yarn test:lint && node bin/update-version.js",
22
22
  "prepublish": "yarn build",
23
23
  "test": "cross-os test-cross",
@@ -89,6 +89,7 @@ export declare const createHtmlRadioButtonElement: (props?: {
89
89
  checked: boolean;
90
90
  target?: string | undefined;
91
91
  value?: string | undefined;
92
+ radioButtonClassList?: string | undefined;
92
93
  } | undefined) => HTMLDivElement;
93
94
  export declare const createHtmlLabelElement: (props?: {
94
95
  id?: string | undefined;
@@ -0,0 +1,2 @@
1
+ import { IframeField } from "../../../../ui";
2
+ export default function addInstallmentsOptions(iframeField: IframeField | undefined): void;
@@ -1,3 +1,4 @@
1
1
  export declare const INSTALLMENTS_KEY = "installments";
2
2
  export declare const INSTALLMENTS_CONFIG_DEFAULT_CHANNEL = "CNP";
3
3
  export declare const INSTALLMENTS_CONFIG_DEFAULT_ENTRY_MODE = "ECOM";
4
+ export declare const INSTALLMENTS_CONFIG_DEFAULT_CVV_INDICATOR = "PRESENT";
@@ -6,13 +6,18 @@ export declare enum InstallmentEvents {
6
6
  CardInstallmentsHide = "card-installments-hide",
7
7
  CardInstallmentsRequestData = "card-installments-request-data",
8
8
  CardInstallmentsPassData = "card-installments-pass-data",
9
- CardInstallmentsAccumulateData = "card-installments-accumulate-data"
9
+ CardInstallmentsAccumulateData = "card-installments-accumulate-data",
10
+ CardInstallmentSendValue = "card-installment-send-value"
10
11
  }
11
12
  export declare enum InstallmentAvailableStatus {
12
13
  Available = "AVAILABLE",
13
14
  NotAvailable = "NOT_AVAILABLE"
14
15
  }
15
16
  export declare enum InstallmentTermModes {
16
- APR = "APR",
17
- FEE = "FEE"
17
+ MWI = "NO_INTEREST",
18
+ BNPL = "BNPL"
19
+ }
20
+ export declare enum InstallmentConfigs {
21
+ Country = "MX",
22
+ Currency = "MXN"
18
23
  }
@@ -4,18 +4,21 @@
4
4
  export default class InstallmentPaymentMethod {
5
5
  entryMode: string;
6
6
  card: {
7
- brand: string;
8
7
  maskedNumberLast4: string;
8
+ expiryMonth: string;
9
+ expiryYear: string;
9
10
  };
10
11
  constructor(_entryMode: string, _card: {
11
- brand: string;
12
12
  maskedNumberLast4: string;
13
+ expiryMonth: string;
14
+ expiryYear: string;
13
15
  });
14
16
  }
15
17
  export declare function installmentPaymentMethodMapper(origin: {
16
18
  entry_mode: string;
17
19
  card: {
18
- brand: string;
19
20
  masked_number_last4: string;
21
+ expiry_month: string;
22
+ expiry_year: string;
20
23
  };
21
24
  }): InstallmentPaymentMethod;
@@ -18,12 +18,10 @@ export default class InstallmentPlansData {
18
18
  accountId: string;
19
19
  accountName: string;
20
20
  reference: string;
21
- termsAndConditionsUrl: string;
22
- providerImageUrl: string;
23
21
  terms: InstallmentTerm[];
24
22
  paymentMethod: InstallmentPaymentMethod;
25
23
  action: InstallmentAction;
26
- constructor(_id: string, _timeCreated: string, _type: string, _status: string, _channel: string, _amount: string, _currency: string, _country: string, _merchantId: string, _merchantName: string, _accountId: string, _accountName: string, _reference: string, _termsAndConditionsUrl: string, _providerImageUrl: string, _terms: InstallmentTerm[], _paymentMethod: InstallmentPaymentMethod, _action: InstallmentAction);
24
+ constructor(_id: string, _timeCreated: string, _type: string, _status: string, _channel: string, _amount: string, _currency: string, _country: string, _merchantId: string, _merchantName: string, _accountId: string, _accountName: string, _reference: string, _terms: InstallmentTerm[], _paymentMethod: InstallmentPaymentMethod, _action: InstallmentAction);
27
25
  }
28
26
  export declare function installmentPlansDataMapper(origin: {
29
27
  id: string;
@@ -39,8 +37,6 @@ export declare function installmentPlansDataMapper(origin: {
39
37
  account_id: string;
40
38
  account_name: string;
41
39
  reference: string;
42
- terms_and_conditions_url: string;
43
- provider_image_url: string;
44
40
  terms: any[];
45
41
  payment_method: any;
46
42
  action: any;
@@ -1,35 +1,18 @@
1
- import InstallmentTermFees from "./installment-term-fees";
2
1
  /**
3
2
  * InstallmentTerm class model.
4
3
  */
5
4
  export default class InstallmentTerm {
6
5
  reference: string;
7
- timeUnitAmount: string;
8
- currency: string;
6
+ name: string;
9
7
  mode: string;
10
- totalTimeUnitCount: string;
11
- interestRate: string;
12
- totalAmount?: string;
13
- description: string;
14
- expirationDate: string;
15
- expirationInterestRate: string;
16
- timeUnit: string;
17
- termsAndConditionsUrl: string;
18
- fees?: InstallmentTermFees;
19
- constructor(_reference: string, _timeUnitAmount: string, _currency: string, _mode: string, _totalTimeUnitCount: string, _interestRate: string, _totalAmount: string, _description: string, _expirationDate: string, _expirationInterestRate: string, _timeUnit: string, _termsAndConditionsUrl: string, _fees?: InstallmentTermFees);
8
+ count: string;
9
+ gracePeriodCount: string;
10
+ constructor(_reference: string, _name: string, _mode: string, _count: string, _gracePeriodCount: string);
20
11
  }
21
12
  export declare function installmentTermMapper(origin: {
22
13
  reference: string;
23
- time_unit_amount: string;
24
- currency: string;
14
+ name: string;
25
15
  mode: string;
26
- total_time_unit_count: string;
27
- interest_rate: string;
28
- total_amount: string;
29
- description: string;
30
- expiration_date: string;
31
- expiration_interest_rate: string;
32
- terms_and_conditions_url: string;
33
- time_unit: string;
34
- fees?: any;
16
+ count: string;
17
+ grace_period_count: string;
35
18
  }): InstallmentTerm;
@@ -0,0 +1,4 @@
1
+ export interface InstallmentPaymentData {
2
+ installmentId: string;
3
+ installmentReference: string;
4
+ }
@@ -1,6 +1,2 @@
1
- export declare const getProvidedByIssuerTemplate: (props: {
2
- providerImageSrc: string;
3
- providerImageAlt: string;
4
- }) => HTMLElement;
5
- export declare const getChangePaymentMethodTemplate: (buttonId: string) => HTMLElement;
6
- export declare const getHaveVirginMoneyCreditCardBannerTemplate: () => HTMLElement;
1
+ export declare const addInstallmentEligibilityBadge: () => HTMLElement;
2
+ export declare const getInstallmentSection: () => HTMLElement;
@@ -0,0 +1,3 @@
1
+ import { IframeField } from "../../../../ui/iframe-field/index";
2
+ import InstallmentPlansData from "../contracts/installment-plans-data";
3
+ export declare function createInstallmentOptions(iFrameField: IframeField | undefined, installmentPlans: InstallmentPlansData): HTMLElement | undefined;
@@ -0,0 +1,2 @@
1
+ import InstallmentTerm from "../contracts/installment-term";
2
+ export declare function createInstallmentSection(sectionTitle: string, options: InstallmentTerm[], countLabel: string): HTMLElement;
@@ -0,0 +1,7 @@
1
+ export declare enum InstallmentLabels {
2
+ INSTALLMENT_DEFAULT_PAYMENT_OPTION = "pay-in-full",
3
+ INSTALLMENT_PAYMENT_OPTION_NAME = "payment-type",
4
+ INSTALLMENT_DEFAULT_PAYMENT_OPTION_LABEL = "PAY IN FULL",
5
+ INSTALLMENT_OPTION_MWI = "MONTHS WITHOUT INTEREST",
6
+ INSTALLMENT_OPTION_BNPL = "BUY NOW PAY LATER"
7
+ }
@@ -1020,6 +1020,76 @@ export declare const parentStyles: (assetBaseUrl: string, theme?: string | undef
1020
1020
  ".secure-payment-form .credit-card-installments": {
1021
1021
  "font-family": string;
1022
1022
  };
1023
+ ".secure-payment-form .installment-eligibility-badge": {
1024
+ display: string;
1025
+ alignItems: string;
1026
+ justifyContent: string;
1027
+ width: string;
1028
+ margin: string;
1029
+ };
1030
+ ".secure-payment-form .installment-badge": {
1031
+ display: string;
1032
+ "align-items": string;
1033
+ background: string;
1034
+ border: string;
1035
+ "border-radius": string;
1036
+ padding: string;
1037
+ "font-size": string;
1038
+ color: string;
1039
+ "font-weight": string;
1040
+ gap: string;
1041
+ };
1042
+ ".secure-payment-form .pay-in-full-option": {
1043
+ "padding-left": string;
1044
+ border: string;
1045
+ '&.checked': {
1046
+ border: string;
1047
+ };
1048
+ padding: string;
1049
+ display: string;
1050
+ gap: string;
1051
+ };
1052
+ ".secure-payment-form .pay-in-full-option label": {
1053
+ "font-size": string;
1054
+ "font-weight": string;
1055
+ };
1056
+ ".secure-payment-form .payment-option-content": {
1057
+ display: string;
1058
+ "flex-direction": string;
1059
+ gap: string;
1060
+ width: string;
1061
+ };
1062
+ ".secure-payment-form .installment-section": {
1063
+ border: string;
1064
+ };
1065
+ ".secure-payment-form .payment-option-text": {
1066
+ color: string;
1067
+ "font-size": string;
1068
+ "font-weight": string;
1069
+ };
1070
+ ".secure-payment-form .section-title": {
1071
+ display: string;
1072
+ "font-size": string;
1073
+ "font-weight": string;
1074
+ width: string;
1075
+ height: string;
1076
+ gap: string;
1077
+ padding: string;
1078
+ "align-items": string;
1079
+ "border-bottom": string;
1080
+ "text-transform": string;
1081
+ };
1082
+ ".secure-payment-form .installment-content": {
1083
+ padding: string;
1084
+ };
1085
+ ".secure-payment-form .installment-months-button": {
1086
+ padding: string;
1087
+ '&.checked': {
1088
+ border: string;
1089
+ };
1090
+ display: string;
1091
+ gap: string;
1092
+ };
1023
1093
  ".secure-payment-form .installment-issuer-panel": {
1024
1094
  background: string;
1025
1095
  display: string;
@@ -1019,6 +1019,76 @@ export declare const parentStyles: (assetBaseUrl: string, theme?: string | undef
1019
1019
  ".secure-payment-form .credit-card-installments": {
1020
1020
  "font-family": string;
1021
1021
  };
1022
+ ".secure-payment-form .installment-eligibility-badge": {
1023
+ display: string;
1024
+ alignItems: string;
1025
+ justifyContent: string;
1026
+ width: string;
1027
+ margin: string;
1028
+ };
1029
+ ".secure-payment-form .installment-badge": {
1030
+ display: string;
1031
+ "align-items": string;
1032
+ background: string;
1033
+ border: string;
1034
+ "border-radius": string;
1035
+ padding: string;
1036
+ "font-size": string;
1037
+ color: string;
1038
+ "font-weight": string;
1039
+ gap: string;
1040
+ };
1041
+ ".secure-payment-form .pay-in-full-option": {
1042
+ "padding-left": string;
1043
+ border: string;
1044
+ '&.checked': {
1045
+ border: string;
1046
+ };
1047
+ padding: string;
1048
+ display: string;
1049
+ gap: string;
1050
+ };
1051
+ ".secure-payment-form .pay-in-full-option label": {
1052
+ "font-size": string;
1053
+ "font-weight": string;
1054
+ };
1055
+ ".secure-payment-form .payment-option-content": {
1056
+ display: string;
1057
+ "flex-direction": string;
1058
+ gap: string;
1059
+ width: string;
1060
+ };
1061
+ ".secure-payment-form .installment-section": {
1062
+ border: string;
1063
+ };
1064
+ ".secure-payment-form .payment-option-text": {
1065
+ color: string;
1066
+ "font-size": string;
1067
+ "font-weight": string;
1068
+ };
1069
+ ".secure-payment-form .section-title": {
1070
+ display: string;
1071
+ "font-size": string;
1072
+ "font-weight": string;
1073
+ width: string;
1074
+ height: string;
1075
+ gap: string;
1076
+ padding: string;
1077
+ "align-items": string;
1078
+ "border-bottom": string;
1079
+ "text-transform": string;
1080
+ };
1081
+ ".secure-payment-form .installment-content": {
1082
+ padding: string;
1083
+ };
1084
+ ".secure-payment-form .installment-months-button": {
1085
+ padding: string;
1086
+ '&.checked': {
1087
+ border: string;
1088
+ };
1089
+ display: string;
1090
+ gap: string;
1091
+ };
1022
1092
  ".secure-payment-form .installment-issuer-panel": {
1023
1093
  background: string;
1024
1094
  display: string;
@@ -22,6 +22,76 @@ declare const styles: (assetBaseUrl: string) => {
22
22
  ".secure-payment-form .credit-card-installments": {
23
23
  "font-family": string;
24
24
  };
25
+ ".secure-payment-form .installment-eligibility-badge": {
26
+ display: string;
27
+ alignItems: string;
28
+ justifyContent: string;
29
+ width: string;
30
+ margin: string;
31
+ };
32
+ ".secure-payment-form .installment-badge": {
33
+ display: string;
34
+ "align-items": string;
35
+ background: string;
36
+ border: string;
37
+ "border-radius": string;
38
+ padding: string;
39
+ "font-size": string;
40
+ color: string;
41
+ "font-weight": string;
42
+ gap: string;
43
+ };
44
+ ".secure-payment-form .pay-in-full-option": {
45
+ "padding-left": string;
46
+ border: string;
47
+ '&.checked': {
48
+ border: string;
49
+ };
50
+ padding: string;
51
+ display: string;
52
+ gap: string;
53
+ };
54
+ ".secure-payment-form .pay-in-full-option label": {
55
+ "font-size": string;
56
+ "font-weight": string;
57
+ };
58
+ ".secure-payment-form .payment-option-content": {
59
+ display: string;
60
+ "flex-direction": string;
61
+ gap: string;
62
+ width: string;
63
+ };
64
+ ".secure-payment-form .installment-section": {
65
+ border: string;
66
+ };
67
+ ".secure-payment-form .payment-option-text": {
68
+ color: string;
69
+ "font-size": string;
70
+ "font-weight": string;
71
+ };
72
+ ".secure-payment-form .section-title": {
73
+ display: string;
74
+ "font-size": string;
75
+ "font-weight": string;
76
+ width: string;
77
+ height: string;
78
+ gap: string;
79
+ padding: string;
80
+ "align-items": string;
81
+ "border-bottom": string;
82
+ "text-transform": string;
83
+ };
84
+ ".secure-payment-form .installment-content": {
85
+ padding: string;
86
+ };
87
+ ".secure-payment-form .installment-months-button": {
88
+ padding: string;
89
+ '&.checked': {
90
+ border: string;
91
+ };
92
+ display: string;
93
+ gap: string;
94
+ };
25
95
  ".secure-payment-form .installment-issuer-panel": {
26
96
  background: string;
27
97
  display: string;
@@ -22,6 +22,76 @@ declare const styles: (assetBaseUrl: string) => {
22
22
  ".secure-payment-form .credit-card-installments": {
23
23
  "font-family": string;
24
24
  };
25
+ ".secure-payment-form .installment-eligibility-badge": {
26
+ display: string;
27
+ alignItems: string;
28
+ justifyContent: string;
29
+ width: string;
30
+ margin: string;
31
+ };
32
+ ".secure-payment-form .installment-badge": {
33
+ display: string;
34
+ "align-items": string;
35
+ background: string;
36
+ border: string;
37
+ "border-radius": string;
38
+ padding: string;
39
+ "font-size": string;
40
+ color: string;
41
+ "font-weight": string;
42
+ gap: string;
43
+ };
44
+ ".secure-payment-form .pay-in-full-option": {
45
+ "padding-left": string;
46
+ border: string;
47
+ '&.checked': {
48
+ border: string;
49
+ };
50
+ padding: string;
51
+ display: string;
52
+ gap: string;
53
+ };
54
+ ".secure-payment-form .pay-in-full-option label": {
55
+ "font-size": string;
56
+ "font-weight": string;
57
+ };
58
+ ".secure-payment-form .payment-option-content": {
59
+ display: string;
60
+ "flex-direction": string;
61
+ gap: string;
62
+ width: string;
63
+ };
64
+ ".secure-payment-form .installment-section": {
65
+ border: string;
66
+ };
67
+ ".secure-payment-form .payment-option-text": {
68
+ color: string;
69
+ "font-size": string;
70
+ "font-weight": string;
71
+ };
72
+ ".secure-payment-form .section-title": {
73
+ display: string;
74
+ "font-size": string;
75
+ "font-weight": string;
76
+ width: string;
77
+ height: string;
78
+ gap: string;
79
+ padding: string;
80
+ "align-items": string;
81
+ "border-bottom": string;
82
+ "text-transform": string;
83
+ };
84
+ ".secure-payment-form .installment-content": {
85
+ padding: string;
86
+ };
87
+ ".secure-payment-form .installment-months-button": {
88
+ padding: string;
89
+ '&.checked': {
90
+ border: string;
91
+ };
92
+ display: string;
93
+ gap: string;
94
+ };
25
95
  ".secure-payment-form .installment-issuer-panel": {
26
96
  background: string;
27
97
  display: string;
@@ -22,6 +22,76 @@ declare const styles: (assetBaseUrl: string) => {
22
22
  ".secure-payment-form .credit-card-installments": {
23
23
  "font-family": string;
24
24
  };
25
+ ".secure-payment-form .installment-eligibility-badge": {
26
+ display: string;
27
+ alignItems: string;
28
+ justifyContent: string;
29
+ width: string;
30
+ margin: string;
31
+ };
32
+ ".secure-payment-form .installment-badge": {
33
+ display: string;
34
+ "align-items": string;
35
+ background: string;
36
+ border: string;
37
+ "border-radius": string;
38
+ padding: string;
39
+ "font-size": string;
40
+ color: string;
41
+ "font-weight": string;
42
+ gap: string;
43
+ };
44
+ ".secure-payment-form .pay-in-full-option": {
45
+ "padding-left": string;
46
+ border: string;
47
+ '&.checked': {
48
+ border: string;
49
+ };
50
+ padding: string;
51
+ display: string;
52
+ gap: string;
53
+ };
54
+ ".secure-payment-form .pay-in-full-option label": {
55
+ "font-size": string;
56
+ "font-weight": string;
57
+ };
58
+ ".secure-payment-form .payment-option-content": {
59
+ display: string;
60
+ "flex-direction": string;
61
+ gap: string;
62
+ width: string;
63
+ };
64
+ ".secure-payment-form .installment-section": {
65
+ border: string;
66
+ };
67
+ ".secure-payment-form .payment-option-text": {
68
+ color: string;
69
+ "font-size": string;
70
+ "font-weight": string;
71
+ };
72
+ ".secure-payment-form .section-title": {
73
+ display: string;
74
+ "font-size": string;
75
+ "font-weight": string;
76
+ width: string;
77
+ height: string;
78
+ gap: string;
79
+ padding: string;
80
+ "align-items": string;
81
+ "border-bottom": string;
82
+ "text-transform": string;
83
+ };
84
+ ".secure-payment-form .installment-content": {
85
+ padding: string;
86
+ };
87
+ ".secure-payment-form .installment-months-button": {
88
+ padding: string;
89
+ '&.checked': {
90
+ border: string;
91
+ };
92
+ display: string;
93
+ gap: string;
94
+ };
25
95
  ".secure-payment-form .installment-issuer-panel": {
26
96
  background: string;
27
97
  display: string;
@@ -22,6 +22,76 @@ declare const styles: (assetBaseUrl: string) => {
22
22
  ".secure-payment-form .credit-card-installments": {
23
23
  "font-family": string;
24
24
  };
25
+ ".secure-payment-form .installment-eligibility-badge": {
26
+ display: string;
27
+ alignItems: string;
28
+ justifyContent: string;
29
+ width: string;
30
+ margin: string;
31
+ };
32
+ ".secure-payment-form .installment-badge": {
33
+ display: string;
34
+ "align-items": string;
35
+ background: string;
36
+ border: string;
37
+ "border-radius": string;
38
+ padding: string;
39
+ "font-size": string;
40
+ color: string;
41
+ "font-weight": string;
42
+ gap: string;
43
+ };
44
+ ".secure-payment-form .pay-in-full-option": {
45
+ "padding-left": string;
46
+ border: string;
47
+ '&.checked': {
48
+ border: string;
49
+ };
50
+ padding: string;
51
+ display: string;
52
+ gap: string;
53
+ };
54
+ ".secure-payment-form .pay-in-full-option label": {
55
+ "font-size": string;
56
+ "font-weight": string;
57
+ };
58
+ ".secure-payment-form .payment-option-content": {
59
+ display: string;
60
+ "flex-direction": string;
61
+ gap: string;
62
+ width: string;
63
+ };
64
+ ".secure-payment-form .installment-section": {
65
+ border: string;
66
+ };
67
+ ".secure-payment-form .payment-option-text": {
68
+ color: string;
69
+ "font-size": string;
70
+ "font-weight": string;
71
+ };
72
+ ".secure-payment-form .section-title": {
73
+ display: string;
74
+ "font-size": string;
75
+ "font-weight": string;
76
+ width: string;
77
+ height: string;
78
+ gap: string;
79
+ padding: string;
80
+ "align-items": string;
81
+ "border-bottom": string;
82
+ "text-transform": string;
83
+ };
84
+ ".secure-payment-form .installment-content": {
85
+ padding: string;
86
+ };
87
+ ".secure-payment-form .installment-months-button": {
88
+ padding: string;
89
+ '&.checked': {
90
+ border: string;
91
+ };
92
+ display: string;
93
+ gap: string;
94
+ };
25
95
  ".secure-payment-form .installment-issuer-panel": {
26
96
  background: string;
27
97
  display: string;