Skip to content

Commit a586bf9

Browse files
author
Mercado Pago
committed
Release v8.4.5
1 parent 172b588 commit a586bf9

File tree

60 files changed

+4442
-2608
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+4442
-2608
lines changed

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
77

8+
## [8.4.5] - 2025-08-18
9+
### Fixed
10+
- Changed the error message when closing the modal in the fast payments flow
11+
- Obtained logged-in users emails as a fallback in the fast payments flow
12+
- Text and translation corrections in the fast payments flow
13+
- Responsiveness improvements in the fast payments flow
14+
- Check if `downloadSelected` button exists before using it
15+
816
## [8.4.4] - 2025-08-11
917
### Fixed
1018
- Does not block payment if email is not filled in

assets/css/checkouts/mp-plugins-components.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/css/checkouts/super-token/super-token-payment-methods.css

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
background-color: white;
4242
border: 1px solid #e5e5e5;
4343
width: 100%;
44+
margin: 0 !important;
4445
}
4546

4647
.mp-super-token-payment-method__selected {
@@ -380,16 +381,13 @@
380381

381382
@container payment-method-header (max-width: 300px) {
382383
.mp-super-token-payment-method__content {
383-
width: 45%;
384+
width: 100%;
384385
}
385386
}
386387

387-
@container payment-method-header (max-width: 200px) {
388-
.mp-super-token-payment-method__content {
389-
width: 20%;
390-
}
391-
392-
.mp-super-token-payment-method__title {
393-
white-space: nowrap;
388+
/* TODO: Aguardando permissão de UX para remover o valor prop */
389+
/* @container payment-method-header (max-width: 255px) {
390+
.mp-super-token-payment-method__value-prop {
391+
display: none;
394392
}
395-
}
393+
} */

assets/css/checkouts/super-token/super-token-payment-methods.min.css

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

assets/js/checkouts/super-token/entities/super-token-authenticator.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,8 @@ class MPSuperTokenAuthenticator {
2525
return this.amountUsed;
2626
}
2727

28-
isUserModalClosure(error) {
29-
return error?.errorCode === 'NO_BOTTOMSHEET_CONFIRMATION';
28+
isUserClosedModalError(error) {
29+
return error?.errorCode === 'NO_USER_CONFIRMATION';
3030
}
3131

3232
storeUserClosedModal() {
@@ -80,7 +80,7 @@ class MPSuperTokenAuthenticator {
8080

8181
await this.renderAccountPaymentMethods(token);
8282
} catch (error) {
83-
if (this.isUserModalClosure(error)) {
83+
if (this.isUserClosedModalError(error)) {
8484
this.storeUserClosedModal();
8585
}
8686

0 commit comments

Comments
 (0)