@rebilly/instruments 3.24.2-beta.0 → 3.24.4-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1065,6 +1065,25 @@
|
|
|
1065
1065
|
}
|
|
1066
1066
|
]
|
|
1067
1067
|
},
|
|
1068
|
+
{
|
|
1069
|
+
"apiName": "InstantPayments",
|
|
1070
|
+
"name": "Instant Payments",
|
|
1071
|
+
"landscapeLogo": null,
|
|
1072
|
+
"portraitLogo": null,
|
|
1073
|
+
"summary": "Instant Payments enables consumers to make payments to merchants using funds from their bank account.\n",
|
|
1074
|
+
"description": "Instant Payments enables consumers to make payments to merchants using funds from their bank account.\n",
|
|
1075
|
+
"countries": {
|
|
1076
|
+
"mode": "unknown",
|
|
1077
|
+
"values": []
|
|
1078
|
+
},
|
|
1079
|
+
"storefrontEnabled": true,
|
|
1080
|
+
"_links": [
|
|
1081
|
+
{
|
|
1082
|
+
"rel": "self",
|
|
1083
|
+
"href": "https://api.rebilly.com/payment-methods/InstantPayments"
|
|
1084
|
+
}
|
|
1085
|
+
]
|
|
1086
|
+
},
|
|
1068
1087
|
{
|
|
1069
1088
|
"apiName": "Interac",
|
|
1070
1089
|
"name": "Interac",
|
package/src/i18n/es.json
CHANGED
|
@@ -16,7 +16,7 @@
|
|
|
16
16
|
"noPaymentMethods": "No hay métodos de pago disponibles para esta transacción, por favor, póngase en contacto con el servicio de asistencia."
|
|
17
17
|
},
|
|
18
18
|
"bumpOffer": {
|
|
19
|
-
"title": "¡S
|
|
19
|
+
"title": "¡Sí, me gustaría actualizar!",
|
|
20
20
|
"startingAt": "A partir de {basePrice}"
|
|
21
21
|
}
|
|
22
22
|
},
|
|
@@ -16,6 +16,7 @@ export class ReadyToPayFeatureModel {
|
|
|
16
16
|
// Paypal fields
|
|
17
17
|
paypalMerchantId = '',
|
|
18
18
|
billingAgreementToken = '',
|
|
19
|
+
paypalClientId = '',
|
|
19
20
|
|
|
20
21
|
// Plaid fields
|
|
21
22
|
linkToken = '',
|
|
@@ -31,6 +32,7 @@ export class ReadyToPayFeatureModel {
|
|
|
31
32
|
|
|
32
33
|
this.paypalMerchantId = paypalMerchantId;
|
|
33
34
|
this.billingAgreementToken = billingAgreementToken;
|
|
35
|
+
this.paypalClientId = paypalClientId;
|
|
34
36
|
|
|
35
37
|
this.linkToken = linkToken;
|
|
36
38
|
}
|
package/src/style/base/index.js
CHANGED
|
@@ -437,8 +437,8 @@ export const vars = (theme) => `
|
|
|
437
437
|
|
|
438
438
|
/* Methods */
|
|
439
439
|
.rebilly-instruments-methods-loader-card-icon {
|
|
440
|
-
width:
|
|
441
|
-
height:
|
|
440
|
+
width: calc(var(--rebilly-fontLineHeightBase) + 10px);
|
|
441
|
+
height: var(--rebilly-fontLineHeightBase);
|
|
442
442
|
margin-left: var(--rebilly-spacing2xs);
|
|
443
443
|
margin-bottom: var(--rebilly-spacing2xs);
|
|
444
444
|
}
|