Skip to content

Commit d55f193

Browse files
authored
Merge branch 'main' into aromanovv/PD-5548-add-2fa-creation-dates
2 parents fd75f20 + f5eb71d commit d55f193

27 files changed

Lines changed: 6405 additions & 5699 deletions

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,21 @@
1+
## v2.134.0 - 2026-05-15
2+
3+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.133.14...v2.134.0)
4+
5+
## v2.133.14 - 2026-05-14
6+
7+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.133.13...v2.133.14)
8+
9+
- [#2837](https://github.com/ORCID/orcid-angular/pull/2837): Transifex: update translations
10+
11+
## v2.133.13 - 2026-05-08
12+
13+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.133.12...v2.133.13)
14+
15+
## v2.133.12 - 2026-05-08
16+
17+
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.133.11...v2.133.12)
18+
119
## v2.133.11 - 2026-05-08
220

321
[Full Changelog](https://github.com/ORCID/orcid-angular/compare/v2.133.10...v2.133.11)

src/app/account-settings/components/settings-security-two-factor-auth/settings-security-two-factor-auth.component.html

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,12 @@
1313
</app-alert-message>
1414
} @if (!twoFactorInfo?.enabled) {
1515
<div class="two-factor-panel">
16-
<p
17-
class="two-factor-panel__copy two-factor-panel__copy--intro"
18-
i18n="@@account.addExtraSecurity"
19-
>
16+
<p class="two-factor-panel__copy" i18n="@@account.addExtraSecurity">
2017
Add extra security to your ORCID account by enabling two-factor
2118
authentication (2FA).
2219
</p>
2320
<a
24-
class="two-factor-panel__link"
21+
class="two-factor-panel__link mb-6"
2522
href="https://support.orcid.org/hc/en-us/articles/360006971673"
2623
rel="noopener noreferrer"
2724
target="_blank"

src/app/account-settings/components/settings-security-two-factor-auth/settings-security-two-factor-auth.component.scss

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
.two-factor-panel {
77
display: flex;
88
flex-direction: column;
9-
gap: 16px;
9+
gap: 8px;
1010
}
1111

1212
.two-factor-panel--enabled {
@@ -35,10 +35,6 @@
3535
margin: 0;
3636
}
3737

38-
.two-factor-panel__copy--intro {
39-
margin-top: var(--orcid-space-l, 32px);
40-
}
41-
4238
.two-factor-panel__link {
4339
display: inline-flex;
4440
align-items: center;

src/app/account-settings/components/settings-security-two-factor-auth/settings-security-two-factor-auth.component.scss-theme.scss

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,16 @@
1919
small {
2020
color: mat.m2-get-contrast-color-from-palette($primary, 200);
2121
}
22+
23+
.two-factor-panel__enable-button {
24+
color: $orcid-light-primary-text !important;
25+
background: $brand-secondary-dark !important;
26+
}
27+
28+
.two-factor-panel__disable-button {
29+
background-color: $state-warning-darkest !important;
30+
color: white !important;
31+
}
2232
}
2333

2434
@include settings-security-two-factor-auth-theme($orcid-app-theme);

src/app/two-factor-setup/components/two-factor-enable/two-factor-enable.component.html

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,9 +57,13 @@
5757
</div>
5858

5959
<div class="verification-section">
60-
<p class="step-copy" i18n="@@account.enterVerificationCodeFromAuthApp">
60+
<label
61+
class="step-copy"
62+
for="totp"
63+
i18n="@@account.enterVerificationCodeFromAuthApp"
64+
>
6165
Enter the 6-digit verification code from your authentication app
62-
</p>
66+
</label>
6367

6468
<mat-form-field appearance="outline" class="mat-form-field-min">
6569
<input

src/app/two-factor-setup/components/two-factor-enable/two-factor-enable.component.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -101,6 +101,7 @@ mat-error {
101101
}
102102

103103
.verification-section .step-copy {
104+
display: block;
104105
margin-bottom: var(--orcid-space-base, 16px);
105106
}
106107

src/app/two-factor-setup/components/two-factor-recovery-codes/two-factor-recovery-codes.component.html

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,9 @@
1111
>
1212
<div class="copy-block">
1313
<div class="copy-block__intro">
14-
<h4 i18n="@@account.yourRecoveryCodesTitle">Your 2FA recovery codes</h4>
14+
<h4 id="backup-codes-label" i18n="@@account.yourRecoveryCodesTitle">
15+
Your 2FA recovery codes
16+
</h4>
1517
<p i18n="@@account.recoveryCodes">
1618
Recovery codes can be used to access your ORCID account when you
1719
aren’t able to use your authentication app. Each recovery code can
@@ -36,6 +38,7 @@ <h4 i18n="@@account.yourRecoveryCodesTitle">Your 2FA recovery codes</h4>
3638
formControlName="backupCodes"
3739
rows="10"
3840
readonly
41+
aria-labelledby="backup-codes-label"
3942
>
4043
</textarea>
4144
</div>

src/locale/messages.ar.xlf

Lines changed: 401 additions & 350 deletions
Large diffs are not rendered by default.

src/locale/messages.ca.xlf

Lines changed: 325 additions & 350 deletions
Large diffs are not rendered by default.

src/locale/messages.cs.xlf

Lines changed: 401 additions & 349 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)