@globalpayments/js 3.0.12 → 4.0.9

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 (51) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
  3. package/types/common/currency.d.ts +1 -0
  4. package/types/common/enums.d.ts +2 -1
  5. package/types/common/helpers.d.ts +4 -0
  6. package/types/common/html-element.d.ts +27 -0
  7. package/types/internal/built-in-validations/messages.d.ts +3 -0
  8. package/types/internal/gateways/gp-api/action-query-currency-conversion.d.ts +3 -0
  9. package/types/internal/gateways/gp-api/index.d.ts +1 -0
  10. package/types/internal/gateways/index.d.ts +5 -0
  11. package/types/internal/lib/card.d.ts +29 -0
  12. package/types/internal/lib/currency-conversion/components/enums.d.ts +5 -0
  13. package/types/internal/lib/currency-conversion/components/events.d.ts +8 -0
  14. package/types/internal/lib/currency-conversion/components/template.d.ts +7 -0
  15. package/types/internal/lib/currency-conversion/contracts/constants.d.ts +5 -0
  16. package/types/internal/lib/currency-conversion/contracts/enums.d.ts +15 -0
  17. package/types/internal/lib/currency-conversion/contracts/interfaces.d.ts +13 -0
  18. package/types/internal/lib/currency-conversion/requests/query-currency-conversion.d.ts +3 -0
  19. package/types/internal/lib/currency-conversion/utils/helpers.d.ts +8 -0
  20. package/types/internal/lib/currency-conversion/utils/reset-currency-conversion.d.ts +7 -0
  21. package/types/internal/lib/detectLanguage.d.ts +1 -0
  22. package/types/internal/lib/styles/built-in-validations/simple.d.ts +3 -0
  23. package/types/internal/lib/styles/currency-conversion/common.d.ts +191 -0
  24. package/types/internal/lib/styles/currency-conversion/default.d.ts +204 -0
  25. package/types/internal/lib/styles/currency-conversion/gp-default.d.ts +197 -0
  26. package/types/internal/lib/styles/currency-conversion/simple.d.ts +204 -0
  27. package/types/internal/lib/styles/default.d.ts +262 -0
  28. package/types/internal/lib/styles/gp-default.d.ts +255 -47
  29. package/types/internal/lib/styles/simple.d.ts +265 -0
  30. package/types/internal/lib/styles/tooltip/common.d.ts +65 -0
  31. package/types/internal/lib/translations/en.d.ts +15 -0
  32. package/types/internal/validators/expiration.d.ts +7 -0
  33. package/types/lib/version.d.ts +1 -1
  34. package/types/tools/configure.d.ts +8 -0
  35. package/types/ui/form/index.d.ts +857 -114
  36. package/types/ui/iframe-field/apple-pay/action-add.d.ts +2 -0
  37. package/types/ui/iframe-field/click-to-pay/action-add.d.ts +2 -0
  38. package/types/ui/iframe-field/currency-conversion/action-add.d.ts +9 -0
  39. package/types/ui/iframe-field/currency-conversion/action-get-value.d.ts +8 -0
  40. package/types/ui/iframe-field/currency-conversion/action-request-accumulate-data.d.ts +9 -0
  41. package/types/ui/iframe-field/currency-conversion/action-request-data.d.ts +9 -0
  42. package/types/ui/iframe-field/currency-conversion/action-request-start.d.ts +8 -0
  43. package/types/ui/iframe-field/google-pay/action-add.d.ts +2 -0
  44. package/types/ui/iframe-field/index.d.ts +1 -1
  45. package/types/ui/iframe-field/installments/action-add.d.ts +3 -0
  46. package/types/ui/iframe-field/installments/action-request-accumulate-data.d.ts +3 -0
  47. package/types/ui/iframe-field/installments/action-request-data.d.ts +3 -0
  48. package/types/ui/iframe-field/installments/action-request-start.d.ts +6 -0
  49. package/types/ui/iframe-field/open-banking/action-add.d.ts +2 -0
  50. package/types/ui/iframe-field/qr-code-payment-methods/action-add.d.ts +3 -0
  51. package/types/ui/iframe-field/qr-code-payment-methods/action-request-start.d.ts +6 -0
@@ -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
+ };
@@ -30,6 +30,11 @@ export declare const fieldStyles: (assetBaseUrl: string) => {
30
30
  "#secure-payment-field[type=text].hf-invalid"?: {
31
31
  border: string;
32
32
  };
33
+ "#secure-payment-field[hidden]"?: {
34
+ display: string;
35
+ opacity: string;
36
+ visibility: string;
37
+ };
33
38
  "#secure-payment-field": {
34
39
  "-o-transition": string;
35
40
  "-webkit-box-shadow": string;
@@ -353,6 +358,201 @@ export declare const parentStyles: (assetBaseUrl: string) => {
353
358
  "font-size": string;
354
359
  "line-height": string;
355
360
  };
361
+ ".secure-payment-form .credit-card-currency-conversion .currency-conversion-container"?: {
362
+ width: string;
363
+ "flex-wrap": string;
364
+ };
365
+ ".secure-payment-form .credit-card-currency-conversion legend"?: {
366
+ "font-family": string;
367
+ color: string;
368
+ "font-size": string;
369
+ "font-weight": string;
370
+ "line-height": string;
371
+ "text-transform": string;
372
+ };
373
+ ".secure-payment-form .credit-card-currency-conversion fieldset"?: {
374
+ "font-family": string;
375
+ border: string;
376
+ margin: string;
377
+ padding: string;
378
+ display: string;
379
+ "flex-wrap": string;
380
+ width: string;
381
+ };
382
+ ".secure-payment-form .credit-card-currency-conversion .radio-button"?: {
383
+ display: string;
384
+ "justify-content": string;
385
+ "align-items": string;
386
+ border: string;
387
+ padding: string;
388
+ "white-space": string;
389
+ height: string;
390
+ "margin-right": string;
391
+ };
392
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:last-child"?: {
393
+ "margin-right": string;
394
+ };
395
+ ".secure-payment-form .credit-card-currency-conversion .radio-button label"?: {
396
+ "font-family": string;
397
+ "font-size": string;
398
+ "font-weight": number;
399
+ display: string;
400
+ margin: string;
401
+ };
402
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked label"?: {
403
+ color: string;
404
+ };
405
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content"?: {
406
+ opacity: string;
407
+ visibility: boolean;
408
+ display: string;
409
+ "flex-direction": string;
410
+ margin: string;
411
+ "align-items": string;
412
+ height: string;
413
+ };
414
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content"?: {
415
+ opacity: string;
416
+ visibility: boolean;
417
+ display: string;
418
+ "flex-direction": string;
419
+ margin: string;
420
+ "align-items": string;
421
+ height: string;
422
+ };
423
+ ".secure-payment-form .credit-card-currency-conversion .additional-info p"?: {
424
+ "font-family": string;
425
+ margin: string;
426
+ "font-style": string;
427
+ };
428
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p"?: {
429
+ "font-family": string;
430
+ margin: string;
431
+ };
432
+ ".secure-payment-form .currency-conversion-container"?: {
433
+ display: string;
434
+ "flex-direction": string;
435
+ "align-items": string;
436
+ };
437
+ ".secure-payment-form .credit-card-currency-conversion iframe"?: {
438
+ "min-height": string;
439
+ };
440
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:hover"?: {
441
+ "border-color": string;
442
+ };
443
+ ".secure-payment-form .credit-card-currency-conversion fieldset:focus-within > .radio-button"?: {
444
+ outline: string;
445
+ "outline-offset": string;
446
+ };
447
+ ".secure-payment-form .credit-card-currency-conversion fieldset.no-focus-outline .radio-button.checked"?: {
448
+ outline: string;
449
+ "outline-offset": string;
450
+ };
451
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked"?: {
452
+ background: string;
453
+ "border-color": string;
454
+ color: string;
455
+ outline: string;
456
+ };
457
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']"?: {
458
+ margin: string;
459
+ appearance: string;
460
+ "-webkit-appearance": string;
461
+ "-moz-appearance": string;
462
+ border: string;
463
+ "border-radius": string;
464
+ width: string;
465
+ height: string;
466
+ display: string;
467
+ position: string;
468
+ padding: string;
469
+ };
470
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:checked"?: {
471
+ "background-color": string;
472
+ border: string;
473
+ };
474
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:focus"?: {
475
+ outline: string;
476
+ };
477
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content.visible"?: {
478
+ display: string;
479
+ opacity: string;
480
+ visibility: boolean;
481
+ };
482
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content.visible"?: {
483
+ display: string;
484
+ opacity: string;
485
+ visibility: boolean;
486
+ };
487
+ ".secure-payment-form .credit-card-currency-conversion .additional-info"?: {
488
+ "font-family": string;
489
+ "font-size": string;
490
+ "font-weight": number;
491
+ margin: string;
492
+ display: string;
493
+ };
494
+ ".secure-payment-form .credit-card-currency-conversion .tooltip"?: {
495
+ width: string;
496
+ height: string;
497
+ "min-width": string;
498
+ "border-left": string;
499
+ display: string;
500
+ };
501
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover"?: {
502
+ "border-left": string;
503
+ };
504
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:focus"?: {
505
+ "border-left": string;
506
+ };
507
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content"?: {
508
+ bottom: string;
509
+ right: string;
510
+ display: string;
511
+ };
512
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover .tooltip-content"?: {
513
+ display: string;
514
+ };
515
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p:last-child"?: {
516
+ "margin-bottom": string;
517
+ };
518
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before"?: {
519
+ left: string;
520
+ top: string;
521
+ right: string;
522
+ transform: string;
523
+ "border-width": string;
524
+ "border-style": string;
525
+ "border-color": string;
526
+ };
527
+ "@media only screen and (max-width: 768px)"?: {
528
+ ".secure-payment-form .currency-conversion-container": {
529
+ "flex-direction": string;
530
+ "align-items": string;
531
+ };
532
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
533
+ "justify-content": string;
534
+ };
535
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
536
+ width: string;
537
+ "justify-content": string;
538
+ };
539
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:first-child": {
540
+ margin: string;
541
+ };
542
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
543
+ width: string;
544
+ "margin-top": string;
545
+ "margin-left": string;
546
+ };
547
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
548
+ width: string;
549
+ "margin-top": string;
550
+ "margin-left": string;
551
+ };
552
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
553
+ right: string;
554
+ };
555
+ };
356
556
  "#googlePay": {
357
557
  height: string;
358
558
  margin: string;
@@ -655,6 +855,68 @@ export declare const parentStyles: (assetBaseUrl: string) => {
655
855
  display: string;
656
856
  margin: string;
657
857
  };
858
+ ".secure-payment-form .tooltip": {
859
+ position: string;
860
+ width: string;
861
+ height: string;
862
+ border: string;
863
+ "border-left": string;
864
+ color: string;
865
+ float: string;
866
+ "background-size": string;
867
+ background: string;
868
+ "font-family": string;
869
+ };
870
+ ".secure-payment-form .tooltip:focus": {
871
+ border: string;
872
+ outline: string;
873
+ "border-left": string;
874
+ };
875
+ ".secure-payment-form .tooltip:hover": {
876
+ border: string;
877
+ outline: string;
878
+ "border-left": string;
879
+ };
880
+ ".secure-payment-form .tooltip-content": {
881
+ visibility: string;
882
+ width: string;
883
+ "background-color": string;
884
+ color: string;
885
+ "text-align": string;
886
+ "border-radius": string;
887
+ border: string;
888
+ padding: string;
889
+ position: string;
890
+ "z-index": string;
891
+ right: string;
892
+ opacity: string;
893
+ transition: string;
894
+ "font-size": string;
895
+ "font-weight": string;
896
+ "box-shadow": string;
897
+ "margin-top": string;
898
+ "margin-right": string;
899
+ };
900
+ ".secure-payment-form .tooltip-content h4": {
901
+ margin: string;
902
+ };
903
+ ".secure-payment-form .tooltip:hover > .tooltip-content": {
904
+ visibility: string;
905
+ opacity: string;
906
+ };
907
+ ".secure-payment-form .tooltip:focus > .tooltip-content": {
908
+ visibility: string;
909
+ opacity: string;
910
+ };
911
+ ".secure-payment-form .tooltip-content::before": {
912
+ position: string;
913
+ content: string;
914
+ right: string;
915
+ top: string;
916
+ "border-left": string;
917
+ "border-right": string;
918
+ "border-bottom": string;
919
+ };
658
920
  ".secure-payment-form": {
659
921
  "font-family": string;
660
922
  };