@metropolle/design-system 1.2026.0-1.22.1223 → 1.2026.0-1.22.1449
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/dist/react/components/react/ProfileCard/ProfileCard.d.ts +1 -0
- package/dist/react/components/react/ProfileCard/ProfileCard.d.ts.map +1 -1
- package/dist/react/index.esm.js +2 -0
- package/dist/react/index.esm.js.map +1 -1
- package/dist/react/index.js +2 -0
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
package/dist/react/index.js
CHANGED
|
@@ -1547,6 +1547,8 @@ function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, s
|
|
|
1547
1547
|
...(user.verified >= 1 ? ['Email Verified'] : []),
|
|
1548
1548
|
...(user.verified >= 2 ? ['Identity Verified'] : []),
|
|
1549
1549
|
...(user.verified >= 3 ? ['Area Verified'] : []),
|
|
1550
|
+
// PROC-013: Show MFA status when enabled (highlight security-conscious users)
|
|
1551
|
+
...(user.mfa_enabled === true ? ['2FA Ativado'] : []),
|
|
1550
1552
|
];
|
|
1551
1553
|
// Rotate info text
|
|
1552
1554
|
require$$0.useEffect(() => {
|