@metropolle/design-system 1.0.0-beta.2026.1.24.1932.6298f8c → 1.0.0-beta.2026.1.24.2019.122b7fb

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.
@@ -1544,14 +1544,23 @@ function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, s
1544
1544
  return () => observer.disconnect();
1545
1545
  }, []);
1546
1546
  // Dynamic info texts for rotating display
1547
- const infoTexts = [
1547
+ // FEAT-090: Use verification_score checks when available, fallback to legacy
1548
+ const infoTexts = user.verification_score ? [
1549
+ `Verification Level ${user.verification_score.score}`,
1550
+ `User #${user.registration_sequence?.toLocaleString() || '—'}`,
1551
+ `Member since ${new Date(user.created_at).getFullYear()}`,
1552
+ // Show passed verification checks
1553
+ ...user.verification_score.checks
1554
+ .filter(check => check.passed)
1555
+ .map(check => check.description),
1556
+ ] : [
1548
1557
  `Member since ${new Date(user.created_at).getFullYear()}`,
1549
1558
  ...(user.registration_sequence ? [`User #${user.registration_sequence.toLocaleString()}`] : []),
1550
1559
  ...(user.verified >= 1 ? ['Email Verified'] : []),
1551
1560
  ...(user.verified >= 2 ? ['Identity Verified'] : []),
1552
1561
  ...(user.verified >= 3 ? ['Area Verified'] : []),
1553
1562
  // PROC-013: Show MFA status when enabled (highlight security-conscious users)
1554
- ...(user.mfa_enabled === true ? ['2FA Ativado'] : []),
1563
+ ...(user.mfa_enabled === true ? ['2FA Enabled'] : []),
1555
1564
  ];
1556
1565
  // Rotate info text
1557
1566
  require$$0.useEffect(() => {