@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
@@ -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;
@@ -278,6 +283,29 @@ export declare const parentStyles: (assetBaseUrl: string) => {
278
283
  "font-size": string;
279
284
  "line-height": string;
280
285
  };
286
+ ".secure-payment-form .paypal-button-wrapper": {
287
+ display: string;
288
+ "flex-direction": string;
289
+ "align-items": string;
290
+ };
291
+ ".secure-payment-form .paypal-button": {
292
+ position: string;
293
+ background: string;
294
+ height: string;
295
+ border: string;
296
+ width: string;
297
+ "border-radius": string;
298
+ margin: string;
299
+ cursor: string;
300
+ };
301
+ ".secure-payment-form .paypal-button:hover": {
302
+ "background-color": string;
303
+ };
304
+ ".secure-payment-form .paypal-button:focus": {
305
+ "background-color": string;
306
+ outline: string;
307
+ "outline-offset": string;
308
+ };
281
309
  ".secure-payment-form .open-banking-button-wrapper": {
282
310
  display: string;
283
311
  "flex-direction": string;
@@ -353,6 +381,201 @@ export declare const parentStyles: (assetBaseUrl: string) => {
353
381
  "font-size": string;
354
382
  "line-height": string;
355
383
  };
384
+ ".secure-payment-form .credit-card-currency-conversion .currency-conversion-container"?: {
385
+ width: string;
386
+ "flex-wrap": string;
387
+ };
388
+ ".secure-payment-form .credit-card-currency-conversion legend"?: {
389
+ "font-family": string;
390
+ color: string;
391
+ "font-size": string;
392
+ "font-weight": string;
393
+ "line-height": string;
394
+ "text-transform": string;
395
+ };
396
+ ".secure-payment-form .credit-card-currency-conversion fieldset"?: {
397
+ "font-family": string;
398
+ border: string;
399
+ margin: string;
400
+ padding: string;
401
+ display: string;
402
+ "flex-wrap": string;
403
+ width: string;
404
+ };
405
+ ".secure-payment-form .credit-card-currency-conversion .radio-button"?: {
406
+ display: string;
407
+ "justify-content": string;
408
+ "align-items": string;
409
+ border: string;
410
+ padding: string;
411
+ "white-space": string;
412
+ height: string;
413
+ "margin-right": string;
414
+ };
415
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:last-child"?: {
416
+ "margin-right": string;
417
+ };
418
+ ".secure-payment-form .credit-card-currency-conversion .radio-button label"?: {
419
+ "font-family": string;
420
+ "font-size": string;
421
+ "font-weight": number;
422
+ display: string;
423
+ margin: string;
424
+ };
425
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked label"?: {
426
+ color: string;
427
+ };
428
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content"?: {
429
+ opacity: string;
430
+ visibility: boolean;
431
+ display: string;
432
+ "flex-direction": string;
433
+ margin: string;
434
+ "align-items": string;
435
+ height: string;
436
+ };
437
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content"?: {
438
+ opacity: string;
439
+ visibility: boolean;
440
+ display: string;
441
+ "flex-direction": string;
442
+ margin: string;
443
+ "align-items": string;
444
+ height: string;
445
+ };
446
+ ".secure-payment-form .credit-card-currency-conversion .additional-info p"?: {
447
+ "font-family": string;
448
+ margin: string;
449
+ "font-style": string;
450
+ };
451
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p"?: {
452
+ "font-family": string;
453
+ margin: string;
454
+ };
455
+ ".secure-payment-form .currency-conversion-container"?: {
456
+ display: string;
457
+ "flex-direction": string;
458
+ "align-items": string;
459
+ };
460
+ ".secure-payment-form .credit-card-currency-conversion iframe"?: {
461
+ "min-height": string;
462
+ };
463
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:hover"?: {
464
+ "border-color": string;
465
+ };
466
+ ".secure-payment-form .credit-card-currency-conversion fieldset:focus-within > .radio-button"?: {
467
+ outline: string;
468
+ "outline-offset": string;
469
+ };
470
+ ".secure-payment-form .credit-card-currency-conversion fieldset.no-focus-outline .radio-button.checked"?: {
471
+ outline: string;
472
+ "outline-offset": string;
473
+ };
474
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked"?: {
475
+ background: string;
476
+ "border-color": string;
477
+ color: string;
478
+ outline: string;
479
+ };
480
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']"?: {
481
+ margin: string;
482
+ appearance: string;
483
+ "-webkit-appearance": string;
484
+ "-moz-appearance": string;
485
+ border: string;
486
+ "border-radius": string;
487
+ width: string;
488
+ height: string;
489
+ display: string;
490
+ position: string;
491
+ padding: string;
492
+ };
493
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:checked"?: {
494
+ "background-color": string;
495
+ border: string;
496
+ };
497
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:focus"?: {
498
+ outline: string;
499
+ };
500
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content.visible"?: {
501
+ display: string;
502
+ opacity: string;
503
+ visibility: boolean;
504
+ };
505
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content.visible"?: {
506
+ display: string;
507
+ opacity: string;
508
+ visibility: boolean;
509
+ };
510
+ ".secure-payment-form .credit-card-currency-conversion .additional-info"?: {
511
+ "font-family": string;
512
+ "font-size": string;
513
+ "font-weight": number;
514
+ margin: string;
515
+ display: string;
516
+ };
517
+ ".secure-payment-form .credit-card-currency-conversion .tooltip"?: {
518
+ width: string;
519
+ height: string;
520
+ "min-width": string;
521
+ "border-left": string;
522
+ display: string;
523
+ };
524
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover"?: {
525
+ "border-left": string;
526
+ };
527
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:focus"?: {
528
+ "border-left": string;
529
+ };
530
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content"?: {
531
+ bottom: string;
532
+ right: string;
533
+ display: string;
534
+ };
535
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover .tooltip-content"?: {
536
+ display: string;
537
+ };
538
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p:last-child"?: {
539
+ "margin-bottom": string;
540
+ };
541
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before"?: {
542
+ left: string;
543
+ top: string;
544
+ right: string;
545
+ transform: string;
546
+ "border-width": string;
547
+ "border-style": string;
548
+ "border-color": string;
549
+ };
550
+ "@media only screen and (max-width: 768px)"?: {
551
+ ".secure-payment-form .currency-conversion-container": {
552
+ "flex-direction": string;
553
+ "align-items": string;
554
+ };
555
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
556
+ "justify-content": string;
557
+ };
558
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
559
+ width: string;
560
+ "justify-content": string;
561
+ };
562
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:first-child": {
563
+ margin: string;
564
+ };
565
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
566
+ width: string;
567
+ "margin-top": string;
568
+ "margin-left": string;
569
+ };
570
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
571
+ width: string;
572
+ "margin-top": string;
573
+ "margin-left": string;
574
+ };
575
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
576
+ right: string;
577
+ };
578
+ };
356
579
  "#googlePay": {
357
580
  height: string;
358
581
  margin: string;
@@ -655,6 +878,68 @@ export declare const parentStyles: (assetBaseUrl: string) => {
655
878
  display: string;
656
879
  margin: string;
657
880
  };
881
+ ".secure-payment-form .tooltip": {
882
+ position: string;
883
+ width: string;
884
+ height: string;
885
+ border: string;
886
+ "border-left": string;
887
+ color: string;
888
+ float: string;
889
+ "background-size": string;
890
+ background: string;
891
+ "font-family": string;
892
+ };
893
+ ".secure-payment-form .tooltip:focus": {
894
+ border: string;
895
+ outline: string;
896
+ "border-left": string;
897
+ };
898
+ ".secure-payment-form .tooltip:hover": {
899
+ border: string;
900
+ outline: string;
901
+ "border-left": string;
902
+ };
903
+ ".secure-payment-form .tooltip-content": {
904
+ visibility: string;
905
+ width: string;
906
+ "background-color": string;
907
+ color: string;
908
+ "text-align": string;
909
+ "border-radius": string;
910
+ border: string;
911
+ padding: string;
912
+ position: string;
913
+ "z-index": string;
914
+ right: string;
915
+ opacity: string;
916
+ transition: string;
917
+ "font-size": string;
918
+ "font-weight": string;
919
+ "box-shadow": string;
920
+ "margin-top": string;
921
+ "margin-right": string;
922
+ };
923
+ ".secure-payment-form .tooltip-content h4": {
924
+ margin: string;
925
+ };
926
+ ".secure-payment-form .tooltip:hover > .tooltip-content": {
927
+ visibility: string;
928
+ opacity: string;
929
+ };
930
+ ".secure-payment-form .tooltip:focus > .tooltip-content": {
931
+ visibility: string;
932
+ opacity: string;
933
+ };
934
+ ".secure-payment-form .tooltip-content::before": {
935
+ position: string;
936
+ content: string;
937
+ right: string;
938
+ top: string;
939
+ "border-left": string;
940
+ "border-right": string;
941
+ "border-bottom": string;
942
+ };
658
943
  ".secure-payment-form": {
659
944
  "font-family": string;
660
945
  };
@@ -679,13 +964,13 @@ export declare const parentStyles: (assetBaseUrl: string) => {
679
964
  ".secure-payment-form div[class$='-shield'] .ssl-text-logo": {
680
965
  border: string;
681
966
  "border-radius": string;
682
- width: string;
683
967
  height: string;
684
968
  "text-align": string;
685
969
  margin: string;
686
970
  display: string;
687
971
  "justify-content": string;
688
972
  "align-items": string;
973
+ width: string;
689
974
  };
690
975
  ".secure-payment-form div[class$='-shield'] .ssl-logo_ico": {
691
976
  width: string;
@@ -28,6 +28,11 @@ export declare const fieldStyles: (assetBaseUrl: string) => {
28
28
  "#secure-payment-field[type=text].hf-invalid"?: {
29
29
  border: string;
30
30
  };
31
+ "#secure-payment-field[hidden]"?: {
32
+ display: string;
33
+ opacity: string;
34
+ visibility: string;
35
+ };
31
36
  "*": {
32
37
  "box-sizing": string;
33
38
  };
@@ -240,6 +245,29 @@ export declare const parentStyles: (assetBaseUrl: string) => {
240
245
  "font-size": string;
241
246
  "line-height": string;
242
247
  };
248
+ ".secure-payment-form .paypal-button-wrapper": {
249
+ display: string;
250
+ "flex-direction": string;
251
+ "align-items": string;
252
+ };
253
+ ".secure-payment-form .paypal-button": {
254
+ position: string;
255
+ background: string;
256
+ height: string;
257
+ border: string;
258
+ width: string;
259
+ "border-radius": string;
260
+ margin: string;
261
+ cursor: string;
262
+ };
263
+ ".secure-payment-form .paypal-button:hover": {
264
+ "background-color": string;
265
+ };
266
+ ".secure-payment-form .paypal-button:focus": {
267
+ "background-color": string;
268
+ outline: string;
269
+ "outline-offset": string;
270
+ };
243
271
  ".secure-payment-form .open-banking-button-wrapper": {
244
272
  display: string;
245
273
  "flex-direction": string;
@@ -315,6 +343,194 @@ export declare const parentStyles: (assetBaseUrl: string) => {
315
343
  "font-size": string;
316
344
  "line-height": string;
317
345
  };
346
+ ".secure-payment-form .currency-conversion-container"?: {
347
+ display: string;
348
+ "flex-direction": string;
349
+ "align-items": string;
350
+ };
351
+ ".secure-payment-form .credit-card-currency-conversion iframe"?: {
352
+ "min-height": string;
353
+ };
354
+ ".secure-payment-form .credit-card-currency-conversion fieldset"?: {
355
+ "font-family": string;
356
+ border: string;
357
+ margin: string;
358
+ padding: string;
359
+ display: string;
360
+ "flex-wrap": string;
361
+ };
362
+ ".secure-payment-form .credit-card-currency-conversion legend"?: {
363
+ "font-family": string;
364
+ border: number;
365
+ top: string;
366
+ margin: string;
367
+ padding: number;
368
+ display: string;
369
+ "font-size": string;
370
+ "font-weight": number;
371
+ position: string;
372
+ };
373
+ ".secure-payment-form .credit-card-currency-conversion .radio-button"?: {
374
+ display: string;
375
+ "justify-content": string;
376
+ "align-items": string;
377
+ border: string;
378
+ padding: string;
379
+ "white-space": string;
380
+ height: string;
381
+ "margin-right": string;
382
+ };
383
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:last-child"?: {
384
+ "margin-right": string;
385
+ };
386
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:hover"?: {
387
+ "border-color": string;
388
+ };
389
+ ".secure-payment-form .credit-card-currency-conversion fieldset:focus-within > .radio-button"?: {
390
+ outline: string;
391
+ "outline-offset": string;
392
+ };
393
+ ".secure-payment-form .credit-card-currency-conversion fieldset.no-focus-outline .radio-button.checked"?: {
394
+ outline: string;
395
+ "outline-offset": string;
396
+ };
397
+ ".secure-payment-form .credit-card-currency-conversion .radio-button.checked"?: {
398
+ background: string;
399
+ "border-color": string;
400
+ color: string;
401
+ outline: string;
402
+ };
403
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']"?: {
404
+ margin: string;
405
+ appearance: string;
406
+ "-webkit-appearance": string;
407
+ "-moz-appearance": string;
408
+ border: string;
409
+ "border-radius": string;
410
+ width: string;
411
+ height: string;
412
+ display: string;
413
+ position: string;
414
+ padding: string;
415
+ };
416
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:checked"?: {
417
+ "background-color": string;
418
+ border: string;
419
+ };
420
+ ".secure-payment-form .credit-card-currency-conversion .radio-button input[type='radio']:focus"?: {
421
+ outline: string;
422
+ };
423
+ ".secure-payment-form .credit-card-currency-conversion .radio-button label"?: {
424
+ "font-family": string;
425
+ "font-size": string;
426
+ "font-weight": number;
427
+ display: string;
428
+ margin: string;
429
+ };
430
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content"?: {
431
+ opacity: string;
432
+ visibility: boolean;
433
+ display: string;
434
+ "flex-direction": string;
435
+ "margin-left": string;
436
+ "align-items": string;
437
+ height: string;
438
+ };
439
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content.visible"?: {
440
+ display: string;
441
+ opacity: string;
442
+ visibility: boolean;
443
+ };
444
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content"?: {
445
+ opacity: string;
446
+ visibility: boolean;
447
+ display: string;
448
+ "flex-direction": string;
449
+ "margin-left": string;
450
+ "align-items": string;
451
+ height: string;
452
+ };
453
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content.visible"?: {
454
+ display: string;
455
+ opacity: string;
456
+ visibility: boolean;
457
+ };
458
+ ".secure-payment-form .credit-card-currency-conversion .additional-info"?: {
459
+ "font-family": string;
460
+ "font-size": string;
461
+ "font-weight": number;
462
+ margin: string;
463
+ display: string;
464
+ };
465
+ ".secure-payment-form .credit-card-currency-conversion .additional-info p"?: {
466
+ margin: string;
467
+ "font-style": string;
468
+ };
469
+ ".secure-payment-form .credit-card-currency-conversion .tooltip"?: {
470
+ width: string;
471
+ height: string;
472
+ "min-width": string;
473
+ "border-left": string;
474
+ display: string;
475
+ };
476
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover"?: {
477
+ "border-left": string;
478
+ };
479
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:focus"?: {
480
+ "border-left": string;
481
+ };
482
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content"?: {
483
+ bottom: string;
484
+ right: string;
485
+ display: string;
486
+ };
487
+ ".secure-payment-form .credit-card-currency-conversion .tooltip:hover .tooltip-content"?: {
488
+ display: string;
489
+ };
490
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p"?: {
491
+ margin: string;
492
+ };
493
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content p:last-child"?: {
494
+ "margin-bottom": string;
495
+ };
496
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before"?: {
497
+ left: string;
498
+ top: string;
499
+ right: string;
500
+ transform: string;
501
+ "border-width": string;
502
+ "border-style": string;
503
+ "border-color": string;
504
+ };
505
+ "@media only screen and (max-width: 768px)"?: {
506
+ ".secure-payment-form .currency-conversion-container": {
507
+ "flex-direction": string;
508
+ "align-items": string;
509
+ };
510
+ ".secure-payment-form .credit-card-currency-conversion fieldset": {
511
+ "justify-content": string;
512
+ };
513
+ ".secure-payment-form .credit-card-currency-conversion .radio-button": {
514
+ width: string;
515
+ "justify-content": string;
516
+ };
517
+ ".secure-payment-form .credit-card-currency-conversion .radio-button:first-child": {
518
+ margin: string;
519
+ };
520
+ ".secure-payment-form .credit-card-currency-conversion .card-currency-content": {
521
+ width: string;
522
+ "margin-top": string;
523
+ "margin-left": string;
524
+ };
525
+ ".secure-payment-form .credit-card-currency-conversion .merchant-currency-content": {
526
+ width: string;
527
+ "margin-top": string;
528
+ "margin-left": string;
529
+ };
530
+ ".secure-payment-form .credit-card-currency-conversion .tooltip-content::before": {
531
+ right: string;
532
+ };
533
+ };
318
534
  ".secure-payment-form .hf-cvv-tooltip-invalid"?: {
319
535
  border: string;
320
536
  "border-left": string;
@@ -961,6 +1177,68 @@ export declare const parentStyles: (assetBaseUrl: string) => {
961
1177
  "line-height": string;
962
1178
  "text-decoration-line": string;
963
1179
  };
1180
+ ".secure-payment-form .tooltip": {
1181
+ position: string;
1182
+ width: string;
1183
+ height: string;
1184
+ border: string;
1185
+ "border-left": string;
1186
+ color: string;
1187
+ float: string;
1188
+ "background-size": string;
1189
+ background: string;
1190
+ "font-family": string;
1191
+ };
1192
+ ".secure-payment-form .tooltip:focus": {
1193
+ border: string;
1194
+ outline: string;
1195
+ "border-left": string;
1196
+ };
1197
+ ".secure-payment-form .tooltip:hover": {
1198
+ border: string;
1199
+ outline: string;
1200
+ "border-left": string;
1201
+ };
1202
+ ".secure-payment-form .tooltip-content": {
1203
+ visibility: string;
1204
+ width: string;
1205
+ "background-color": string;
1206
+ color: string;
1207
+ "text-align": string;
1208
+ "border-radius": string;
1209
+ border: string;
1210
+ padding: string;
1211
+ position: string;
1212
+ "z-index": string;
1213
+ right: string;
1214
+ opacity: string;
1215
+ transition: string;
1216
+ "font-size": string;
1217
+ "font-weight": string;
1218
+ "box-shadow": string;
1219
+ "margin-top": string;
1220
+ "margin-right": string;
1221
+ };
1222
+ ".secure-payment-form .tooltip-content h4": {
1223
+ margin: string;
1224
+ };
1225
+ ".secure-payment-form .tooltip:hover > .tooltip-content": {
1226
+ visibility: string;
1227
+ opacity: string;
1228
+ };
1229
+ ".secure-payment-form .tooltip:focus > .tooltip-content": {
1230
+ visibility: string;
1231
+ opacity: string;
1232
+ };
1233
+ ".secure-payment-form .tooltip-content::before": {
1234
+ position: string;
1235
+ content: string;
1236
+ right: string;
1237
+ top: string;
1238
+ "border-left": string;
1239
+ "border-right": string;
1240
+ "border-bottom": string;
1241
+ };
964
1242
  ".secure-payment-form": {
965
1243
  display: string;
966
1244
  "-ms-flex-wrap": string;
@@ -990,13 +1268,13 @@ export declare const parentStyles: (assetBaseUrl: string) => {
990
1268
  ".secure-payment-form div[class$='-shield'] .ssl-text-logo": {
991
1269
  border: string;
992
1270
  "border-radius": string;
993
- width: string;
994
1271
  height: string;
995
1272
  "text-align": string;
996
1273
  margin: string;
997
1274
  display: string;
998
1275
  "justify-content": string;
999
1276
  "align-items": string;
1277
+ width: string;
1000
1278
  };
1001
1279
  ".secure-payment-form div[class$='-shield'] .ssl-logo_ico": {
1002
1280
  width: string;
@@ -1049,53 +1327,6 @@ export declare const parentStyles: (assetBaseUrl: string) => {
1049
1327
  "min-height": string;
1050
1328
  width: string;
1051
1329
  };
1052
- ".secure-payment-form .tooltip": {
1053
- position: string;
1054
- width: string;
1055
- height: string;
1056
- border: string;
1057
- "border-left": string;
1058
- color: string;
1059
- float: string;
1060
- "background-size": string;
1061
- background: string;
1062
- };
1063
- ".secure-payment-form .tooltip:focus": {
1064
- border: string;
1065
- outline: string;
1066
- };
1067
- ".secure-payment-form .tooltip:hover": {
1068
- border: string;
1069
- outline: string;
1070
- };
1071
- ".secure-payment-form .tooltip-content": {
1072
- visibility: string;
1073
- width: string;
1074
- "background-color": string;
1075
- color: string;
1076
- "text-align": string;
1077
- "border-radius": string;
1078
- border: string;
1079
- padding: string;
1080
- position: string;
1081
- "z-index": string;
1082
- right: string;
1083
- opacity: string;
1084
- transition: string;
1085
- "font-size": string;
1086
- "font-weight": string;
1087
- "margin-top": string;
1088
- overflow: string;
1089
- "box-shadow": string;
1090
- };
1091
- ".secure-payment-form .tooltip:hover > .tooltip-content": {
1092
- visibility: string;
1093
- opacity: string;
1094
- };
1095
- ".secure-payment-form .tooltip:focus > .tooltip-content": {
1096
- visibility: string;
1097
- opacity: string;
1098
- };
1099
1330
  ".secure-payment-form .other-cards-label": {
1100
1331
  "border-bottom": string;
1101
1332
  "text-align": string;