@metropolle/design-system 1.2026.0-1.17.117 → 1.2026.0-1.22.1223
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 +1 -0
- package/dist/react/index.esm.js.map +1 -1
- package/dist/react/index.js +1 -0
- package/dist/react/index.js.map +1 -1
- package/package.json +1 -1
package/dist/react/index.js
CHANGED
|
@@ -1543,6 +1543,7 @@ function ProfileCard({ user, variant = 'full', photoWidth, showSocial = false, s
|
|
|
1543
1543
|
// Dynamic info texts for rotating display
|
|
1544
1544
|
const infoTexts = [
|
|
1545
1545
|
`Member since ${new Date(user.created_at).getFullYear()}`,
|
|
1546
|
+
...(user.registration_sequence ? [`User #${user.registration_sequence.toLocaleString()}`] : []),
|
|
1546
1547
|
...(user.verified >= 1 ? ['Email Verified'] : []),
|
|
1547
1548
|
...(user.verified >= 2 ? ['Identity Verified'] : []),
|
|
1548
1549
|
...(user.verified >= 3 ? ['Area Verified'] : []),
|