@globalpayments/js 4.0.11 → 4.0.13

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 (81) hide show
  1. package/README.md +1 -1
  2. package/package.json +7 -2
  3. package/types/apm/qr-code-payments/enums.d.ts +2 -1
  4. package/types/common/currency.d.ts +1 -0
  5. package/types/common/enums.d.ts +8 -1
  6. package/types/common/helpers.d.ts +4 -0
  7. package/types/common/html-element.d.ts +27 -0
  8. package/types/internal/built-in-validations/messages.d.ts +3 -0
  9. package/types/internal/gateways/gp-api/action-query-currency-conversion.d.ts +3 -0
  10. package/types/internal/gateways/gp-api/index.d.ts +2 -1
  11. package/types/internal/gateways/index.d.ts +6 -1
  12. package/types/internal/lib/card.d.ts +29 -0
  13. package/types/internal/lib/currency-conversion/components/enums.d.ts +5 -0
  14. package/types/internal/lib/currency-conversion/components/events.d.ts +8 -0
  15. package/types/internal/lib/currency-conversion/components/template.d.ts +7 -0
  16. package/types/internal/lib/currency-conversion/contracts/constants.d.ts +5 -0
  17. package/types/internal/lib/currency-conversion/contracts/enums.d.ts +15 -0
  18. package/types/internal/lib/currency-conversion/contracts/interfaces.d.ts +13 -0
  19. package/types/internal/lib/currency-conversion/requests/query-currency-conversion.d.ts +3 -0
  20. package/types/internal/lib/currency-conversion/utils/helpers.d.ts +8 -0
  21. package/types/internal/lib/currency-conversion/utils/reset-currency-conversion.d.ts +7 -0
  22. package/types/internal/lib/detectLanguage.d.ts +2 -0
  23. package/types/internal/lib/enums.d.ts +8 -0
  24. package/types/internal/lib/set-headers.d.ts +7 -0
  25. package/types/internal/lib/styles/built-in-validations/simple.d.ts +3 -0
  26. package/types/internal/lib/styles/currency-conversion/common.d.ts +191 -0
  27. package/types/internal/lib/styles/currency-conversion/default.d.ts +204 -0
  28. package/types/internal/lib/styles/currency-conversion/gp-default.d.ts +197 -0
  29. package/types/internal/lib/styles/currency-conversion/simple.d.ts +204 -0
  30. package/types/internal/lib/styles/default.d.ts +286 -1
  31. package/types/internal/lib/styles/gp-default.d.ts +279 -48
  32. package/types/internal/lib/styles/payment-methods/common.d.ts +23 -0
  33. package/types/internal/lib/styles/payment-methods/paypal.d.ts +26 -0
  34. package/types/internal/lib/styles/qr-code-payments/common.d.ts +8 -0
  35. package/types/internal/lib/styles/simple.d.ts +265 -1
  36. package/types/internal/lib/styles/tooltip/common.d.ts +65 -0
  37. package/types/internal/lib/translations/cs.d.ts +58 -0
  38. package/types/internal/lib/translations/de.d.ts +58 -0
  39. package/types/internal/lib/translations/el.d.ts +58 -0
  40. package/types/internal/lib/translations/en.d.ts +15 -0
  41. package/types/internal/lib/translations/es.d.ts +58 -0
  42. package/types/internal/lib/translations/fr.d.ts +4 -31
  43. package/types/internal/lib/translations/hr.d.ts +58 -0
  44. package/types/internal/lib/translations/hu.d.ts +58 -0
  45. package/types/internal/lib/translations/it.d.ts +58 -0
  46. package/types/internal/lib/translations/ja.d.ts +58 -0
  47. package/types/internal/lib/translations/mt.d.ts +58 -0
  48. package/types/internal/lib/translations/nl.d.ts +58 -0
  49. package/types/internal/lib/translations/pl.d.ts +58 -0
  50. package/types/internal/lib/translations/pt.d.ts +58 -0
  51. package/types/internal/lib/translations/ro.d.ts +58 -0
  52. package/types/internal/lib/translations/ru.d.ts +58 -0
  53. package/types/internal/lib/translations/sk.d.ts +58 -0
  54. package/types/internal/lib/translations/sl.d.ts +58 -0
  55. package/types/internal/lib/translations/sv.d.ts +58 -0
  56. package/types/internal/lib/translations/tr.d.ts +58 -0
  57. package/types/internal/lib/translations/uk.d.ts +58 -0
  58. package/types/internal/lib/translations/vi.d.ts +58 -0
  59. package/types/internal/lib/translations/zh.d.ts +8 -0
  60. package/types/internal/validators/expiration.d.ts +7 -0
  61. package/types/lib/version.d.ts +1 -1
  62. package/types/tools/configure.d.ts +8 -0
  63. package/types/ui/form/index.d.ts +861 -94
  64. package/types/ui/iframe-field/apple-pay/action-add.d.ts +2 -0
  65. package/types/ui/iframe-field/click-to-pay/action-add.d.ts +2 -0
  66. package/types/ui/iframe-field/currency-conversion/action-add.d.ts +9 -0
  67. package/types/ui/iframe-field/currency-conversion/action-get-value.d.ts +8 -0
  68. package/types/ui/iframe-field/currency-conversion/action-request-accumulate-data.d.ts +9 -0
  69. package/types/ui/iframe-field/currency-conversion/action-request-data.d.ts +9 -0
  70. package/types/ui/iframe-field/currency-conversion/action-request-start.d.ts +8 -0
  71. package/types/ui/iframe-field/google-pay/action-add.d.ts +2 -0
  72. package/types/ui/iframe-field/index.d.ts +1 -1
  73. package/types/ui/iframe-field/installments/action-add.d.ts +3 -0
  74. package/types/ui/iframe-field/installments/action-request-accumulate-data.d.ts +3 -0
  75. package/types/ui/iframe-field/installments/action-request-data.d.ts +3 -0
  76. package/types/ui/iframe-field/installments/action-request-start.d.ts +6 -0
  77. package/types/ui/iframe-field/open-banking/action-add.d.ts +2 -0
  78. package/types/ui/iframe-field/payment-methods/action-add.d.ts +3 -0
  79. package/types/ui/iframe-field/qr-code-payment-methods/action-add.d.ts +3 -0
  80. package/types/ui/iframe-field/qr-code-payment-methods/action-request-start.d.ts +6 -0
  81. package/types/internal/lib/eums.d.ts +0 -11
@@ -0,0 +1,204 @@
1
+ export declare const fieldStyles: () => {
2
+ "#secure-payment-field[hidden]": {
3
+ display: string;
4
+ opacity: string;
5
+ visibility: string;
6
+ };
7
+ };
8
+ export declare const styles: () => {
9
+ ".secure-payment-form .credit-card-currency-conversion .currency-conversion-container": {
10
+ width: string;
11
+ "flex-wrap": string;
12
+ };
13
+ ".secure-payment-form .credit-card-currency-conversion legend": {
14
+ "font-family": string;
15
+ color: string;
16
+ "font-size": string;
17
+ "font-weight": string;
18
+ "line-height": string;
19
+ "text-transform": string;
20
+ };
21
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
22
+ "font-family": string;
23
+ border: string;
24
+ margin: string;
25
+ padding: string;
26
+ display: string;
27
+ "flex-wrap": string;
28
+ width: string;
29
+ };
30
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
31
+ display: string;
32
+ "justify-content": string;
33
+ "align-items": string;
34
+ border: string;
35
+ padding: string;
36
+ "white-space": string;
37
+ height: string;
38
+ "margin-right": string;
39
+ };
40
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:last-child": {
41
+ "margin-right": string;
42
+ };
43
+ ".secure-payment-form .credit-card-currency-conversion .radio-button label": {
44
+ "font-family": string;
45
+ "font-size": string;
46
+ "font-weight": number;
47
+ display: string;
48
+ margin: string;
49
+ };
50
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked label": {
51
+ color: string;
52
+ };
53
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
54
+ opacity: string;
55
+ visibility: boolean;
56
+ display: string;
57
+ "flex-direction": string;
58
+ margin: string;
59
+ "align-items": string;
60
+ height: string;
61
+ };
62
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
63
+ opacity: string;
64
+ visibility: boolean;
65
+ display: string;
66
+ "flex-direction": string;
67
+ margin: string;
68
+ "align-items": string;
69
+ height: string;
70
+ };
71
+ ".secure-payment-form .credit-card-currency-conversion .additional-info p": {
72
+ "font-family": string;
73
+ margin: string;
74
+ "font-style": string;
75
+ };
76
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p": {
77
+ "font-family": string;
78
+ margin: string;
79
+ };
80
+ ".secure-payment-form .currency-conversion-container": {
81
+ display: string;
82
+ "flex-direction": string;
83
+ "align-items": string;
84
+ };
85
+ ".secure-payment-form .credit-card-currency-conversion iframe": {
86
+ "min-height": string;
87
+ };
88
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:hover": {
89
+ "border-color": string;
90
+ };
91
+ ".secure-payment-form .credit-card-currency-conversion fieldset:focus-within > .radio-button": {
92
+ outline: string;
93
+ "outline-offset": string;
94
+ };
95
+ ".secure-payment-form .credit-card-currency-conversion fieldset.no-focus-outline .radio-button.checked": {
96
+ outline: string;
97
+ "outline-offset": string;
98
+ };
99
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked": {
100
+ background: string;
101
+ "border-color": string;
102
+ color: string;
103
+ outline: string;
104
+ };
105
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']": {
106
+ margin: string;
107
+ appearance: string;
108
+ "-webkit-appearance": string;
109
+ "-moz-appearance": string;
110
+ border: string;
111
+ "border-radius": string;
112
+ width: string;
113
+ height: string;
114
+ display: string;
115
+ position: string;
116
+ padding: string;
117
+ };
118
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:checked": {
119
+ "background-color": string;
120
+ border: string;
121
+ };
122
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:focus": {
123
+ outline: string;
124
+ };
125
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content.visible": {
126
+ display: string;
127
+ opacity: string;
128
+ visibility: boolean;
129
+ };
130
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content.visible": {
131
+ display: string;
132
+ opacity: string;
133
+ visibility: boolean;
134
+ };
135
+ ".secure-payment-form .credit-card-currency-conversion .additional-info": {
136
+ "font-family": string;
137
+ "font-size": string;
138
+ "font-weight": number;
139
+ margin: string;
140
+ display: string;
141
+ };
142
+ ".secure-payment-form .credit-card-currency-conversion .tooltip": {
143
+ width: string;
144
+ height: string;
145
+ "min-width": string;
146
+ "border-left": string;
147
+ display: string;
148
+ };
149
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover": {
150
+ "border-left": string;
151
+ };
152
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:focus": {
153
+ "border-left": string;
154
+ };
155
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content": {
156
+ bottom: string;
157
+ right: string;
158
+ display: string;
159
+ };
160
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover .tooltip-content": {
161
+ display: string;
162
+ };
163
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p:last-child": {
164
+ "margin-bottom": string;
165
+ };
166
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
167
+ left: string;
168
+ top: string;
169
+ right: string;
170
+ transform: string;
171
+ "border-width": string;
172
+ "border-style": string;
173
+ "border-color": string;
174
+ };
175
+ "@media only screen and (max-width: 768px)": {
176
+ ".secure-payment-form .currency-conversion-container": {
177
+ "flex-direction": string;
178
+ "align-items": string;
179
+ };
180
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
181
+ "justify-content": string;
182
+ };
183
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
184
+ width: string;
185
+ "justify-content": string;
186
+ };
187
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:first-child": {
188
+ margin: string;
189
+ };
190
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
191
+ width: string;
192
+ "margin-top": string;
193
+ "margin-left": string;
194
+ };
195
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
196
+ width: string;
197
+ "margin-top": string;
198
+ "margin-left": string;
199
+ };
200
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
201
+ right: string;
202
+ };
203
+ };
204
+ };
@@ -0,0 +1,197 @@
1
+ export declare const fieldStyles: () => {
2
+ "#secure-payment-field[hidden]": {
3
+ display: string;
4
+ opacity: string;
5
+ visibility: string;
6
+ };
7
+ };
8
+ export declare const styles: () => {
9
+ ".secure-payment-form .currency-conversion-container": {
10
+ display: string;
11
+ "flex-direction": string;
12
+ "align-items": string;
13
+ };
14
+ ".secure-payment-form .credit-card-currency-conversion iframe": {
15
+ "min-height": string;
16
+ };
17
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
18
+ "font-family": string;
19
+ border: string;
20
+ margin: string;
21
+ padding: string;
22
+ display: string;
23
+ "flex-wrap": string;
24
+ };
25
+ ".secure-payment-form .credit-card-currency-conversion legend": {
26
+ "font-family": string;
27
+ border: number;
28
+ top: string;
29
+ margin: string;
30
+ padding: number;
31
+ display: string;
32
+ "font-size": string;
33
+ "font-weight": number;
34
+ position: string;
35
+ };
36
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
37
+ display: string;
38
+ "justify-content": string;
39
+ "align-items": string;
40
+ border: string;
41
+ padding: string;
42
+ "white-space": string;
43
+ height: string;
44
+ "margin-right": string;
45
+ };
46
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:last-child": {
47
+ "margin-right": string;
48
+ };
49
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:hover": {
50
+ "border-color": string;
51
+ };
52
+ ".secure-payment-form .credit-card-currency-conversion fieldset:focus-within > .radio-button": {
53
+ outline: string;
54
+ "outline-offset": string;
55
+ };
56
+ ".secure-payment-form .credit-card-currency-conversion fieldset.no-focus-outline .radio-button.checked": {
57
+ outline: string;
58
+ "outline-offset": string;
59
+ };
60
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked": {
61
+ background: string;
62
+ "border-color": string;
63
+ color: string;
64
+ outline: string;
65
+ };
66
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']": {
67
+ margin: string;
68
+ appearance: string;
69
+ "-webkit-appearance": string;
70
+ "-moz-appearance": string;
71
+ border: string;
72
+ "border-radius": string;
73
+ width: string;
74
+ height: string;
75
+ display: string;
76
+ position: string;
77
+ padding: string;
78
+ };
79
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:checked": {
80
+ "background-color": string;
81
+ border: string;
82
+ };
83
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:focus": {
84
+ outline: string;
85
+ };
86
+ ".secure-payment-form .credit-card-currency-conversion .radio-button label": {
87
+ "font-family": string;
88
+ "font-size": string;
89
+ "font-weight": number;
90
+ display: string;
91
+ margin: string;
92
+ };
93
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
94
+ opacity: string;
95
+ visibility: boolean;
96
+ display: string;
97
+ "flex-direction": string;
98
+ "margin-left": string;
99
+ "align-items": string;
100
+ height: string;
101
+ };
102
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content.visible": {
103
+ display: string;
104
+ opacity: string;
105
+ visibility: boolean;
106
+ };
107
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
108
+ opacity: string;
109
+ visibility: boolean;
110
+ display: string;
111
+ "flex-direction": string;
112
+ "margin-left": string;
113
+ "align-items": string;
114
+ height: string;
115
+ };
116
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content.visible": {
117
+ display: string;
118
+ opacity: string;
119
+ visibility: boolean;
120
+ };
121
+ ".secure-payment-form .credit-card-currency-conversion .additional-info": {
122
+ "font-family": string;
123
+ "font-size": string;
124
+ "font-weight": number;
125
+ margin: string;
126
+ display: string;
127
+ };
128
+ ".secure-payment-form .credit-card-currency-conversion .additional-info p": {
129
+ margin: string;
130
+ "font-style": string;
131
+ };
132
+ ".secure-payment-form .credit-card-currency-conversion .tooltip": {
133
+ width: string;
134
+ height: string;
135
+ "min-width": string;
136
+ "border-left": string;
137
+ display: string;
138
+ };
139
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover": {
140
+ "border-left": string;
141
+ };
142
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:focus": {
143
+ "border-left": string;
144
+ };
145
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content": {
146
+ bottom: string;
147
+ right: string;
148
+ display: string;
149
+ };
150
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover .tooltip-content": {
151
+ display: string;
152
+ };
153
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p": {
154
+ margin: string;
155
+ };
156
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p:last-child": {
157
+ "margin-bottom": string;
158
+ };
159
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
160
+ left: string;
161
+ top: string;
162
+ right: string;
163
+ transform: string;
164
+ "border-width": string;
165
+ "border-style": string;
166
+ "border-color": string;
167
+ };
168
+ "@media only screen and (max-width: 768px)": {
169
+ ".secure-payment-form .currency-conversion-container": {
170
+ "flex-direction": string;
171
+ "align-items": string;
172
+ };
173
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
174
+ "justify-content": string;
175
+ };
176
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
177
+ width: string;
178
+ "justify-content": string;
179
+ };
180
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:first-child": {
181
+ margin: string;
182
+ };
183
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
184
+ width: string;
185
+ "margin-top": string;
186
+ "margin-left": string;
187
+ };
188
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
189
+ width: string;
190
+ "margin-top": string;
191
+ "margin-left": string;
192
+ };
193
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
194
+ right: string;
195
+ };
196
+ };
197
+ };
@@ -0,0 +1,204 @@
1
+ export declare const fieldStyles: () => {
2
+ "#secure-payment-field[hidden]": {
3
+ display: string;
4
+ opacity: string;
5
+ visibility: string;
6
+ };
7
+ };
8
+ export declare const styles: () => {
9
+ ".secure-payment-form .credit-card-currency-conversion legend": {
10
+ "font-family": string;
11
+ color: string;
12
+ "font-size": string;
13
+ "font-weight": string;
14
+ "line-height": string;
15
+ "text-transform": string;
16
+ "margin-bottom": string;
17
+ };
18
+ ".secure-payment-form .credit-card-currency-conversion .currency-conversion-container": {
19
+ "margin-bottom": string;
20
+ "flex-wrap": string;
21
+ };
22
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content": {
23
+ display: string;
24
+ bottom: string;
25
+ right: string;
26
+ };
27
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
28
+ display: string;
29
+ "justify-content": string;
30
+ "align-items": string;
31
+ border: string;
32
+ padding: string;
33
+ "white-space": string;
34
+ height: string;
35
+ "margin-right": string;
36
+ };
37
+ ".secure-payment-form .credit-card-currency-conversion .radio-button label": {
38
+ "font-family": string;
39
+ "font-size": string;
40
+ "font-weight": number;
41
+ display: string;
42
+ margin: string;
43
+ };
44
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked label": {
45
+ color: string;
46
+ };
47
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
48
+ opacity: string;
49
+ visibility: boolean;
50
+ display: string;
51
+ "flex-direction": string;
52
+ margin: string;
53
+ "align-items": string;
54
+ height: string;
55
+ };
56
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
57
+ opacity: string;
58
+ visibility: boolean;
59
+ display: string;
60
+ "flex-direction": string;
61
+ margin: string;
62
+ "align-items": string;
63
+ height: string;
64
+ };
65
+ ".secure-payment-form .credit-card-currency-conversion .additional-info p": {
66
+ "font-family": string;
67
+ margin: string;
68
+ "font-style": string;
69
+ };
70
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p": {
71
+ "font-family": string;
72
+ margin: string;
73
+ };
74
+ ".secure-payment-form .currency-conversion-container": {
75
+ display: string;
76
+ "flex-direction": string;
77
+ "align-items": string;
78
+ };
79
+ ".secure-payment-form .credit-card-currency-conversion iframe": {
80
+ "min-height": string;
81
+ };
82
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
83
+ "font-family": string;
84
+ border: string;
85
+ margin: string;
86
+ padding: string;
87
+ display: string;
88
+ "flex-wrap": string;
89
+ };
90
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:last-child": {
91
+ "margin-right": string;
92
+ };
93
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:hover": {
94
+ "border-color": string;
95
+ };
96
+ ".secure-payment-form .credit-card-currency-conversion fieldset:focus-within > .radio-button": {
97
+ outline: string;
98
+ "outline-offset": string;
99
+ };
100
+ ".secure-payment-form .credit-card-currency-conversion fieldset.no-focus-outline .radio-button.checked": {
101
+ outline: string;
102
+ "outline-offset": string;
103
+ };
104
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked": {
105
+ background: string;
106
+ "border-color": string;
107
+ color: string;
108
+ outline: string;
109
+ };
110
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']": {
111
+ margin: string;
112
+ appearance: string;
113
+ "-webkit-appearance": string;
114
+ "-moz-appearance": string;
115
+ border: string;
116
+ "border-radius": string;
117
+ width: string;
118
+ height: string;
119
+ display: string;
120
+ position: string;
121
+ padding: string;
122
+ };
123
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:checked": {
124
+ "background-color": string;
125
+ border: string;
126
+ };
127
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:focus": {
128
+ outline: string;
129
+ };
130
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content.visible": {
131
+ display: string;
132
+ opacity: string;
133
+ visibility: boolean;
134
+ };
135
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content.visible": {
136
+ display: string;
137
+ opacity: string;
138
+ visibility: boolean;
139
+ };
140
+ ".secure-payment-form .credit-card-currency-conversion .additional-info": {
141
+ "font-family": string;
142
+ "font-size": string;
143
+ "font-weight": number;
144
+ margin: string;
145
+ display: string;
146
+ };
147
+ ".secure-payment-form .credit-card-currency-conversion .tooltip": {
148
+ width: string;
149
+ height: string;
150
+ "min-width": string;
151
+ "border-left": string;
152
+ display: string;
153
+ };
154
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover": {
155
+ "border-left": string;
156
+ };
157
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:focus": {
158
+ "border-left": string;
159
+ };
160
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover .tooltip-content": {
161
+ display: string;
162
+ };
163
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p:last-child": {
164
+ "margin-bottom": string;
165
+ };
166
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
167
+ left: string;
168
+ top: string;
169
+ right: string;
170
+ transform: string;
171
+ "border-width": string;
172
+ "border-style": string;
173
+ "border-color": string;
174
+ };
175
+ "@media only screen and (max-width: 768px)": {
176
+ ".secure-payment-form .currency-conversion-container": {
177
+ "flex-direction": string;
178
+ "align-items": string;
179
+ };
180
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
181
+ "justify-content": string;
182
+ };
183
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
184
+ width: string;
185
+ "justify-content": string;
186
+ };
187
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:first-child": {
188
+ margin: string;
189
+ };
190
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
191
+ width: string;
192
+ "margin-top": string;
193
+ "margin-left": string;
194
+ };
195
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
196
+ width: string;
197
+ "margin-top": string;
198
+ "margin-left": string;
199
+ };
200
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
201
+ right: string;
202
+ };
203
+ };
204
+ };